代码改变世界

随笔分类 -  PHP

Table ‘xxx' is marked as crashed and should be repaired

2014-10-04 23:31 by 彭大先生, 222 阅读, 收藏,
摘要: 发现一个”Table ‘xxx' is marked as crashed and should be repaired” 的错误。连忙上网搜索,原来修改这个严重的错误很简单:1. 进入管理mysql的phpmyadmin2. 在左则选中自己的数据库3. 在右则勾选中错误信息中的那个'xxx'表4.... 阅读全文

PhpMyAdmin配置文件现在需要一个短语密码

2014-10-04 23:30 by 彭大先生, 394 阅读, 收藏,
摘要: 在登录phpmyadmin管理数据库,会出现“配置文件现在需要一个短语密码”的警告解决方法: 打开目录phpmyadmin/libraries中的config.default.php文件 查找下面这行:$cfg['blowfish_secret'] = '这里就是需要的短语密码';(短语密码请随... 阅读全文

PHP缺少 mcrypt 扩展

2014-10-04 23:27 by 彭大先生, 288 阅读, 收藏,
摘要: 下面以CentOS 6.0系统为例来为说明: 1、安装第三方yum源(默认yum源里面没有这几个库文件,不能使用yum安装) wget http://www.atomicorp.com/installers/atomic sh ./atomic 2、使用yum命令安装 y... 阅读全文

PHP报“Cannot start session without errors”

2014-10-04 23:25 by 彭大先生, 630 阅读, 收藏,
摘要: CentOS+Nginx+PHP+MYSQL搭建好之后,跑PHP报“Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure y... 阅读全文