Skip to main content

How To Fix ‘The Link You Followed Has Expired’ Error In WordPress

The “link you followed has expired” is a
common error that occurs when trying to upload themes and plugins via the
WordPress dashboard.

The error usually happens when the file you’re
trying to upload is larger than the default upload and execution limits set by
WordPress. The best way to fix the issue is to increase the default upload
limits.

In this guide, we’ll show you how to fix the “link
you followed has expired” all by yourself in a few easy steps.

What Causes ‘The Link You
Followed Has Expired’ Error?

If you were to open the WordPress dashboard and go to Media >> Add New page, you’ll notice that by default WordPress has a fixed upload size limit that prevents you from uploading files of larger sizes.

wordpress-upload-limit 2

These prefixed sizes differ based on the type of web hosting plan you use. While managed WordPress hosting providers set over 100mb as the maximum upload size limit, smaller shared hosting plans may limit the size to 25mb. This limit is usually what keeps you from uploading heavy themes and plugins.

Even if your website has a bigger upload size
limit, if your website’s maximum execution time is limited, then WordPress will
often fail to upload larger files. This is when you encounter fatal errors and
other specific issues like “link you followed has expired” error.

How To Fix The Error

To fix the “link you followed has expired”
error, all you need to do is to increase the maximum upload size and execution
times for your website.

This requires editing a core WordPress file
and copying a few lines of code. It can be done in several different ways.
We’ll walk you through the process. Remember not to follow all these methods.
If one method didn’t work, reverse the changes you’ve made and try the next
method. Not all at once!

Note: Backup your website and make copies of files before making any changes
to the core WordPress files. Follow this guide to learn how to setup WordPress
backups. If you don’t know what you’re doing, seek help from an expert.

Method 1: Edit .htaccess File

The .htaccess
file is a core file used by WordPress. We can edit this file and copy our code
to change the default upload limits set by WordPress.

To edit the file, you need to access the
WordPress files in your server. We’ll show you how to access the server using
the CPanel. But, you can also use an FTP client app as well.

Step 1: Login To CPanel

If you can’t find the CPanel via your hosting
account, simply type “cpanel” at the
end of your website domain name (eg: yourwebsite.com/cpanel).

Then enter the CPanel username and password.
These details are usually provided to you in the welcome email your hosting
provider sends to you.

Step 2: Find And Open The File Manager

cpanel-file-manager

In the CPanel, find and open the File Manager app. Then it will prompt
you where you want to navigate to. Choose to open the public.html folder.

Step 3: Copy The Code

edit-htaccess-file

On the public.html folder you’ll see the .htaccess file. Right-click on this file and choose Edit.

Then copy and paste the following lines of code at the end of the .htaccess file

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

Once you’re done, click Save.

copy-the-code

This method usually fixes the error. If it didn’t work, try the next method.

Method 2: Create A PHP.ini File

If editing the .htaccess file didn’t work, you
can create and upload a PHP.ini file
into your server to fix the issue.

Some hosting servers will automatically create
a PHP.ini file in your server. Follow the steps detailed in the previous method
to navigate to the public.html folder in
your server and see if there’s already a PHP.ini file in your server.

If not, let’s create one.

Step 1: Create A PHP.ini file

The PHP.ini file has to be created locally on
your computer and then you can upload it to your server.

First, open a blank notepad and copy and
paste
the following lines of code into it.

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300

create-phpini-file

Then Save the note file as php.ini and choose file type as “All Files”

Step 2: Upload The File

Navigate back to your server and go to the public.html folder. Then upload the
PHP.ini file that you’ve just created on your computer.

This will fix the error and increase the
upload size limits to 64MB.

In Conclusion

These methods should help fix the issue and allow you to upload themes and plugins with larger sizes through the WordPress dashboard.

However, some shared hosting providers may have restrictions that will prevent you from uploading large files. If the issue persists, contact your web hosting provider and ask for their help.

In the future, use an FTP client app like Filezilla to directly access your server and upload themes and plugins using the FTP client for easily uploading larger files.

Wp-dd.com

WordPress Design, WordPress Development, cPanel Hosting, Web Design, Web Development, Graphic Design, Mobile Development, Search Engine Optimization (SEO) and more.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.