i wanted to create a folder and set its permission. it was working fine with windows, but when i shifted to linux, it had permission problems..
//Make new directory
$directory = dirname($this->fileName);
if(!is_dir($directory)) {
if (!mkdir($directory, 0777, true))
die('Failed to create folders...');
}else{
die('ah ok...');
}
for this to work, i have to set the folder permission manually to 777. then after that the application can run successfully.
then i delete the existing folder again to test it, cannot create again because permission denied, it fails to create folder.
please help.