mambo中新增文章时,如果插入图片,设置上传路径的问题
2007年9月8日 19:42
标签: editors, fckeditor, mambo, path, PHP, 图片 and 路径
使用mambo系统时,如果直接在文章中上传图片,往往会上传到根目录下,可以修改如下配置文件
/mambots/editors/mambofck/FCKeditor/editor/filemanager/upload/php/config.php中的
$Config['UserFilesPath'] = "$mosConfig_live_site/images/stories/2007/";
$Config['UserFilesAbsolutePath'] = "$mosConfig_absolute_path/images/stories/2007/";
为你想要存放图片的默认路径
...