我安装了symfony标准版。在对parameters.yml进行了一些努力之后...取得了进展... database_driver设置为pdo_mysqln并继续运行,但是在不同的php文件中出现了6次相同错误的错误。错误是:

与后端通信时发生意外错误:执行'SELECT 1 FROM phpcr_workspaces WHERE name = ?' with params ["default"]:时发生异常

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sf_sandbox.phpcr_workspaces' doesn't exist


有任何想法吗?

最佳答案

您必须使用当前架构信息更新数据库,其中包括在数据库中创建表:

# show the SQL commands to be applied (if you want to execute them yourself)
app/console doctrine:schema:update --force --dump-sql

# have Symfony apply the SQL commands
app/console doctrine:schema:update --force --complete

关于php - SQLSTATE [42S02]:找不到基表或 View :1146表'sf_sandbox.phpcr_workspaces'不存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33608582/

10-10 23:05