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?
File Manager Issue?
Re: File Manager Issue?
try in php.ini:upwithit wrote: Any ideas?
- post_max_size to 40MB
- max_execution_time to 180
Alby
Re: File Manager Issue?
That worked. Thanks!