我相信我需要使用CKEditor中的image
按钮为我的应用程序提供一些文件浏览器。
我已经为其他东西安装了VichUploaderBundle。我知道FMElfinderBundle与CKEditor完美搭配,但是如果我有VichUploader,也许我不需要它。我尝试浏览服务器文件夹以搜索图像,但一直出现此错误:
No route found for "GET
/home/bartosz/andar/web/uploads/images/contentPhotos" (from
"http://localhost:8000/admin/?
这是我的config.yml文件的一部分:
vich_uploader:
db_driver: orm
mappings:
article_images:
uri_prefix: '%app.path.article_images%'
upload_destination: '%kernel.root_dir%/../web%app.path.article_images%'
content_photos:
uri_prefix: '%app.path.content_photos%'
upload_destination: '%kernel.root_dir%/../web%app.path.content_photos%'
ivory_ck_editor:
input_sync: true
default_config: base_config
configs:
base_config:
toolbar:
full
simple_config:
filebrowserBrowseUrl: '%kernel.root_dir%/../web%app.path.content_photos%'
toolbar:
- { name: "styles", items: ['Source','-','Paste', 'PasteText', 'PasteFromWord', 'Undo', 'Redo', '-''Bold', 'Italic', 'Underline', '-','NumberedList', 'BulletedList', 'Blockquote', '-','JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-','Image', 'Link', 'Table', 'HorizontalRule', '-','Maximize']}