2017-08-31 52 views
1

我的SF3应用程序在开发内置的PHP服务器中工作得很好。但是,有些资产在进入生产Apache服务器时给我一个错误:图像显示404错误,Bundle触发505代码。这里的铬控制台的两个屏幕,你可以看到错误:Symfony3 - 资产在生产中无法正常工作

Dev

Prod

我一直想很多事情(检查Apache的conf文件,清空缓存,安装:资产即使你使用了命令,我只是使用经典的Twig语法,而没有使用Assetic等等),并且徒劳地浏览了互联网上的大量主题。

这是我的config.yml文件,以防万一:

imports: 
 
    - { resource: parameters.yml } 
 
    - { resource: security.yml } 
 
    - { resource: services.yml } 
 
    - { resource: "@ABundle/Resources/config/services.yml" } 
 
    - { resource: "@AnotherBundle/Resources/config/services.yml" } 
 

 
# Put parameters here that don't need to change on each machine where the app is deployed 
 
# http://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration 
 
parameters: 
 
    locale: en 
 

 
framework: 
 
    #esi:    ~ 
 
    #translator:  { fallbacks: ["%locale%"] } 
 
    secret:   "%secret%" 
 
    router: 
 
     resource: "%kernel.root_dir%/config/routing.yml" 
 
     strict_requirements: ~ 
 
    form:   ~ 
 
    csrf_protection: ~ 
 
    validation:  { enable_annotations: true } 
 
    #serializer:  { enable_annotations: true } 
 
    templating: 
 
     engines: ['twig'] 
 
    default_locale: "%locale%" 
 
    trusted_hosts: ~ 
 
    trusted_proxies: ~ 
 
    session: 
 
     # http://symfony.com/doc/current/reference/configuration/framework.html#handler-id 
 
     handler_id: session.handler.native_file 
 
     save_path: "%kernel.root_dir%/../var/sessions/%kernel.environment%" 
 
     # save_path: /var/lib/php/sessions 
 
    fragments:  ~ 
 
    http_method_override: true 
 
    assets: ~ 
 
    php_errors: 
 
     log: true 
 

 
# Twig Configuration 
 
twig: 
 
    debug:   "%kernel.debug%" 
 
    strict_variables: "%kernel.debug%" 
 
    paths: 
 
     "%kernel.root_dir%/../app/Resources/views/modules": modules 
 

 
# Doctrine Configuration 
 
doctrine: 
 
    dbal: 
 
     driver: pdo_mysql 
 
     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: 
 
     # 1. add the path in parameters.yml 
 
     #  e.g. database_path: "%kernel.root_dir%/../var/data/data.sqlite" 
 
     # 2. Uncomment database_path in parameters.yml.dist 
 
     # 3. Uncomment next line: 
 
     #path:  "%database_path%" 
 

 
    orm: 
 
     auto_generate_proxy_classes: "%kernel.debug%" 
 
     naming_strategy: doctrine.orm.naming_strategy.underscore 
 
     auto_mapping: true 
 

 
# Swiftmailer Configuration 
 
swiftmailer: 
 
    transport: "%mailer_transport%" 
 
    host:  "%mailer_host%" 
 
    username: "%mailer_user%" 
 
    password: "%mailer_password%" 
 
    spool:  { type: memory }

我真的卡在这一块,所以预先感谢您的家伙。

回答

0

你试过了吗:php bin/console assetic:dump --env=prod --no-debug

另外,您的资产应在src/YourBundle/Resources/public目录中。然后当你安装他们php bin/console assets:install --symlink他们应该被复制或符号链接到web/bundles/your目录

+0

因此到控制台, 此命令不会SF3下存在: [Symfony的\元器件\控制台\异常\ CommandNotFoundException] 命令“assetic”没有定义。 你的意思是? 资产:安装 – Pigbug

+0

这可能是因为您没有安装Assetic。 http://symfony.com/doc/current/assetic/asset_management.html –

+0

我安装了Assetic并运行命令,但这并没有解决问题。尽管谢谢你的回答! 我通常将资源放在/ web文件夹中,正如文档所建议的(“将资源存储在web /目录中”:http://symfony.com/doc/current/best_practices/web-assets.html) 。这是一个错误吗? – Pigbug

0

所以问题是,我的资产是在网络文件夹,而不是资源。然后资产:转储命令完美地工作。 非常感谢

+0

我很高兴! –

相关问题