PHP下FCKeditor上传文件时自动目录和重命名及中文文件名解决方案 收藏
2009年11月27日


修改两个文件:

自动化目录:


1、FCKeditor\editor\filemanager\browser\default\connectors\php\config.php

$Config['UserFilesPath']='xxx'改为下

$time=time();
$Config['UserFilesPath'] = '/custom/image/upload/'.date('Y',$time).'/'. date('m',$time) .'/'.date('d',$time).'/';


重命名:
2、FCKeditor\editor\filemanager\browser\default\connectors\php\commands.php

// 在下列代码之后:
// Get the extension.
$sExtension = substr( $sFileName, (

strrpos($sFileName, '.') + 1 ) ) ;
$sExtension = strtolower( $sExtension )

;

//添加如下语句,则会让所有上传的文件名以“时间+随机数”来重命名。
//Rename filename
$sFileName=date("Ymd_His_").rand(100,200).".".$sExtension;

 

本文永久链接: http://www.zzxj.net/blog/fxs_2008/archive/2009/11/27/97.html

发表于 @ 2009年11月27日 |评论(loading... )|收藏

发表评论 姓  名: