web-dev-qa-db-ja.com

Symfony 2-Webデバッグツールバーの読み込み中にエラーが発生しました(404:見つかりません)

Symfony 2.2へのアップデート以降、Webデバッグツールバーはapp_dev.phpにロードされなくなりました。

次のエラーが発生します。

An error occurred while loading the web debug toolbar (404: Not Found).
Do you want to open the profiler?

Prod.logで、次のようになります。

request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /_profiler/84fb75cc3ffd5435474ebe4250e01fac2cdf49c1"" at /httpdocs/project/app/cache/prod/classes.php line 3597 [] []

request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET /_wdt/452d5b4aa2dd9388285fa1c286d5c54218029c71"" at /httpdocs/priject/app/cache/prod/classes.php line 3597 [] []

キャッシュを数回クリアしました:)

興味深いのは、/ app_dev.phpで、ページ上のすべてのリンクが/app_dev.phpにリンクしなくなったことです。

uRLを手動で変更し、app_dev.phpをURLに追加すると、プロファイル(/ _profiler/5fdc27cb82c4e9e426b3ab27377deb0b760fdca2)が含まれ、プロファイラーが正しく読み込まれます。

routing_dev.yml:

_assetic:
    resource: .
    type:     assetic

_wdt:
    resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
    prefix:   /_wdt

_profiler:
    resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
    prefix:   /_profiler

_configurator:
    resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml"
    prefix:   /_configurator

_main:
    resource: routing.yml

助けていただければ幸いです。

更新I:config_dev.yml

imports:
    - { resource: config.yml }

framework:
    router:   { resource: "%kernel.root_dir%/config/routing_dev.yml" }
    profiler: { only_exceptions: false }

web_profiler:
    toolbar: true
    intercept_redirects: false

monolog:
    handlers:
        main:
            type:  stream
            path:  %kernel.logs_dir%/%kernel.environment%.log
            level: debug
        firephp:
            type:  firephp
            level: info
        chromephp:
            type:  chromephp
            level: info

assetic:
    use_controller: true

更新II:AppKernel.php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new JMS\AopBundle\JMSAopBundle(),
            new JMS\DiExtraBundle\JMSDiExtraBundle($this),
            new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
            new myProject\MyBundle\myBundle(),
            new FOS\UserBundle\FOSUserBundle(),
            new myProject\MyBackendBundle\myBackendBundle(),
       );

        if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
        }

        return $bundles;
    }

    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
    }
}

アップデートIII:.htaccess

DirectoryIndex app.php

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app\.php(/(.*)|$) %{CONTEXT_PREFIX}/$2 [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule .? - [L]

    RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteRule .? %{ENV:BASE}app.php [L]
</IfModule>

<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        RedirectMatch 302 ^/$ /app.php/
    </IfModule>
</IfModule>

PDATE:エラーが見つかりました。テンプレートのレンダリングタグが間違っていました(古い)。 :(

ご協力ありがとうございました

13
Bol

私もこの問題を抱えていました。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>
11

Symfony 4 + Flexでは、symfony/Apache-packレシピをインストールする必要がありました

composer req Apache-pack
5
user6863579

新しいLinuxボックスにアプリケーションをインストールした後、この特定の問題が発生しました。 Apache2でmod_rewriteをアクティブ化するのを忘れていました

[Sudo] a2enmod rewrite
[Sudo] service Apache2 restart

それが役立つことを願っています!

3
Moonchild

このエラーのもう1つの原因は、書き換えモジュールのコメントを解除せずにApacheWebサーバーを更新することです。行うことによって学びます!

1
geoB

デバッグ目的でベンダーコードを変更すると、このエラーが発生しました。 (私はそれが正しい方法ではないことを知っていますが、とにかく..私は変更を行い、Webアプリケーションをテストし、ベンダーコードをロールバックするのを忘れました)。

それがあなたのケースであり、ベンダーコードに「違法な」変更を加えた場所を正確に覚えていない場合は、ベンダーディレクトリまたはそのコンポーネントを削除し、php composer.phar updateコマンドを実行して元のバージョンをプルできます。

1

私にとってこれは、app.phpではなくapp_dev.phpを呼び出すために(web dirから).htaccessを変更したときに発生しますが、.htaccessファイルのどこでも変更していません。変更後、app_dev.phpへのすべての外観エラーが消えました。

0
MilanG

あなたの書き換えルールがおそらくそれを引き起こしています。ほんの少し前に私は自分の書き直しをしていて、プロファイラーで同じ問題を抱えていました。

0
Teffi