Dedecms生成的文件夹是按天生成的,只要传了图片就会自动建立个年月日的文件,centos系统下,都是随便排序的,很难找到对应文件夹,如果要按顺序排列,其实解决方法很简单!
一、文件管理器:
修改 /dede/templets/file_manage_main.html
$dh = dir($inpath); $ty1=""; $ty2=""; $files = $dirs = array(); while(($file = $dh->read()) !== false)
改成
$dh = scandir($inpath); $ty1=""; $ty2=""; $files = $dirs = array(); foreach ($dh as $file)
二、模板文件:修改 /dede/templets/templets_default.htm
<?php
$dh = dir($templetdird);
while($filename=$dh->read())
{
if(!preg_match("#\.htm#", $filename)) continue;
$filetime = filemtime($templetdird.'/'.$filename);
$filetime = MyDate("Y-m-d H:i",$filetime);
$fileinfo = (isset($fileinfos[$filename]) ? $fileinfos[$filename] : '未知模板');
?>
改成
<?php
$files = scandir($templetdird);
foreach ($files as $filename)
{
if(!preg_match("#\.htm#", $filename)) continue;
$filetime = filemtime($templetdird.'/'.$filename);
$filetime = MyDate("Y-m-d H:i",$filetime);
$fileinfo = (isset($fileinfos[$filename]) ? $fileinfos[$filename] : '未知模板');
?>
三、缩略图:修改 /include/dialog/select_images.php
$dh = dir($inpath); $ty1=""; $ty2=""; while($file = $dh->read())
改成
$dh = scandir($inpath); $ty1=""; $ty2=""; foreach ($dh as $file)
ok 教程到这里就结束了!排序已经改变了!

云站友









评论前必须登录!
立即登录 注册