diff options
author | deva <deva> | 2008-10-12 08:55:05 +0000 |
---|---|---|
committer | deva <deva> | 2008-10-12 08:55:05 +0000 |
commit | 2fcc8a388b27747bb534f0beba18114720f9b899 (patch) | |
tree | 52fe5737c6f2c43982cfedb10f2f58db1dd84c9d /forum/utils/forums.php | |
parent | b3bfcb9e6f512b2074dc69bf1af148ec4f4973d4 (diff) |
Now files, forums and image cache create their storage dirs themselves, instead of createentities (when they do not already exists that is...)
Diffstat (limited to 'forum/utils/forums.php')
-rw-r--r-- | forum/utils/forums.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/forum/utils/forums.php b/forum/utils/forums.php index 85e977b..1ee2eb9 100644 --- a/forum/utils/forums.php +++ b/forum/utils/forums.php @@ -100,6 +100,24 @@ class Forums { { $this->file = $file; if(file_exists($file)) $this->read(); + else { + if(!file_exists(dirname($file))) { + if(!mkdir(dirname($file))) { + echo"Could not create directory: " . dirname($file); + die(); + } + } else { + if(!is_dir(dirname($file))) { + echo dirname($file) . " exists but is not a directory"; + die(); + } else { + if(!is_readable(dirname($file)) || !is_writeable(dirname($file)) || !is_executable(dirname($file))) { + echo dirname($file) . " exists but does not have the correct permissions. (r/w/x)"; + die(); + } + } + } + } } } |