我正在尝试使用Symfony v3开发应用程序。我已经使用Symfony提供的自动生成器创建了权限,并将configuration.yml单独放置。例如,赞助商实体是:
WebBundle\Entity\SponsorPage:
type: entity
table: null
repositoryClass: WebBundle\Repository\SponsorPageRepository
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
title:
type: string
length: '255'
titleOrganizers:
type: string
length: '255'
column: title_organizers
titleSponsors:
type: string
length: 255
column: title_sponsors
titleCollaborators:
type: string
length: 255
column: title_collaborators
lifecycleCallbacks: { }
Doctrine命令:app/console doctrine:mapping:info
和doctrine orm:validate-schema
在日志中显示一切正常。
所有结构都放在开发环境中,但是当我尝试通过浏览器访问时没有显示任何内容,但本地一切正常。
我已经阅读了每个帖子都有同样的问题,没有人适合我。日志错误显示为:
我将不胜感激任何帮助!
谢谢!
答案 0 :(得分:0)
好吧,我终于解决了自己的问题。这似乎是权限冲突。我在CentOS服务器的所有项目中使用chmod 775
解决了问题。