1

在 JS 文件包含期间,我的新服务器上的 ZF 出现问题。包括外部JS(google api)没问题。看来,zf 想要加载不相关的 JS 文件。

FireBug 在 html 控制台的 Srcipt 标签中显示的错误消息:

<script src="/javascript/helper.js" type="text/javascript">

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL http://project/javascript/helper.js was not found on this server.    </p>
<hr>
<address>Apache/2.2.16 (Debian) Server at domain.squeeze Port 80</address>
</body></html>
</script>

该页面不加载脚本,因为它试图通过完整的 url 获取文件。由于重写规则,这不起作用。在我尝试了数百次之后,我在同一个地方得到了这些错误:

<p>The requested URL /javascript/helper.js was not found on this server.</p>

但这是正确的相对链接。

我的结构:

/var/www/project/
           -->application
           -->...
           -->public
              -->javascript
                 helper.js
                 <other JS Files>
             index.php
             .htaccess

当我搜索这个错误时,我发现了这些可能的原因:

  1. 错误或缺少 baseURL
  2. 未启用 Mod 重写
  3. 公开的 .htaccess 文件丢失或损坏
  4. 虚拟主机中缺少“允许覆盖 = 全部”
  5. 文件的相对路径中没有前导“/”斜杠

它们都不适合我的问题。

  1. 我没有更深的“baseURL”,所以我的默认路径是“”,直接在我的 /project/public 文件夹中定向虚拟主机
  2. Mod重写已启用,我可以浏览任何页面,控制器,动作
  3. .htaccess 是默认的并且存在
  4. 允许覆盖设置为全部,我的重写规则适用于项目的其余部分
  5. 我在开始时尝试不使用“/”。没有效果

我的布局有这个 JS 的包含方法: --> layout.phtml

$this->headScript()->appendFile('/javascript/jquery_1.6.2/jquery.js','text/javascript');
      $this->headScript()->appendFile('/javascript/jqueryui_1.8.16/jquery-ui.min.js','text/javascript');
    $this->headScript()->appendFile('/javascript/jquery.metadata.js','text/javascript');
    $this->headScript()->appendFile('/javascript/jquery.validate.js','text/javascript');
    $this->headScript()->appendFile('/javascript/jquery.fileupload.js','text/javascript');
    $this->headScript()->appendFile('/javascript/jquery.fileupload-ui.js','text/javascript');

    $this->headScript()->appendFile('/javascript/methods_de.js','text/javascript'); 
    $this->headScript()->appendFile('/javascript/helper.js','text/javascript');*/
    echo $this->headScript();

令人困惑的是,样式表包含工作。这是相同的技术

我包括他们

$this->headLink()->appendStylesheet('/css/layout.css');
echo $this->headLink();

我的.htaccess:

SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

我有几个在 debian lenny 上运行的 ZF 项目,它们运行起来没有任何问题。现在我设置了两个 debian 挤压,在两个系统上我都遇到了这些问题。

如果我将项目文件夹复制到 lenny 系统(相同的虚拟主机配置),它工作正常。

可能有人知道我该如何解决这个问题......

多谢

4

1 回答 1

0

通过重命名javascript文件夹解决。有关更多详细信息,请参阅我上面的评论

于 2012-11-06T19:19:33.367 回答