How to Fix the “The Link You Followed Has Expired” Error in WordPress
The “The Link You Followed Has Expired” error often appears when uploading a theme, plugin, or other large files in WordPress. This typically happens due to limitations on file size and execution time set in your hosting control panel. Here’s a quick guide on fixing it by increasing these limits.
Step 1: Access Your Hosting Control Panel
- Log into your hosting control panel: This could be cPanel, Plesk, or any other management tool your hosting provider uses.
Step 2: Find the PHP Configuration Settings
- Locate PHP Settings: Navigate to the section where you can adjust PHP settings. This could be labeled as PHP Settings, PHP Configuration, or INI Editor depending on your control panel.
Step 3: Update PHP Limits
- Adjust the following values:
- upload_max_filesize: Increase to
64M
or higher. - post_max_size: Increase to match the upload max file size, e.g.,
64M
. - max_execution_time: Set to
300
or higher to allow sufficient processing time.
- upload_max_filesize: Increase to
- Save Changes: Ensure you save the updated settings.

Step 4: Retry the File Upload
- Return to WordPress: Go back to your WordPress dashboard and try uploading the file again to verify if the issue is resolved.
This should increase the file upload size and time limit, helping you avoid this error.
Was this article helpful?
YesNo