hi!
I have a problem with my php script.
In this script I create a directory. When I then try to
enter this directory (for example read its contens)
I get an error like:
Warning: SAFE MODE Restriction in effect. The script whose uid is XXX is not allowed to access
/home/students/... owned by uid YYY in /home/students/...
(edited)
In manual for chdir its written:
"Note: When safe mode is enabled, PHP checks whether the directory in which you are about to operate
has the same UID (owner) as the script that is being executed."
So : my script has my UID and created dir has UID of httpd.
What to do in order to be able to read and write to this dir?
Safemode is enabled but I cannot change it.
TIA
md
I have a problem with my php script.
In this script I create a directory. When I then try to
enter this directory (for example read its contens)
I get an error like:
Warning: SAFE MODE Restriction in effect. The script whose uid is XXX is not allowed to access
/home/students/... owned by uid YYY in /home/students/...
(edited)
In manual for chdir its written:
"Note: When safe mode is enabled, PHP checks whether the directory in which you are about to operate
has the same UID (owner) as the script that is being executed."
So : my script has my UID and created dir has UID of httpd.
What to do in order to be able to read and write to this dir?
Safemode is enabled but I cannot change it.
TIA
md
Comment