php中配置fckeditor实现图片上传

发布时间:2020-03-27编辑:脚本学堂
php中配置fckeditor实现图片上传

配置fckeditor实现图片上传
1.应该修改editorfilemanageruploadphpeditorfilemanagerbrowserdefaultconnectorsphpconfig.php 中的$Config['Enabled'] = true ;

2.应该修改editorfilemanageruploadphpeditorfilemanageruploadphpconfig.php 中的$Config['Enabled'] = true ;

3.应该修改editorfilemanageruploadphp下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.'/'; }

还有editorfilemanagerbrowserdefaultconnectorsphp下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.'/'; }

然后修改editorfilemanagerbrowserdefaultconnectorsphp里面config.php文件的$Config['UserFilesPath']变量以及editorfilemanageruploadphp下config.php里面的$Config['UserFilesPath']变量就行了。