• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

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
 
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