6

SonataMediaBundle 曾经可以正常工作。由于我安装并配置了 SonataPageBundle,它不再工作了.. 起初,我有一个500 Internal Server Error作为响应(我创建了默认站点、默认页面和默认快照),其余页面运行良好!然后我安装并配置了 SonataFormatterBundle,然后我不知道为什么当我尝试上传文件或 youtube 链接时出现此错误:

The filter "number_format_decimal" does not exist in SonataMediaBundle:MediaAdmin:edit.html.twig at line 54
500 Internal Server Error - Twig_Error_Syntax

SonataIntlBundleAppKernel.php.

谢谢你。

4

1 回答 1

17

将此行添加到您的composer.json

    "sonata-project/intl-bundle": "2.2.x-dev",

然后通过此命令更新作曲家

    composer update "sonata-project/intl-bundle"

之后将此行添加到AppKernel.php

    new Sonata\IntlBundle\SonataIntlBundle(),

希望这能解决您的问题。

于 2014-09-20T13:00:31.347 回答