• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • šŸ˜Œ This community is user driven. Be polite with other users.
    • šŸ‘‰ Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • šŸ’ø Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Can't change max upload size after moving to TMDhosting

artonbej

Chevereto Member
Hi.

I just moved from arvixe to TMD but i can't change upload size more than 2MB...
Is the problem with the script or the host ? How can i solve this.
 
Just below the size limitation there is a text telling you what's going on. Just read it and check your server values.

Screenshot_20170409-112108_01.png
 
Maximum size allowed by server is 2 MB. This limit is capped by upload_max_filesize = 2M and post_max_size = 8M (php.ini values).

But i have no ideas what to do
 
You need to edit theses values, I believe that there is a php in editor in every cpanel installation.
 
Please check your cpanel stuff.

Screenshot_20170409-131128.png

And please if you have have more concerns about it contact your hosting company.
 
Hi.

I just moved from arvixe to TMD but i can't change upload size more than 2MB...
Is the problem with the script or the host ? How can i solve this.

Anytime if you find this type of issue you have to do this

In PHP.ini file add this code

upload_max_filesize = 20M
post_max_size = 25M
memory_limit = 30M

Also you can do this editing .htaccess file and add this code

php_value upload_max_filesize 20MB
php_value post_max_size 25MB
php_value memory_limit 30MB

Another method is to modify the WordPress file wp-config.php or functions.php files, and paste the following lines of code

@ini_set( ā€˜upload_max_sizeā€™ , ā€™20MBā€™ );
@ini_set( ā€˜post_max_sizeā€™, ā€™25MBā€™);
@ini_set( ā€˜memory_limitā€™, ā€™30MBā€™ );

For further reference I will suggest you to go through this guide increase WordPress upload size limit
 
Back
Top