14

開こうとすると、このエラーメッセージが表示されます

/app_dev.php

An error occurred while loading the web debug toolbar (404: Not Found).

Do you want to open the profiler?

[OK]をクリックすると、次のエラーが発生します。

app_dev.php/_profiler/5053258a822e1

404 Not found

私はnginxを使用しています

ご助力ありがとうございます。

編集:エラーログは次のとおりです。

[error] 18369#0: *9 open() "/var/www/Symfony/web/app_dev.php/_wdt/5056f875afc98" failed (20: Not a directory), client: 127.0.0.1, server: symfony, request: "GET /app_dev.php/_wdt/5056f875afc98 HTTP/1.1", host: "symfony", referrer: "http://symfony/app_dev.php"
[error] 18369#0: *9 open() "/var/www/Symfony/web/404" failed (2: No such file or directory), client: 127.0.0.1, server: symfony, request: "GET /app_dev.php/_wdt/5056f875afc98 HTTP/1.1", host: "symfony", referrer: "http://symfony/app_dev.php"

編集2:

app_dev.phpにアクセスしようとすると、ページは開きますが、ツールバーは表示されません。app_dev.php/を使用しようとすると、

**Oops! An Error Occurred
The server returned a "404 Not Found".
Something is broken. Please e-mail us at [email] and let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused. **

エラー。

4

7 に答える 7

11

これはあなたが尋ねたものではないことはわかっていますが、@ yvoyerが提案したように、この問題を検索する将来の人々に役立つ可能性があります。私の問題は末尾のスラッシュでもあり、サーバーはnginxとfpmを使用し、nginxでは//euqal/を使用しません。 、それで私は私の仮想ホストconfで少し修正をしなければならなかった、そしてそれはその後うまくいった。必要な人のためにconfを貼り付けるか、より良いものを提案します。

    location / {
            try_files $uri @pass_to_symfony;
    }

    location ~ /app_dev.php/ {
            try_files $uri @pass_to_symfony_dev;
    }

    location @pass_to_symfony{
            rewrite ^ /app.php?$request_uri last;
    }

    location @pass_to_symfony_dev{
            rewrite ^ /app_dev.php?$request_uri last;
    }

    location ~ ^/app(_dev)?\.php($|/) {
            include fastcgi_params;
            fastcgi_pass   unix:/var/run/php5-fpm.sock; # replace with your sock path
    }
于 2013-03-08T16:24:52.723 に答える
3

同じエラーが発生しましたが、入力したときにメッセージが出力されapp_dev.php/たが、要求したときには出力されなかったことがわかりましたapp_dev.php(末尾のスラッシュに注意してください/)。

私はそれがルーターと関係があると思います、しかしそれはただ知識に基づいた推測です

于 2012-11-30T19:02:58.560 に答える
1

私のエラーは(symfony 3.1を使用した)Nginx構成に関連しており、SymfonyからNginxの推奨構成を編集しました。

http://symfony.com/doc/current/setup/web_server_configuration.html

だから、多分それはシンボリックリンクのせいでした、私にはわかりません。

小さな部分をNginxDefaultconfigにコピーし、すべての.phpに一致するように編集しました。

##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

# Default server configuration
#
server {
    listen 80 default_server;
    listen [::]:80 default_server;

    # SSL configuration
    #
    # listen 443 ssl default_server;
    # listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don't use them in a production server!
    #
    # include snippets/snakeoil.conf;

    root /var/www/html;

    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html;

    server_name _;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }


    # Symfony
    location ~ \.php(/|$) {
            fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_split_path_info ^(.+\.php)(/.*)$;
        include fastcgi_params;
        # When you are using symlinks to link the document root to the
        # current version of your application, you should pass the real
        # application path instead of the path to the symlink to PHP
        # FPM.
        # Otherwise, PHP's OPcache may not properly detect changes to
        # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126
        # for more information).
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        fastcgi_param DOCUMENT_ROOT $realpath_root;
    }


    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #   include snippets/fastcgi-php.conf;
    #
    #   # With php7.0-cgi alone:
    #   fastcgi_pass 127.0.0.1:9000;
    #   # With php7.0-fpm:
    #   fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #   deny all;
    #}

}


# Virtual Host configuration for example.com
#
# You can move that to a different file under sites-available/ and symlink that
# to sites-enabled/ to enable it.
#
#server {
#   listen 80;
#   listen [::]:80;
#
#   server_name example.com;
#
#   root /var/www/example.com;
#   index index.html;
#
#   location / {
#       try_files $uri $uri/ =404;
#   }
#}

実稼働サーバーについては、Symfonyの推奨事項に固執することをお勧めします。

于 2016-11-20T05:01:34.927 に答える
0

Symfony2ページで開発者モードでWebデバッグツールバーを表示するには、有効なHTMLが必要です。

于 2012-09-14T12:51:28.957 に答える
-1

私は解決策を見つけました(多かれ少なかれ)。私は別の既存のSymfonyプロジェクトを取りましたが、今ではすべてが正常に機能しています。私の場合、なぜSymfony標準リリースが機能しないのか本当にわかりません... somebadyが空のsymfonyプロジェクトを必要とする場合は、アーカイブをアップロードできます。

編集:これが動作中のSymfony 2.0のテンプレートです:http ://www.megafileupload.com/en/file/372986/Symfony-tpl-zip.html

于 2012-09-17T14:21:57.003 に答える
-1

それは私の開発環境で起こったので、vhost構成ファイルのディレクティブDirectoryIndexにコメントします。これで、次のようにアプリにアクセスできます。http://127.0.0.1/app_dev.php プロファイラーに関するエラーはもうありません。私はSymfony2.3.​​xを使用しています。

于 2014-06-01T20:20:39.677 に答える
-3

あなたの.htaccessに注意を払ってみてください、私もこの問題を抱えていて、私は私のものを修正しました。

    <IfModule mod_rewrite.c>
    RewriteEngine On
        RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app_dev.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L]    ##### this is the part that you should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule .? - [L]
    RewriteRule .? %{ENV:BASE}/app_dev.php [L]        ##### this is the part that you should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
    </IfModule>

    <IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        # When mod_rewrite is not available, we instruct a temporary redirect of
        # the startpage to the front controller explicitly so that the website
        # and the generated links can still be used.
        RedirectMatch 302 ^/$ /app.php/
        # RedirectTemp cannot be used instead
    </IfModule>
    </IfModule>
于 2013-06-04T10:41:02.903 に答える