0

i am getting these error messages in my apache log but i have no idea what they mean. any ideas?

[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [warn] Cannot get media type from 'x-mapp-php5'
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to  33554432/33554432 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 2 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 3 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to  176160768/176160768 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 2 set to  4294967295/4294967295 (soft/hard) bytes
[Thu Jan 10 17:50:20 2013] [error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 3 set to  4294967295/4294967295 (soft/hard) bytes`
4

1 回答 1

0

Cannot get media type from 'x-mapp-php5'

您的 php 设置有问题(如果您收到该消息,php 文件可能无法正常工作)。x-mapp-php5 很可能在您的 Apache 配置中映射到“.php”,因此当服务器尝试提供 php 文件时,它正在寻找处理 x-mapp-php5 的东西,但由于一些配置错误而没有找到它.

[error] [client 66.249.78.171] [info] [pid=23974 euid=0 egid=99] suexec.cpp(280): setrlimit(2): 9 set to 33554432/33554432 (soft/hard) bytes

pid、euid 和 egid 是进程 ID、用户 ID 和组 ID。suexec.cpp 表示某些东西正试图将用户标识更改为 root (euid=0)。setrlimit 表示尝试设置系统资源限制。

换句话说,您的 Apache 设置中的某些东西正试图在系统级别上做一些它不能/不应该做的事情。

于 2013-01-17T14:02:56.937 回答