Php Symfony 2生产应用程序找不到任何细枝模板

Php Symfony 2生产应用程序找不到任何细枝模板,php,symfony,twig,twig-extension,Php,Symfony,Twig,Twig Extension,我制作的Symfony 2应用程序在本地主机服务器的生产和开发模式下运行良好,但当我将其实时推送到ftp时,出现了一个问题。我检查了日志,看起来Twig在查找模板方面有问题 有来自我的服务器的日志: [2015-05-18 11:10:21] request.INFO: Matched route "homepage" (parameters: "_controller": "AppBundle\Controller\DefaultController::indexAction", "_rout

我制作的Symfony 2应用程序在本地主机服务器的生产和开发模式下运行良好,但当我将其实时推送到ftp时,出现了一个问题。我检查了日志,看起来Twig在查找模板方面有问题

有来自我的服务器的日志:

[2015-05-18 11:10:21] request.INFO: Matched route "homepage" (parameters: "_controller": "AppBundle\Controller\DefaultController::indexAction", "_route": "homepage") [] []
[2015-05-18 11:10:21] security.INFO: Populated SecurityContext with an anonymous Token [] []
[2015-05-18 11:10:21] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "Unable to find template "AppBundle:Home:index.html.twig"." at /vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php line 128 {"exception":"[object] (InvalidArgumentException(code: 0): Unable to find template \"AppBundle:Home:index.html.twig\". at /vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php:128, Twig_Error_Loader(code: 0): Unable to find template \"AppBundle:Home:index.html.twig\". at /vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php:91, InvalidArgumentException(code: 0): Unable to find template \"AppBundle:Home:index.html.twig\" : \"Unable to find file \"@AppBundle/Resources/views/Home/index.html.twig\".\". at /vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php:81, InvalidArgumentException(code: 0): Unable to find file \"@AppBundle/Resources/views/Home/index.html.twig\". at /app/bootstrap.php.cache:2456)"} []
[2015-05-18 11:10:21] security.DEBUG: Write SecurityContext in the session [] []
有人知道有什么问题吗

@编辑我也把我的config.yml

imports:
                - { resource: parameters.yml }
                - { resource: security.yml }
                - { resource: services.yml }
                - { resource: "@AppBundle/Resources/Config/services.yml" }

            framework:
                #esi:             ~
                #translator:      { fallback: "%locale%" }
                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:        [ ]
                #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:
                    #   1. add the path in parameters.yml
                    #     e.g. database_path: "%kernel.root_dir%/data/data.db3"
                    #   2. Uncomment database_path in parameters.yml.dist
                    #   3. Uncomment next line:
                    #     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 }

            #for user
            fos_user:
                db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
                firewall_name: main
                user_class: AppBundle\Entity\User
                registration:
                        form:
                            type: new_user_registration

            #vich file uploader
            vich_uploader:
                db_driver: orm

                mappings:
                    download_file:
                        uri_prefix:         /files/download
                        upload_destination: %kernel.root_dir%/../web/files/download

                    offer_file:
                        uri_prefix:         /files/offer
                        upload_destination: %kernel.root_dir%/../web/files/offer

                        inject_on_load:     false
                        delete_on_update:   false
                        delete_on_remove:   true
控制器:
            namespace AppBundle\Controller;

            use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
            use Symfony\Bundle\FrameworkBundle\Controller\Controller;

            class DefaultController extends Controller
            {
                /**
                 * @Route("/", name="homepage")
                 */
                public function indexAction()
                {
                    return $this->render('AppBundle:Home:index.html.twig');
                }

            }
@编辑2
我不知道这有什么关系,但我在我的项目中使用了这个模板,我找到了解决方案。当我从该存储库复制文件时,我没有注意到“视图”文件夹以大写开头。当我把它改为“视图”时,一切都正常


感谢所有尝试帮助的人:)

关于清除缓存呢?我多次清除缓存,但它没有帮助可能尝试使用“php应用程序/控制台资产:安装--env=prod”和“php应用程序/控制台资产:转储--env=prod”也不适用于FOSUserBundle中的meI检查登录页,工作正常,但当我覆盖app/Resources/FOSUserBundle/views中的登录小枝模板时,也找不到它。有人有什么想法吗?这就是解决一天斗争问题的方法。谢谢