如何将FCKeditor图片上传服务的基本URL设置为域名
我有 FCKEditor 用于将图像上传到时事通讯,但编辑器中的图像是用相对路径放置的。
/uploads/media/1.jpg
如何强制使用。
http://www.example.org/uploads/media/1.jpg
在编辑器中创建 HTML 内容时
I have FCKEditor for uploading images to newsletter, but the images in the editor are placed with relative path.
/uploads/media/1.jpg
How can I enforce to use
http://www.example.org/uploads/media/1.jpg
when creating the HTML content inside the editor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“fck/editor/filemanager/connectors/php/config.php”中
设置此参数:
$Config['UserFilesPath'] =“http://www.example.org/”
in "fck/editor/filemanager/connectors/php/config.php"
set this param :
$Config['UserFilesPath'] = "http://www.example.org/"