找不到Lighttpd服务器fastcgi PHP 404

问题描述 投票:0回答:3

多数民众赞成我的噩梦我正在工作2天..我的wordpress页面无法正常工作,当我尝试重新启动lighttpd服务器时,我也开始“404找不到”我得到了这个

“(plugin.c.131)无法多次加载插件mod_fastcgi,请修改您的配置(我们可能不会在将来的版本中接受此类配置”

this is my lighttpd.conf file.

server.modules = (
        "mod_access",
        "mod_alias",
        "mod_compress",
        "mod_redirect",
        "mod_rewrite",
        "mod_accesslog",
        "mod_fastcgi",
)
server.tag = "Private Server"
server.max-fds = 8192
server.max-connections = 4096
server.document-root        = "/var/www"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
accesslog.filename      = "/var/log/lighttpd/access.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80

index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".scgi", ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "application/x-javascript", "text/x-js", "text/css", "text/xml", "text/javascript", "text/html", "text/plain"$
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
include "test.com.conf"
fastcgi.server = ( ".php" => ((
                     "bin-path" => "/usr/bin/php5-cgi",
                     "socket" => "/var/run/lighttpd/php-fastcgi.socket",
                "max-procs" => 5,
                "bin-environment" => (
                        "PHP_FCGI_CHILDREN" => "40",
                        "PHP_FCGI_MAX_REQUESTS" => "10000"
                ),
                "bin-copy-environment" => (
                        "PATH", "SHELL", "USER"
                ),
                "broken-scriptfilename" => "enable"
                 )))
php wordpress fastcgi lighttpd
3个回答
2
投票

如果你启用了fastcgi。 fastcgi.conf文件已经添加了fastcgi模块

server.modules += ( "mod_fastcgi" )

你不需要将它添加到lighttpd.conf


0
投票

您无法加载模块两次。

使用以下命令查找已将模块加载两次的位置。

$ grep -i -r -n -e "mod_fastcgi" /etc/lighttpd (where you store your config files)

0
投票

加载两次的模块不是很好(并且应该修复),但它不会触发您当前的问题。

为了能够理解该问题,您必须在lighttpd配置中启用更多日志:

debug.log-request-handling = "enable"

将在/var/log/lighttpd/error.log中添加许多有用的东西。

所以:

  • 在配置中添加新参数
  • 重启lighttpd
  • tail -f /var/log/lighttpd/error.log
  • 加载您的页面并查看tail的输出

很可能lighttpd正在错误的地方寻找你的文件,并且所有的重写等等你都能找到你错的地方。

© www.soinside.com 2019 - 2024. All rights reserved.