Page 1 of 1

File Manager Issue?

Posted: Mon Jun 08, 2009 12:38 pm
by upwithit
Hi,
I've set up a site (using CMSMS v1.5.3) for which a user will need to upload large files (up to 30 or so mb).  I've changed the upload size limit thus:

#Maxium upload size (in bytes)?
$config['max_upload_size'] = 900000000;

And in php.ini, (I'm using PHP5) I changed the max upload file size:

upload_max_filesize = 30M

But when I try to upload a file, even one as small as 10mb, the system works for a bit, but then I'm kicked out to the main admin login screen.  Any ideas?

Re: File Manager Issue?

Posted: Mon Jun 08, 2009 12:50 pm
by alby
upwithit wrote: Any ideas?
try in php.ini:
- post_max_size to 40MB
- max_execution_time to 180

Alby

Re: File Manager Issue?

Posted: Mon Jun 08, 2009 1:30 pm
by upwithit
That worked.  Thanks!