最近几天发现站点老是提示: Warning: include(): Unable to allocate memory for pool
开始的时候没在意,以为是PHP没有足够的执行内存,修改了PHP.INI 设置最大的运行内存是原来的两倍。
修改后重启,确实一段时间没有这个错误了。
&n......
php5.3和之前的版本函数差异
1:Function ereg() is deprecated Error 错误对策
Deprecated: Function ereg() is deprecated in ……
解决方法一: 退回去用php5.2。
解决方法二:继续用php5.3,但是修改devel/devel.modul的460行: if ($errno & (E_ALL ^ ......
今天突然 MYSQL连接不上,检查发现 MYSQL DOWN 掉了
直接重启 service mysqld start 。
提示:
Starting MySQL..Manager of pid-file quit without updating file
应该有进程被占用了,
直接kill -9 结束掉后执行。
S......