PHP.ini file upload size settings
I am using the audio module on several of my sites. Clients have requested the ability to uplaod files larger than 16mb. How I feel about this aside, can someone please let me know what the recommended procedure is for raising the upload file size limit" This is not the upload module, per se. It is the php.ini based one.
For example, each audio submissions page says:
"NOTE: the current PHP configuration limits uploads to 16 MB."
Something along these lines perhaps?:
Comments
Assuming this is for a VPS
You would edit the
/etc/php.inifile, look forupload_max_filesize, then change the number next to it, and save. You'll have to restart the web server, the command for which issudo /etc/init.d/httpd restart.still set to 16?
I edited the php.ini file, but it was already set to 32mb. The site, when submitting audio, says files are limited to 16mb through the php config. What am I missing here?
http://peerproducers.com - Peer Production Praxis
audio moduel config
"There are two PHP ini settings, upload_max_filesize and post_max_size, that limit the maximum size of uploads. You can change these settings in the php.ini file or by using a php_value directive in Apache .htaccess file. Consult the PHP documentation for more info."
Changed both to 100 from 32, and now limit is 50 mb. I guess that means I need to set for 200 if I want 100. Strange, eh?
http://peerproducers.com - Peer Production Praxis