我的服务器现在很慢。我让我的提供者检查出了什么问题,我得到了这个:
root@Pixel:~# tail -f /var/log/apache2/error.log
sh: 1: compgen: not found
ls: cannot access /usr/bin/convert: No such file or directory
ls: cannot access /usr/local/bin/convert: No such file or directory
sh: 1: compgen: not found
ls: cannot access /usr/bin/convert: No such file or directory
ls: cannot access /usr/local/bin/convert: No such file or directory
sh: 1: compgen: not found
ls: cannot access /usr/bin/convert: No such file or directory
ls: cannot access /usr/local/bin/convert: No such file or directory
sh: 1: compgen: not found而apache正在消耗CPU。我们在我们的网站上使用Wordpress和woocommerce
有什么解决办法吗?
发布于 2015-03-20 10:36:25
您有一个程序,或添加到wordpress,试图使用ImageMagick转换程序进行图像处理。但是ImageMagick没有安装,所以您无疑需要安装它。
如果您可以访问SSH,我建议:
sudo apt-get install imagemagick如果这不是一种选择或者没有帮助,请告诉我。
https://stackoverflow.com/questions/29163717
复制相似问题