那是我的噩梦,我工作了2天。 我的wordpress页面不起作用,我没有找到404#404;#34; 当我尝试重新启动lighttpd服务器时,我得到了这个
"(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"
)))
答案 0 :(得分:2)
如果您启用了fastcgi。 fastcgi.conf文件已经添加了fastcgi模块
server.modules += ( "mod_fastcgi" )
您不需要将其添加到lighttpd.conf
答案 1 :(得分:0)
您无法加载模块两次。
使用以下命令查找已将模块加载两次的位置。
$ grep -i -r -n -e "mod_fastcgi" /etc/lighttpd (where you store your config files)
答案 2 :(得分:0)
加载两次的模块不是很好(并且应该修复),但它不会触发您当前的问题。
为了能够理解该问题,您必须在lighttpd配置中启用更多日志:
debug.log-request-handling = "enable"
将在/var/log/lighttpd/error.log
中添加许多有用的东西。
所以:
tail -f /var/log/lighttpd/error.log
tail
很可能lighttpd正在错误的地方寻找您的文件,并且所有重写等等,您都可以找到您错误的地方。