wordpress upload theme The link you followed has expired. (already set_time limit 400 )












-1















I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.



Could you please tell what else I should after setting these parameters at wp-config.php ?



..



 */
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);


My zip upload size is 142 MB










share|improve this question


















  • 1





    You could just transfer it through your FTP client.

    – Stender
    Jan 2 at 9:31
















-1















I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.



Could you please tell what else I should after setting these parameters at wp-config.php ?



..



 */
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);


My zip upload size is 142 MB










share|improve this question


















  • 1





    You could just transfer it through your FTP client.

    – Stender
    Jan 2 at 9:31














-1












-1








-1








I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.



Could you please tell what else I should after setting these parameters at wp-config.php ?



..



 */
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);


My zip upload size is 142 MB










share|improve this question














I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.



Could you please tell what else I should after setting these parameters at wp-config.php ?



..



 */
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true );
define('WP_ALLOW_REPAIR', true);
define('WP_MEMORY_LIMIT', '259M');
set_time_limit(400);


My zip upload size is 142 MB







php wordpress ftp






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 2 at 6:42









Raju yourPepeRaju yourPepe

5911047105




5911047105








  • 1





    You could just transfer it through your FTP client.

    – Stender
    Jan 2 at 9:31














  • 1





    You could just transfer it through your FTP client.

    – Stender
    Jan 2 at 9:31








1




1





You could just transfer it through your FTP client.

– Stender
Jan 2 at 9:31





You could just transfer it through your FTP client.

– Stender
Jan 2 at 9:31












2 Answers
2






active

oldest

votes


















1














You need to increase upload_max_filesize. You can do this using any of the following methods:



1. htaccess file:



php_value upload_max_filesize 150M
php_value post_max_size 150M


2. php.ini file:



upload_max_filesize = 150M
post_max_size = 150M


3. Theme's function.php file or wp-config.php:



@ini_set( 'upload_max_size' , '150M' );
@ini_set( 'post_max_size', '150M');





share|improve this answer

































    1














    You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.



    I can suggest another option to use file manager to upload the theme into wp-content/themes folder.



    If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.






    share|improve this answer


























    • Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

      – Sarath
      Jan 2 at 11:48











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54002272%2fwordpress-upload-theme-the-link-you-followed-has-expired-already-set-time-limi%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    You need to increase upload_max_filesize. You can do this using any of the following methods:



    1. htaccess file:



    php_value upload_max_filesize 150M
    php_value post_max_size 150M


    2. php.ini file:



    upload_max_filesize = 150M
    post_max_size = 150M


    3. Theme's function.php file or wp-config.php:



    @ini_set( 'upload_max_size' , '150M' );
    @ini_set( 'post_max_size', '150M');





    share|improve this answer






























      1














      You need to increase upload_max_filesize. You can do this using any of the following methods:



      1. htaccess file:



      php_value upload_max_filesize 150M
      php_value post_max_size 150M


      2. php.ini file:



      upload_max_filesize = 150M
      post_max_size = 150M


      3. Theme's function.php file or wp-config.php:



      @ini_set( 'upload_max_size' , '150M' );
      @ini_set( 'post_max_size', '150M');





      share|improve this answer




























        1












        1








        1







        You need to increase upload_max_filesize. You can do this using any of the following methods:



        1. htaccess file:



        php_value upload_max_filesize 150M
        php_value post_max_size 150M


        2. php.ini file:



        upload_max_filesize = 150M
        post_max_size = 150M


        3. Theme's function.php file or wp-config.php:



        @ini_set( 'upload_max_size' , '150M' );
        @ini_set( 'post_max_size', '150M');





        share|improve this answer















        You need to increase upload_max_filesize. You can do this using any of the following methods:



        1. htaccess file:



        php_value upload_max_filesize 150M
        php_value post_max_size 150M


        2. php.ini file:



        upload_max_filesize = 150M
        post_max_size = 150M


        3. Theme's function.php file or wp-config.php:



        @ini_set( 'upload_max_size' , '150M' );
        @ini_set( 'post_max_size', '150M');






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 2 at 11:26

























        answered Jan 2 at 11:14









        Muhammad BilalMuhammad Bilal

        1,80311222




        1,80311222

























            1














            You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.



            I can suggest another option to use file manager to upload the theme into wp-content/themes folder.



            If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.






            share|improve this answer


























            • Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

              – Sarath
              Jan 2 at 11:48
















            1














            You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.



            I can suggest another option to use file manager to upload the theme into wp-content/themes folder.



            If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.






            share|improve this answer


























            • Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

              – Sarath
              Jan 2 at 11:48














            1












            1








            1







            You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.



            I can suggest another option to use file manager to upload the theme into wp-content/themes folder.



            If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.






            share|improve this answer















            You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.



            I can suggest another option to use file manager to upload the theme into wp-content/themes folder.



            If they doesn't work, you can change the values in CPanel for max_file_upload and use a suitable value.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 2 at 11:46

























            answered Jan 2 at 11:37









            SarathSarath

            117




            117













            • Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

              – Sarath
              Jan 2 at 11:48



















            • Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

              – Sarath
              Jan 2 at 11:48

















            Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

            – Sarath
            Jan 2 at 11:48





            Also, check the following values in the server:memory_limit upload_max_size post_max_size upload_max_filesize max_execution_time max_input_time

            – Sarath
            Jan 2 at 11:48


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54002272%2fwordpress-upload-theme-the-link-you-followed-has-expired-already-set-time-limi%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            How to fix TextFormField cause rebuild widget in Flutter

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith