web-dev-qa-db-ja.com

Webプロファイラーが開発に表示されない

Symfony2(const version = "2.5.10")を使用し、xamppをPHPバージョン5.5.19で使用しています。

開発環境でプロファイラーが表示されないという問題が発生しました。何が問題なのですか?

config.yml

imports:
    - { resource: parameters.yml }
    - { resource: security.yml }

framework:
    #esi:             ~
    #translator:      { fallback: "%locale%" }
    translator: ~
    secret:          "%secret%"
    router:
        resource: "%kernel.root_dir%/config/routing.yml"
        strict_requirements: ~
    form:            ~
    csrf_protection: ~
    validation:      { enable_annotations: true }
    templating:
        engines: ['twig']
        #assets_version: SomeVersionScheme
    default_locale:  "%locale%"
    trusted_hosts:   ~
    trusted_proxies: ~
    session:
        # handler_id set to null will use default session handler from php.ini
        handler_id:  ~
    fragments:       ~
    http_method_override: true

# Twig Configuration
twig:
    debug:            "%kernel.debug%"
    strict_variables: "%kernel.debug%"

# Assetic Configuration
assetic:
    debug:          "%kernel.debug%"
    use_controller: false
    bundles:        ['MatrixEdiBundle', 'FOSUserBundle']
    #Java: /usr/bin/Java
    filters:
        cssrewrite: ~
        #closure:
        #    jar: "%kernel.root_dir%/Resources/Java/compiler.jar"
        #yui_css:
        #    jar: "%kernel.root_dir%/Resources/Java/yuicompressor-2.4.7.jar"

# Doctrine Configuration
doctrine:
    dbal:
        driver:   "%database_driver%"
        Host:     "%database_Host%"
        port:     "%database_port%"
        dbname:   "%database_name%"
        user:     "%database_user%"
        password: "%database_password%"
        charset:  UTF8
        # if using pdo_sqlite as your database driver, add the path in parameters.yml
        # e.g. database_path: "%kernel.root_dir%/data/data.db3"
        # path:     "%database_path%"

    orm:
        auto_generate_proxy_classes: "%kernel.debug%"
        auto_mapping: true

# Swiftmailer Configuration
swiftmailer:
    transport: "%mailer_transport%"
    Host:      "%mailer_Host%"
    username:  "%mailer_user%"
    password:  "%mailer_password%"
    spool:     { type: memory }
fos_user:
    db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
    firewall_name: main
    user_class: Matrix\MatrixUserBundle\Entity\User

config_dev.yml

imports:
    - { resource: config.yml }

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

web_profiler:
    toolbar: %debug_toolbar%
    intercept_redirects: %debug_redirects%

monolog:
    handlers:
        main:
            type:   stream
            path:   "%kernel.logs_dir%/%kernel.environment%.log"
            level:  debug
        console:
            type:   console
            bubble: false
        # uncomment to get logging in your browser
        # you may have to allow bigger header sizes in your Web server configuration
        #firephp:
        #    type:   firephp
        #    level:  info
        #chromephp:
        #    type:   chromephp
        #    level:  info

assetic:
    use_controller: %use_assetic_controller%

swiftmailer:
    #delivery_address: [email protected]
    disable_delivery: false 
10
aiai

プロファイラーツールバーには<body> ... </body>が必要です。 twigファイルに含まれていないと思います。

プロファイラー

# app/config/config_dev.yml
web_profiler:
    toolbar: true
    intercept_redirects: false

例twigファイル。

{% extends '::base.html.twig' %}app/Resources/views/base.html.twigを拡張し、デフォルトの<body>...</body>をカスタムtwigファイルに挿入します。

{% extends '::base.html.twig' %}

{% block body %}
   Hello!
{% endblock %}
31
BentCoder

アクションがhtmlコード(json APIなど)を返さず、プロファイラーを使用する場合:

迅速で汚い解決策:

return new Response("<html><body>Debug data</body></html>");

さらに迅速で汚い解決策-コントローラーで非Responseタイプを返すと、プロファイラーが有効な応答で例外が発生します。

return 1;

アプリケーションがSymfony>=2.4で実行されている場合は、デバッグトークンを含むX-Debug-Tokenとプロファイラーページへのリンクを含むX-Debug-Token-Linkヘッダーを使用することもできます。この方法を使用する場合Chrome拡張機能 Symfony2プロファイラーショートカット ユーザーエクスペリエンスが向上します。

3
grexlort

config.ymlまたはparameters.ymlファイルで有効にしましたか?開発モードになっていますか? app_dev.phpを呼び出しますか?

また、ブラウザの右下にある整頓された正方形に縮小されることもあります。

役立つかもしれないいくつかのアイデア

1
andylondon

上記の回答が示しているように、Webプロファイラーはタグなどのある単純なtwigファイルには表示されません。

{% extends 'base.html.twig' %}

{% block body %}
    Hello {{name}}.
{% endblock %}

はWebプロファイラーを示していますが、次のような単純なものです。

 <body>
    Hello {{name}}.
 </body>

動作しますが、Webプロファイラーは表示されません。

1
Daniel

私も同じ問題を抱えていました。

問題は私のルート定義にありました。私はこのようなものを持っています:

load_home:
    path: /{page}
    defaults: {_controller: ExpatsBundle:Pages/Home:index, _format: html|json, page: 1}
    methods: GET
    requirements:
        page: \d+

したがって、_format:html | jsonを_format:htmlに変更することで問題は解決しました。

0
rvaliev