upload_max_filesize change - Joomla! Forum - community, help and support
is there me change upload_max_filesize 2m?
i don't know file configured..and where/what folder locate..
thanks...

i don't know file configured..and where/what folder locate..
thanks...
it's set on host you're using, controlled directly php setting called upload_max_size, , few associated ones: post_max_size, max_execution_time , memory_limit. set @ '2m' default in shared hosting environments.
being able set higher depends on how site's host handles situation. oftentimes, they'll allow add .htaccess file site's root directory change value, i.e.
try placing these in .htaccess, setting value want.
or allow make same kind of override in php.ini file somewhere in installation. in cases, host won't provide option directly, 1 reason or another, , you'd need appeal support set these values.
being able set higher depends on how site's host handles situation. oftentimes, they'll allow add .htaccess file site's root directory change value, i.e.
try placing these in .htaccess, setting value want.
code: select all
php_value post_max_size "8m"
php_value upload_max_filesize "3m"
or allow make same kind of override in php.ini file somewhere in installation. in cases, host won't provide option directly, 1 reason or another, , you'd need appeal support set these values.
Comments
Post a Comment