I have a problem with copying files to the folder that I create with the same PHP.
Here's a sample of code:
<?php
$dir = "$webroot$directory";
mkdir($dir);
chmod($dir, 0777);
echo "Create $directory..........OK<br>";
$source = "$webroot\files\index.php";
copy($source,$dir);
?>
Everything is OK with creating directories but for copying files I have this error:
Warning: copy(E:\Documents and Settings\Predator\My Documents\My Webs\Raimis\modulis3) [function.copy]: failed to create stream: Permission denied in e:\documents and settings\predator\my documents\my webs\raimis\admin\moduliai\sukurti.php on line 19
Im using apache on winXP.