如何配置FCK编辑器图片上传

在php config文件中设置

打开editor/filemanager/connectors/php/config.php找到
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = 'http://localhost/file' ;//上传后服务器上的路径
$Config['UserFilesAbsolutePath'] = 'E:\\wamp\\www\\file' ;//上传路径,和上面的路径应该指向同一地址

调用FCK

<?php   
include("fckeditor/fckeditor.php") ; // 用于载入FCKeditor类文件   
$oFCKeditor = new FCKeditor('FCKeditor1') ; // 创建FCKeditor实例     
$oFCKeditor->BasePath = './fckeditor/'; // 设置FCKeditor目录地址     
$FCKeditor->Width='100%'; //设置显示宽度   
$FCKeditor->Height='300px'; //设置显示高度的高度    
$oFCKeditor->Create() ; // 创建编辑器     
?>

你可能感兴趣的:(PHP,fckeditor,服务器,File,include)