Hello
is it possible for me to change the upload_max_filesize using the ini_set() function in php. its set to 2mb at the moment and i dont have access to the php.ini file itsself.
Thankyou..
ini_set('upload_max_filesize', '10M');
i think this is what im looking for, if anyone can confirm it.
I can confirm that "upload_max_filesize" con be changed only in php.ini or in .htaccess files (or their equivalent), not in a script with "ini_set()".