summaryrefslogtreecommitdiff
path: root/installer/init_var.php
blob: 94dd5c6718147f389a40befb89c1bc6e7fc0d492 (plain)
1
2
3
4
5
6
7
8
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?php
!file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums");
!file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes");
!file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs");
!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs");
!file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads");
!file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules");