Home » Plugin Issues » Plugin Installation & Activation » How to Fix ‘The Link You Followed Has Expired’ Error During Plugin Upload

How to Fix ‘The Link You Followed Has Expired’ Error During Plugin Upload

Solution verified by Salah Uddin

Salah Uddin

A Top rated WordPress expert fixing bugs, optimizing speed, and building better sites. Helping you run faster, smoother, and hassle-free.
Quick Tips:

This error often relates to upload limits or execution timeouts. Increase PHP limits in your server or upload via FTP. WPFix247 can resolve this quickly for you.

Why You See ‘The Link You Followed Has Expired’ During Plugin Upload

This error usually occurs when the file size of the plugin exceeds the maximum upload size set by your hosting server. It can also be due to timeout limits being too low for the upload to complete.

1. Increase Upload and Timeout Limits

Edit your .htaccess file and add the 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

2. Alternatively, Update php.ini

If you have access to php.ini, increase the values as follows:

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
max_input_time = 300

3. Modify wp-config.php

As another option, edit wp-config.php and add:

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

4. Upload via FTP as a Workaround

  1. Extract the plugin ZIP on your computer.
  2. Upload the extracted folder to wp-content/plugins/ using FTP.
  3. Activate the plugin via your WordPress dashboard.

Need Help?

If server configuration isn’t your thing or the error persists, the WPFix247 team can take care of it in minutes and ensure plugin uploads work without errors.

Leave a Comment