Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Symfony2。当我想使用应用程序/控制台程序时,我收到“限制访问”错误。
这是权限问题还是其他问题?
尝试将其运行为php app/console. 如果它有效,您需要chmod +x app/console使其可执行才能运行它而无需预先添加php.
php app/console
chmod +x app/console
php
好的,我发现了错误。几天前,我将一些其他文件(没有 Symfony2 实体文件)复制到 Entity 目录中,所以当我想运行 app/console 学说:架构:更新命令时出现受限错误。
谢谢