首页 > 开发 > 综合 > 正文

配置网页编辑器fckeditor 实现图片的上传

2024-07-21 02:53:37
字体:
来源:转载
供稿:网友
配置fckeditor 实现图片的上传
 
1.应该修改editor/filemanager/upload/php/editor/filemanager/browser/default/connectors/php/config.php 中的$Config['Enabled'] = true ; 

2.应该修改editor/filemanager/upload/php/editor/filemanager/upload/php/config.php 中的$Config['Enabled'] = true ; 

3.应该修改editor/filemanager/upload/php下util.php里面的getrootpath函数 
复制代码代码如下:


function GetRootPath() { $sRealPath = realpath( '.' ) ; $sRealPath=str_replace('//','/',$sRealPath); $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; return $sRealPath.'/'; } 

还有editor/filemanager/browser/default/connectors/php下io.php里面的getrootpath函数 
复制代码代码如下:


function GetRootPath() { $sRealPath = realpath( '.' ) ; $sRealPath=str_replace('//','/',$sRealPath); $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; $sRealPath = substr( $sRealPath, 0, strrpos( $sRealPath, '/' ) ) ; return $sRealPath.'/'; } 

然后修改editor/filemanager/browser/default/connectors/php里面config.php文件的$Config['UserFilesPath']变量以及editor/filemanager/upload/php下config.php里面的$Config['UserFilesPath']变量就行了。不过图片在编辑器里面不能看见,但是显示成内容的时候没有问题


注:相关教程知识阅读请移步到编辑器频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表