• I am trying to upload an theme from Mojo Marketplace and i need the upload limit to be 5MB in order to upload the theme.

Viewing 1 replies (of 1 total)
  • Better ask your hosting provider to increase upload size limit.

    If you are comfortable with editing WordPress files then you can use any of these methods.

    1.Editing theme function file

    Add following line of code in your active theme functions.php file.

    @ini_set( 'upload_max_size' , '64M' );
    @ini_set( 'post_max_size', '64M');
    @ini_set( 'max_execution_time', '300' );

    2. Editing htaccess file
    These file exist is root folder of your WordPress Installation.
    Add following lines.

    php_value upload_max_filesize 64M
    php_value post_max_size 64M
    php_value max_execution_time 300
    php_value max_input_time 300

    It should fix the issue.

Viewing 1 replies (of 1 total)
  • The topic ‘How do i increase size of upload limit?’ is closed to new replies.