Viewing 4 replies - 1 through 4 (of 4 total)
  • The Link expired means your Max_upload_file_size is low. Maybe it is default 2MB. You can your Max File Size upload info by going to WordPress Dashboard -> Media -> Add New:

    You can choose any one of the solution below:

    1: Edit functions.php (optional):

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

    2: Edit .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

    3: Edit php.ini:

    upload_max_filesize = 64M
    post_max_size = 64M
    max_execution_time = 300

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    Does this apply to all themes (e.g., twentyfifteen), or just a particular theme?

    This error can show up for any theme if your Upload File size is low. Suggested max upload file size 64MB. And it is not an actual error, it is a message asking you to increase your upload file size to use certain Theme or Plugin.

    Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    hey @moinrrahmed , the max upload size is not relevant when installing a theme from the dashboard, only if you were trying to upload it as a zip file. And, if there were a file size issue, the error would not be “link expired”. @joray25, what theme are you trying to install?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Link Expired’ is closed to new replies.