有朋友留言说安装插件出现 WordPress错误:Fatal error: Allowed memory size of XX bytes exhausted…,具体代码类似:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) in
/home/www/web/xxxxxx.php on line xxx
错误根源
出现类似错误,一般是由于主机空间的内存设置过小造成的
解决办法
网上对于该问题的解决办法有如下3种,大家不妨一一测试:
方法一:
在 wp-config.php 文件的 define (‘WPLANG’, ”);下一行添上:
define('WP_MEMORY_LIMIT', '64M');
方法二:
在WordPress的安装目录下新建一个.htaccess文件(已存在就不用新建了),在文件内填上:
php_value memory_limit 64M
方法三:
如果你有修改 php.in 文件的权限,可以查找 memory_limit 修改为
memory_limit = 64M ;
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 20480 bytes) in /wp-includes/class-wp-term.php on line 198 我调到最大了,用一段时间又这样了。不知道怎么弄。大佬
服务器的问题原因很多的,如果你的内存占用一直都在上升,可以看下 https://www.wpdaxue.com/baota-panel-memory-usage-is-too-high.html
如果还是不行,考虑一下是否流量过大,服务器配置跟不上
多说默认也不是,其实加一串CSS就可以了,我是用的默认的评论+CSS实现的
自定义CSS#ds-reset .ds-avatar img{ width:54px;height:54px; /*设置图像的长和宽,这里要根据自己的评论框情况更改*/ border-radius: 27px;/*设置图像圆角效果,在这里我直接设置了超过width/2的像素,即为圆形了*/ -webkit-border-radius: 27px;/*圆角效果:兼容webkit浏览器*/ -moz-border-radius:27px; box-shadow: inset 0 -1px 0 #3333sf;/*设置图像阴影效果*/ -webkit-box-shadow: inset 0 -1px 0 #3333sf; -webkit-transition: 0.4s; -webkit-transition: -webkit-transform 0.4s ease-out; transition: transform 0.4s ease-out;/*变化时间设置为0.4秒(变化动作即为下面的图像旋转360读)*/ -moz-transition: -moz-transform 0.4s ease-out; } #ds-reset .ds-avatar img:hover{/*设置鼠标悬浮在头像时的CSS样式*/ box-shadow: 0 0 10px #fff; rgba(255,255,255,.6), inset 0 0 20px rgba(255,255,255,1); -webkit-box-shadow: 0 0 10px #fff; rgba(255,255,255,.6), inset 0 0 20px rgba(255,255,255,1); transform: rotateZ(360deg);/*图像旋转360度*/ -webkit-transform: rotateZ(360deg); -moz-transform: rotateZ(360deg); }
谢谢支持