环境:ubuntu 12.04, ubuntu 14.04, wordpress 4.0, opencart 1.5, postgresql 9.1, mysql 5
昨天升级ubuntu系统至14.04版本后,发现之前安装的wordpress和opencart全线瘫痪。(冒汗不止)。这两个主页都是空白的,无任务报错信息。只能到网上狂搜一把。解决方案如下
wordpress:
“无法选择数据库”(postgresql),试过各种方法,最后只能把wordpress降版本至3.4.2
wget https://cn.wordpress.org/wordpress-3.4.2-zh_CN.tar.gz
重新布置到/var/www目录下。 (注意ubuntu 14.04的apache2的DocumentRoot与之前不同位置。
sudo vi /etc/apache2/sites-enabled/000-default.conf
将DocumentRoot /var/www/html修改为DocumentRoot /var/www)
还是一个问题是wordpress默认主题需要更改,否则也是只能看到空白页面
opencart:
增加一行到index.php显示出错日志
<?php
ini_set(‘display_errors’, ‘on’);
?>
Fatal error: Call to undefined function mcrypt_create_iv()
is that mcrypt
重新安装mcrypt和php5-mcrypt
sudo apt-get install mcrypt
sudo apt-get install php5-mcrypt
php -m | grep mcrypt
加载模块
sudo php5enmod mcrypt
今天是几乎花费半天的时间来处理这两个应用的问题, 网上的解决方法也是只能给个思路。只能自己深入地了解问题才能定位并解决。还有一点,升级系统切记要慎重!