Why when i use
$file = fopen ("/home/users/xxx/aaa.txt", "w");
fputs ($file , "abc", 3);
fclose ($file);
where the aaa.txt is not exits
It always displays :
Warning: SAFE MODE Restriction in effect. The script whose uid is 3018 is not allowed to access /home/uers/xxx/aaa.txt owned by uid 99 in /home/uers/xxx/aaa.txt on line 35
Can anyone tell me how to solve this problem?