I seem to be running into an odd issue. A previous coder was able to create directories sucessfully by using:
Code: Select all
$dir = 'pending/' . date('l \\t\h\e jS \of F Y g:i a').'/';
mkdir($dir);Code: Select all
mkdir('/members/Test/');
mkdir('/members/Test/cp/');
mkdir('/members/Test/profile/');Any reason why example #1 works but #2 doesnt?
BTW- Example #2 is based in the doc root.