egturnkey
08-31-2009, 10:00 PM
Hello Dear Friend,
here i get that error
Warning: mkdir() [function.mkdir]: No such file or directory in /hermes/web08/b1256/moo.faridaed/common/common.php on line 389
and here is the common.php code
// create writable directory or change the chmod permission of chosen directory
function check_dir($dir) {
if (!file_exists($dir)) {
if (mkdir($dir, 0777))// create images dir
$done = true;
} else if (!is_writeable($dir)) {
if (chmod($dir, 0777)) // change perm. setting
$done = true;
} else
$done = true;
return $done;
}
it should create a file where an images will goes
at following path products/images/
i've giveen /products/ and /images/ CHMOOD 777
and still getting the error :chomp:
thanks so much for helping me
here i get that error
Warning: mkdir() [function.mkdir]: No such file or directory in /hermes/web08/b1256/moo.faridaed/common/common.php on line 389
and here is the common.php code
// create writable directory or change the chmod permission of chosen directory
function check_dir($dir) {
if (!file_exists($dir)) {
if (mkdir($dir, 0777))// create images dir
$done = true;
} else if (!is_writeable($dir)) {
if (chmod($dir, 0777)) // change perm. setting
$done = true;
} else
$done = true;
return $done;
}
it should create a file where an images will goes
at following path products/images/
i've giveen /products/ and /images/ CHMOOD 777
and still getting the error :chomp:
thanks so much for helping me