Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/vim/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ckeditor Bolt cms编辑器图像上载_Ckeditor_Bolt Cms - Fatal编程技术网

Ckeditor Bolt cms编辑器图像上载

Ckeditor Bolt cms编辑器图像上载,ckeditor,bolt-cms,Ckeditor,Bolt Cms,我正在尝试从ckeditor上传图像 config中的选项仅允许从堆栈中添加图像 在文档中,我没有找到任何与上传图像相关的内容。有办法做到这一点吗?在app/config/config.yml文件中,您可以找到以下选项集: wysiwyg: images: false # Allow users to insert images in the content. anchor: false # Adds a button to creat

我正在尝试从ckeditor上传图像

config中的选项仅允许从堆栈中添加图像

在文档中,我没有找到任何与上传图像相关的内容。有办法做到这一点吗?

在app/config/config.yml文件中,您可以找到以下选项集:

wysiwyg:
    images: false            # Allow users to insert images in the content.
    anchor: false            # Adds a button to create internal anchors to link to.
    tables: false            # Adds a button to insert and modify tables in the content.
    fontcolor: false         # Allow users to mess around with font coloring.
    align: false             # Adds buttons for 'align left', 'align right', etc.
    subsuper: false          # Adds buttons for subscript and superscript, using `<sub>` and `<sup>`.
    embed: false             # Allows the user to insert embedded video's from Youtube, Vimeo, etc.
    underline: false         # Adds a button to underline text, using the `<u>`-tag.
    ruler: false             # Adds a button to add a horizontal ruler, using the `<hr>`-tag.
    strike: false            # Adds a button to add stikethrough, using the `<s>`-tag.
    blockquote: false        # Allows the user to insert code snippets using `<pre><code>`-tags.
    codesnippet: false       # Allows the user to insert blockquotes using the `<blockquote>`-tag.
    specialchar: false       # Adds a button to insert special chars like '€' or '™'.

您只需要设置images:true,这将告诉CKeditor启用图像插件。

这将启用从CKeditor上的堆栈加载图像。我希望能够上传图像,而不仅仅是从堆栈中选择它们。堆栈或文件/目录。如果你想上传一组图像,可以通过文件管理->上传文件来管理。任何cms都可以在编辑器上上传图像。我觉得在其他页面上传图片,然后再回来选择图片是不合适的。