我正在使用一个名为justboil.com的图片上传器插件,用于tinymce编辑器。
它很棒,并上传图像以显示它们,但我希望它能够将完整的网址添加到图像的路径中,如:
* http://www.domain.com/upload_img/img1.jpg *
而不是
* / upload_img / img1.jpg *
这是插件的配置代码
| -------------------------------------------------------------------
|
| Path to upload target folder, relative to domain name. NO TRAILING SLASH!
| Example: if an image is acessed via http://www.example.com/images/somefolder/image.jpg, you should specify here:
|
| $config['img_path'] = '/images/somefolder';
|
| -------------------------------------------------------------------*/
$config['img_path'] = '/upload_img'; // Relative to domain name
$config['upload_path'] = $_SERVER['DOCUMENT_ROOT'] . $config['img_path']; // Physical path. [Usually works fine like this]
我尝试将$_SERVER['DOCUMENT_ROOT']
更改为完整的域名但如果我这样做则不会上传图片
任何想法?
答案 0 :(得分:8)
在您的tinymce init中,您可以设置以下标记:
relative_urls: false,
remove_script_host: false
这将为绝对网址启用TinyMCE编辑器中添加的所有项目的完整地址。