• Dear WordPress Community,

    I’m checking out on the latest update feature rolled out in WordPress 5.5, which is updating Plugin by Adding Zip Files in the WP Dashboard. I’m having a bit of an issue, please see the video in this link: https://youtu.be/rkPMz1w1cQU I try to update by adding plugin zip files manually, but failed to update the plugin with a message “The link you followed has expired”. I tried to increasing the upload size but found no success either. Any idea to solve this problem?

    Thank you….

Viewing 1 replies (of 1 total)
  • Did you increase the post size and max execution time? One quick way to increase all of them is to open the file functions.php and add the following line:

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

    It that doesn’t work, you could try increasing limits in .htaccess file.

Viewing 1 replies (of 1 total)
  • The topic ‘WordPress 5.5 Error Updating Plugin “The link you followed has expired”’ is closed to new replies.