友情提示:小程序,开发制作。

标签《httpd错误》下的文章:

5.4.x Call to undefined function session_register()

php版本是5.4.x版本的(),经过一系列的搜寻,发现这个函数在PHP5.4版本中已经被弃用了,已经被删除了。也就是这个函数不再可用了。直接注释掉就可以了,不用进行注册就可以声明session。(亲测可以正常使用)

 

另外的解决方法就是在include/userlogin.class.php 中声明一个函数

function session_register()

{

 return true;

}

(这个没有测试。)

阅读全文>>

nginx File not found 错误

使用php-fpm解析PHP,"No input file specified","File not found"是令nginx新手头疼的常见错误,原因是php-fpm进程找不到SCRIPT_FILENAME配置的要执行的.php文件,php-fpm返回给nginx的默认404错误提示。
 
比如我的网站doucument_root下没有test.php,访问这个文件时通过抓包可以看到返回的内容。
 
HTTP/1.1 404 Not Found
Date: Fri, 21 Dec 2012 08:15:28 GMT
Content-Type: text/html
Proxy-Connection: close
Server: nginx/1.2...

阅读全文>>

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName


httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

解决办法非常简单:

#vim /web/apache/conf/httpd.conf (在这里/web/apahce是我安装apache的目录,你默认安装的话应该是/usr/local/apache2/icons)

找到#ServerName www.example.com:80   把#去掉,再重启apache即可没事了。