Sorry to bump a thread marked [solved], but I don't want to start a new thread with the exact same topic.
I contacted my hosting provider and she said:
The way to go is to put a text file named php.ini in the same folder as the script(s) for which you're setting the value. Php.ini should contain this line:
upload_max_filesize = 8M (or whatever suits you best...)
So I've created the php.ini file with the values I need, but where exactly do I put it? Looking through my com_rsgallery2 directory I'm not sure where it goes. TA2 wrote above to put it in "every folder". Every folder?
RSGallery2 FAQ states:
I can't upload large images or zip files.
PHP has a number of settings that limit file uploads. You will need to ask your hosting provider to change these settings in the file php.ini. If you are hosting your own site, please read the PHP manual on Handling File Uploads and Common Pitfalls. The following are suggested minimums:
max_execution_time: 300
memory_limit: 32MB
post_max_size: 32MB
upload_max_filesize: 32MB
The last three should be higher than the largest zip file you want to upload.
Is that the correct syntax to use? All the other examples I've seen use equal signs and M for megabytes, not MB.
Please help!