1

FOS バンドルを Debian サーバーにインストールしようとしています。ベンダー スクリプトを使用すると、次のエラーが発生します。

[Symfony\Component\Config\Exception\FileLoaderLoadException]
Cannot import resource "/var/www/Symfony/app/config/parameters.ini" from "/
var/www/Symfony/app/config/config.yml".

何がこれを引き起こしているのでしょうか?

4

1 に答える 1

1

Hope OP already solved this problem from his comment. But I give explanation for future googlers.

This error is due to invalid yml file content. Check your parameters.ini, You can validate YML file using online tool.

I got this problem because wrong usage of yml in symblog tutorial. I changed mailer_transport="smtp" into mailer_transport: "smtp" to solve my issue.

于 2012-12-12T10:45:48.840 に答える