修改两个文件:
自动化目录:
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;