doumeng3188 2019-01-02 06:42
浏览 349
已采纳

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

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

  • 写回答

2条回答 默认 最新

  • donglvchu9143 2019-01-02 11:14
    关注

    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');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集