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
increase max post size
-
- New Member
- Posts: 2
- Joined: Tue Oct 11, 2011 2:54 am
Re: increase max post size
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
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