Wordpress - link you followed has expired

Wordpress - link you followed has expired

In this article we are going to present a solution when theme installation issue happens with following error "link you followed has expired"

This issue mostly happens due to your website host configuration , two major parameter which should be modified are "Maximum upload size" and "Maximum post size" , there are different approaches to modify those settings 


Approach 1 : Editing Wp-config

First please use any ftp client to connect to your website FTP server ( you can ask about FTP credentials from your host admins ) or use your host panel file manager to access core files , now in Wordpress installation path look for wp-config.php , make a copy just to have a backup and then edit the original file and add following codes before /** Sets up WordPress vars and included files. */ section

  1. ini_set( 'upload_max_size' , '64M' );
  2. ini_set( 'post_max_size', '64M');
  3. ini_set( 'memory_limit', '64M' );
Save the file and then check your website admin panel >> media >> add new and check for maximum upload file size as shown in following image 



Approach 2 : Editing php.ini

First please use any ftp client to connect to your website FTP server ( you can ask about FTP credentials from your host admins ) or use your host panel file manager to access core files , now in Wordpress installation path look for php.ini ( create one if there is no file named that ) , edit that file and add following code into it 
  1. upload_max_filesize = 64M
  2. post_max_size = 64M
  3. memory_limit = 64M
Save the file and then check your website admin panel >> media >> add new and check for maximum upload file size


Approach 3 : Editing .htaccess

First please use any ftp client to connect to your website FTP server ( you can ask about FTP credentials from your host admins ) , now in Wordpress installation path look for .htaccess  create a backup from that file by downloading it in your system or making a copy on the host , edit that file and add following code into it 
  1. php_value upload_max_filesize 64M
  2. php_value post_max_size 64M


Save the file and then check your website admin panel >> media >> add new and check for maximum upload file size




Approach 4: Using Plugin

In this scenario you need to use third party plugins which is named Increase Max Upload Filesize , you can install and activate that plugin from admin panel >> add new as shown in following image 



 


Access the setting panel of that plugin by visiting admin panel >>  setting >> Increase Maximum Upload File Size and choose the proper maximum upload size 




Save changes and then check again to see if maximum upload size has been changed or not


Approach 5 : Contact Host Administrator

You can contact your host administrator and they will take care of the rest , and then you can check again if the changes have been applied or not and then try to install our theme again


If you have any further question please contact us by visiting http://help.pixflow.net





    • Related Articles

    • Massive Dynamic - Install Theme

      Installing Main theme without Child theme 1 - Please login into your envato account and then navigate to https://themeforest.net/downloads 2 - Now find Massive Dynamic item in your purchased items and then click on "Download" button 3 - Choose ...
    • Massive Dynamic - Translate Massive Dynamic's strings

      In this article, we'll explain how to translate the theme strings. If you want to translate the strings for the first time, please follow the below steps: 1. Download the POEDIT plugin on your device.  2. Download the "massive-dynamic.pot" file from ...
    • Massive Dynamic - Change the font family

      In this article, we'll explain how to change the font family. 1. Open the website in site setting mode. 2. Navigate to the Typography. 3.select the element which you want to change the font family of it. 4. If you want to use the google fonts which ...
    • Massive Dynamic - Use Plugins Are Included

      When you install Massive Dynamic, a message appears in the admin dashboard of WordPress and asks you to install required and recommended plugins. Some of these plugins are included in the massive-dynamic.zip file and some of them are on the WordPress ...
    • Massive Dynamic - Make portfolio item link to external pages

      This is a step by step guide for linking portfolio item to the external page. 1. Open the portfolio item page in edit mode from the WordPress dashboard. 2.Choose shortcode base from the portfolio setting 3. Choose Backend Editor from the top of the ...