Hi,
I'm trying to use ini_set to alter upload_tmp_dir value, but for some weird reason it simply doesnt work.
for example:
ini_set("upload_tmp_dir", "test");
ini_get("upload_tmp_dir");
output: c:\tmp\ (original upload_tmp_dir value)
but the same thing works for other values such as register_globals.
What can I do to set upload_tmp_dir using ini_set, and not changing it on php.ini?
Thanks !