I have a simple mkdir script, that creates a directory that contains 3 sub-fodlers, on my server.
The script works fine on my Apache server and if the directory exists, the error message is displayed.
However on my IIS, I get an HTTP error, I don't think that the script is getting to the "if" or "else" functions :
HTML Code:PHP Warning: mkdir() [function.mkdir]: File exists in C:\Web\QT\admin\script.php on line 85Is there a way of getting this to work?PHP Code:// URL
$url = "//Server/Folder1/Folder2/";
// Create It
$create = mkdir("$url");
mkdir("$url/Sub1");
mkdir("$url/Sub2");
mkdir("$url/Sub3");
if ($create) {
$mess = $ref = $_SERVER['HTTP_REFERER']; header( 'refresh: 0; url='.$ref);;
$query = sprintf("UPDATE tbl_freelancer SET freedir='y' WHERE freeid=%s", GetSQLValueString($colname_rsFreelance_Dir, "int"));
$result = mysql_query($query, $conndb2) or die(mysql_error());
}
else {
$mess = "<p>Directory could not be created.</p>";
}




Bookmarks