There is such code:
$unzippedDirectory = '/' . date('H:i:s'); if (!is_dir($unzippedDirectory)) { mkdir($unzippedDirectory); chmod($unzippedDirectory,0775); }
He must create a folder. All folders above have 0775 permissions.
When you call mkdir (), it does not give any error, but the folder is not actually created.
At the beginning of the script there is a directive:
error_reporting(E_ALL);