Files
gallery3/installer/data/init_var.php

13 lines
429 B
PHP
Raw Normal View History

2009-01-18 01:05:18 +00:00
<?php defined("SYSPATH") or die("No direct script access.");
if (!file_exists(VARPATH)) {
if (!@mkdir(VARPATH)) {
throw new Exception("Unable to create directory '" . VARPATH . "'");
}
chmod(VARPATH, 0777);
}
foreach (array("resizes", "modules", "uploads", "logs", "albums", "thumbs") as $dir) {
if (!@mkdir("var/$dir")) {
throw new Exception("Unable to create directory '$dir'");
2009-01-18 01:05:18 +00:00
}
chmod("var/$dir", 0777);
2009-01-18 01:05:18 +00:00
}