Hi
I get this error: Warning: include_once(): SAFE MODE Restriction in effect. The script whose uid is 2001 is not allowed to access ... owned by uid 269632
This happens when i try to acces a file that php has created automatically.
The code is something like this:
$a= explode(" ", $content);
$c = implode("_", $a);
$f = fopen("x/$c.php", 'w') or die ("Problem with the file");
$i = file_get_contents("x/y.php");
file_put_contents("x/$c.php",$i);