File uploads with JCE on front end - Joomla! Forum - community, help and support
i've got jce set on site , using both front end , end editing. i've got upload size limit set jce saying server's max is, 32768 kb. (not sure gets number, server's php.ini set 50 mb, that's not big deal.)
when upload 20 mb file jce end, works well. when try same on front end, i'm given notice there's 8 mb limit. i've got same editor profile set both front , back.
anyone have idea why happening?
when upload 20 mb file jce end, works well. when try same on front end, i'm given notice there's 8 mb limit. i've got same editor profile set both front , back.
anyone have idea why happening?
except upload_max_filesize must check , post_max_size .
for example if want 50m must have in php.ini or.user.ini(it depends server configuration)
.
if server uses .htaccess file php changes must have .
you can check have phpinfo file http://php.net/manual/en/function.phpinfo.php
for example if want 50m must have in php.ini or.user.ini(it depends server configuration)
code: select all
upload_max_filesize = 50m
post_max_size = 50m
if server uses .htaccess file php changes must have
code: select all
php_value upload_max_filesize 50m
php_value post_max_size 50m
you can check have phpinfo file http://php.net/manual/en/function.phpinfo.php
Comments
Post a Comment