我有一个问题是使用插件jbimages配置在tinymce 4.0中上传图像的路径。
进入我有插件的文件config.php
$config['img_path'] = 'test/admin/uploads'; // Relative to domain name
$config['upload_path'] = $_SERVER['DOCUMENT_ROOT'] . $config['img_path']; // Physical path. [Usually works fine like this]
不起作用。 使用$ _SERVER检查路径[' DOCUMENT_ROOT']我有
/web/htdocs/www.example.com/home/
所以完整的路径是:
/web/htdocs/www.example.com/home/test/admin/uploads
我想要的是
http://www.example.com/test/admin/uploads
如果我尝试将其设置为$ config [' img_path'],因为绝对路径也不起作用
$config['img_path'] = 'http://www.example.com/test/admin/uploads'; // Relative to domain name
$config['upload_path'] = $config['img_path'];
我该怎么办? 感谢
答案 0 :(得分:0)
在图像路径中尝试开始斜杠
$config['img_path'] = '/test/admin/uploads'; // Relative to domain name