How can I upload files on a server where php is running in safe_mode on ? can I override these setting somehow? its running on apache module and my web administrator dont want to turn safe mode off.
If anybody could help me?
ini_set('safe_mode',0); ...should do the trick on a script by script basis.
The manual says safe_mode can only be turned on or off by the system, not by a script.
And that makes sense. Why have a safe mode if every script can turn it off at will?