6

我正在我的开发机器上运行XAMPP 1.8.1Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7测试我的项目。在我的私人项目和众所周知的 Bootstrap Datepicker 组件中,我可以选择任何语言(在 datepicker 的情况下为 38 种语言之一),但不能选择 Polish

经过深入调查,我发现这是造成的,因为当浏览器尝试加载语言环境文件时(general.pl.json对于我的项目bootstrap-datepicker.pl.js,如果是 Bootstrap Datepicker,对于 Bootstrap Datepicker,则服务器(Apache)失败并显示500 Internal Server Error.

在分析了 Apacheerror.log文件后,我发现这正在发生,因为 Apache 以某种方式试图将该文件作为(可能是 Perl)可执行脚本执行:

[win32:error] [pid 5128:tid 1680] [client 127.0.0.1:53455] AH02102: C:/XAMPP/htdocs/mobile/public/pg-demo-bootstrap/locales/general.pl.json is not executable; ensure interpreted scripts have "#!" or "'!" first line, referer: http://127.0.0.1/mobile/public/pg-demo-bootstrap/
[cgi:error] [pid 5128:tid 1680] (9)Bad file descriptor: [client 127.0.0.1:53455] AH01222: don't know how to spawn child process: C:/XAMPP/htdocs/mobile/public/pg-demo-bootstrap/locales/general.pl.json, referer: http://127.0.0.1/mobile/public/pg-demo-bootstrap/
[win32:error] [pid 5128:tid 1644] [client 127.0.0.1:53465] AH02102: C:/XAMPP/htdocs/us/ustv/assets/6dafd2fe/js/locales/bootstrap-datepicker.pl.js is not executable; ensure interpreted scripts have "#!" or "'!" first line, referer: http://127.0.0.1/us/ustv/content/manage/update.html?id=4
[cgi:error] [pid 5128:tid 1644] (9)Bad file descriptor: [client 127.0.0.1:53465] AH01222: don't know how to spawn child process: C:/XAMPP/htdocs/us/ustv/assets/6dafd2fe/js/locales/bootstrap-datepicker.pl.js, referer: http://127.0.0.1/us/ustv/content/manage/update.html?id=4

我做了很多更改内容和文件名的测试,使用许多假文件来假装这个文件(波兰语语言环境),这一切都带来了结论,内容不是问题,只是.pl文件名有问题。

好的问题是:

  1. 为什么 Apache 声称,这是脚本,尽管.pl(Perl?)文件名的一部分在中间并且文件名实际上以.jsor结尾.json

  2. 为什么 Apache for Windows试图执行 Linux/Unix/Bash 脚本并在其第一行中寻找#!或字符?'!

更好的问题是,如何解决这个问题,以便 Apache 开始将此文件视为简单的 Javascript,就像所有其他语言环境文件一样?并且不会尝试执行它?

4

3 回答 3

6

在 xampp\apache\conf\httpd.conf 中,应该有如下一行:

AddHandler cgi-script .cgi .pl .asp

像这样简单地注释掉这一行:

#AddHandler cgi-script .cgi .pl .asp

并重新启动 Apache。如果您想保留 .cgi 和 .asp 处理程序,只需从该行中删除 .pl。即使您这样做,Perl 实际上仍然可以工作。

于 2013-07-25T20:41:46.207 回答
4

我遇到了同样的问题,之前的答案并没有为我解决问题,但引导我访问http://httpd.apache.org/docs/2.2/mod/mod_mime.html#addhandler的 Apache 文档,其中说:

文件名可能有多个扩展名,扩展名参数将与每个扩展名进行比较。

多个扩展名链接指向同一页面上的另一个部分,该部分说明文件可以具有多个扩展名。即:welcome.fr.html被视为与welcome.html.fr. 扩展名的顺序无关紧要,文件名甚至可以包含多种语言,如welcome.html.en.de. 优点是定义的语言在 HTTP 标头中发送。

仅基于最终扩展配置处理程序:

<FilesMatch \.pl$>
SetHandler cgi-script pl
</FilesMatch>

为了完成这项工作,我必须首先删除处理程序pl

RemoveHandler pl
于 2013-09-10T18:47:19.380 回答
2

如果 apache 日志中出现以下消息

apache:.js 不可执行;确保解释的脚本有“#!”

您应该修改配置文件并使用 Alias 而不是 ScriptAlias,如下所示:

别名 /bugzilla/ "C:/bugzilla/"

并在别名行之后的 apache 配置中添加以下代码段。

<Directory "C:/bugzilla">
    ScriptInterpreterSource Registry-Strict
    AddHandler cgi-script .cgi
    Options +ExecCGI +FollowSymLinks
    DirectoryIndex index.cgi index.html
    AllowOverride Limit FileInfo Indexes Options AuthConfig
    Require all granted
</Directory>
于 2018-09-19T07:28:06.803 回答