Hello,
I have run into a problem using the mkdir function on a windows 03 server running IIS v6 with PHP 5.0. I am trying to simply create a folder within my site. Safe Mode is set to "off" and the "everyone" group has full-control of the "data" folder and subfolders. My script is as follows:
<?php
if(mkdir("/site_root/data/test"))
echo "TRUE";
else
echo "FALSE";
?>
Always outputs "false", and of course the folder is not created....Plea se help!
I have run into a problem using the mkdir function on a windows 03 server running IIS v6 with PHP 5.0. I am trying to simply create a folder within my site. Safe Mode is set to "off" and the "everyone" group has full-control of the "data" folder and subfolders. My script is as follows:
<?php
if(mkdir("/site_root/data/test"))
echo "TRUE";
else
echo "FALSE";
?>
Always outputs "false", and of course the folder is not created....Plea se help!
Comment