Page 1 of 1

increase max post size

Posted: Tue Oct 11, 2011 3:01 am
by steveg5223
I'm trying to upload audio files via file manager.

It uploads, but after the upload is complete. I get redirected to the login page.

I think the issue is that post_max_size and upload_max_filesize are too small (currently set to 8M)

How do I increase these sizes. I've tried to add the following to admin/index.php:


ini_set('post_max_size', '64000000');
ini_set('upload_max_filesize', '32000000');


I appreciate any help you can provide.

Steve

Re: increase max post size

Posted: Tue Oct 11, 2011 10:46 pm
by steveg5223
I solved the problem myself.

After searching the godadddy help system. I discovered that the php.ini is only for php4.

If you want a php.ini file for php5, you have to name it php5.ini in the root directory

Steve