I'm trying to upload 50mb files but am getting an error that the files are too big.
I changed the php.ini file too this:
upload_max_filesize = 100M
post_max_size = 200M
This change is reflected with phpinfo()
This is from my ckfinder configuration file:
How can I fix this?
Thanks E
I changed the php.ini file too this:
upload_max_filesize = 100M
post_max_size = 200M
This change is reflected with phpinfo()
This is from my ckfinder configuration file:
$config['ResourceType'][] = Array( 'name' => 'Files', // Single quotes not allowed 'url' => $baseUrl . 'files', 'directory' => $baseDir . 'files', 'maxSize' => "100M", 'allowedExtensions' => '7z,aiff,asf,avi,bmp,csv,doc,docx,fla,flv,gif,gz,gzip,jpeg,jpg,mid,mov,mp3,mp4,mpc,mpeg,mpg,ods,odt,pdf,png,ppt,pptx,pxd,qt,ram,rar,rm,rmi,rmvb,rtf,sdc,sitd,swf,sxc,sxw,tar,tgz,tif,tiff,txt,vsd,wav,wma,wmv,xls,xlsx,zip', 'deniedExtensions' => ''); $config['ResourceType'][] = Array( 'name' => 'Images', 'url' => $baseUrl . 'images', 'directory' => $baseDir . 'images', 'maxSize' => "100M", 'allowedExtensions' => 'bmp,gif,jpeg,jpg,png,avi,iso,mp3', 'deniedExtensions' => ''); $config['ResourceType'][] = Array( 'name' => 'Flash', 'url' => $baseUrl . 'flash', 'directory' => $baseDir . 'flash', 'maxSize' => 0, 'allowedExtensions' => 'swf,flv', 'deniedExtensions' => '');
How can I fix this?
Thanks E
Re: Uploading large files
Turn on error_reporting and check error_log on the server, perhaps there will be more information, because theoretically is should work fine.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Uploading large files
I've been trying to troubleshoot the uploader script but haven't managed to figure out how to do anything but break it altogether. I've had this same problem on two different hosts.
Any other ideas as to how to modify the uploader script or configuration file to fix this?
Thanks E
Re: Uploading large files
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+