Symfony的3 - CKEditor的未正确安装在PROD(Symfony 3 - CKEd

2019-10-30 13:43发布

在我的网站,我已经安装了CKEditor的包。 它的工作PREPROD。 但是,通过切换到PROD,CKEditor的不工作了。 然而,它被安装,有人可以帮我吗?

我有 :

/web/ckeditor
/web/bundle/pages/ckeditor
/src/Site/PagesBundle/Resources/Public/ckeditor

但是,没有什么工作。 如果我尝试这样的:

PHP斌/控制台的CKEditor:安装

我有

在CKEditorInstaller.php线334:

无法从“下载CKEditor的ZIP压缩文件https://github.com/ckeditor/ckeditor-releases/archive/full/latest.zip ”。 (的file_get_contents( https://github.com/ckeditor/ckeditor-releases/archive/full/latest.zip ):未能开放源代码tream:连接超时)

Answer 1:

如果你把所有的文件和你正在使用FOS的CKEditor,请检查是否有下这段代码twig.form_themes

# Symfony 2/3: app/config/config.yml
# Symfony 4: config/packages/twig.yaml

twig:
    form_themes:
         - '@FOSCKEditor/Form/ckeditor_widget.html.twig'


文章来源: Symfony 3 - CKEditor not correctly installed in PROD