网站优化

网站优化

Products

当前位置:首页 > 网站优化 >

wordpress upload theme您关注的链接已过期。 (已设定时限400)

GG网络技术分享 2025-03-18 16:12 1


问题描述:

I have got my customised theme and upload to Wordress site. When it comes to upload the zip file at Appearance > Theme , it says The link you followed has expired.

Could you please tell what else I should after setting these parameters at wp-config.php ?

..

 */

define(\'WP_DEBUG\', true);

define(\'WP_DEBUG_LOG\', true );

define(\'WP_ALLOW_REPAIR\', true);

define(\'WP_MEMORY_LIMIT\', \'259M\');

set_time_limit(400);

My zip upload size is 142 MB

网友观点:

You need to increase upload_max_filesize. You can do this using any of the following methods:

1. htaccess file:

php_value upload_max_filesize 150M

php_value post_max_size 150M

2. php.ini file:

upload_max_filesize = 150M

post_max_size = 150M

3. Theme\'s function.php file or wp-config.php:

@ini_set( \'upload_max_size\' , \'150M\' );

@ini_set( \'post_max_size\', \'150M\');

###

You could have tried it first in local wordpress installation. Then you may continue with uploading the entire content to server using FTP clients.

I can suggest another option to use file manager to upload the theme into wp-content/themes folder.

If they doesn\'t work, you can change the values in CPanel for max_file_upload and use a suitable value.

标签:

提交需求或反馈

Demand feedback