My host does not have php set to safe mode. I tried the following script and everytime it returns a 0 and no directory is created:
<?php
$foo = mkdir("testing", 0755);
if ($foo)
{
$bar = 1;
}
else
{
$bar = 0;
}
?>
<?= $bar ?>
i also tried where it says ./testing and /testing/ and ./testing/ and /public_html/testing/
all returned 0. any ideas on how i can get this working?