分类: 系统运维
2010-06-16 13:35:44
[Wed Aug 26 13:40:02 2009] [warn] pid file E:/APMServ/Apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
PHP Warning: PHP Startup: Unable to load dynamic library 'E:/APMServ/PHP/ext\\php_xsl.dll' - \xd5\xd2\xb2\xbb\xb5\xbd\xd6\xb8\xb6\xa8\xb5\xc4\xb3\xcc\xd0\xf2\xa1\xa3\r\n in Unknown on line 0
PHP Warning: [eAccelerator] This build of "eAccelerator" was compiled for PHP version 5.2.6. Rebuild it for your PHP version (5.2.4) or download precompiled binaries.\n in Unknown on line 0
PHP Fatal error: Unable to start eAccelerator module in Unknown on line 0
原来是以前在本机(Windows 2003标准版)安装过Apache,有一些残留文件,C:\windows\下的dll文件被Apache优先加载了,而没有加载应该加载的APACHE目录中的DLL。
如果出现“Unable to load dynamic library“错误,但配置文件又是正确的情况下,一定要注意这些目录下有没有当前PHP版本需要使用的dll不同版本的同名文件。(搜索文件名含php的dll文件,并删除即可)
chinaunix网友2011-04-04 13:51:53
/Apache/conf/httpd-default.conf ServerTokens Prod ServerSignature Off php.ini 248行 expose_php Off
chinaunix网友2010-06-21 06:51:08
LoadModule rewrite_module modules/mod_rewrite.so #APMServ默认虚拟主机 AllowOverride All
chinaunix网友2010-06-17 21:33:35
php.ini 659行 date.timezone = Asia/Chongqing 993行 session.save_path = "./tmp/sessiondata/" memory_limit = 64M post_max_size = 20M upload_max_filesize = 20M /Apache/extra/httpd-ssl.conf 第189行 盘符 /Apache/conf/httpd.conf DirectoryIndex index.php index.html ErrorDocument 404 /error.html APMServ 5.2.6无法启动Nginx的BUG修正方法 在nginx\conf\nginx.conf配置文件的http { }内,增加以下三行: client_body_temp_path /APMServ5.2.6/nginx/client_body_temp; proxy_temp_path /APMServ5.2.6/nginx/proxy_temp; fastcgi_temp_p
chinaunix网友2010-06-17 20:58:03
phpMyAdmin修改密码和允许远程访问 update user set password=password('root') where user='root'; update user set host = '%' where user = 'root'; flush privileges; MySQL4数据导入MySQL5,在filename.sql表结构最后添加utf8即可。 ENGINE=MyISAM DEFAULT CHARSET=utf8