仿站咨询QQ:2587483189

手机微信同号:15850888840

织梦图片集从ZIP压缩包中解压图片BUG修复

 解决方法

打开 /dede/file_class.php 找到,大概在161行
 
else if(substr($filename, -strlen($fileexp))===$fileexp)
 
仿站改成
 
else if(preg_match("/\.(".$fileexp.")$/", $filename))
 
完成,重新选择压缩包提交就可以了
 
自动获取压缩包里图片的名称
如果想要让每个图片都自动获取压缩包里图片的名称的话,你可以这样做
 
打开 /dede/album_add.php 找到,大概在201行
 
$imgurls .= "{dede:img ddimg='$litpicname' text='' width='".$imginfos[0]."' height='".$imginfos[1]."'} $iurl {/dede:img}\r\n";
 
改成
 
$imginfo = gb2utf8(basename(substr($imgold, 0, strrpos($imgold, "."))));
$imgurls .= "{dede:img ddimg='$litpicname' text='$imginfo' width='".$imginfos[0]."' height='".$imginfos[1]."'} $iurl {/dede:img}\r\n";
 
 

  • 上一篇:dede织梦利用[field:arcurl/]无法获取文章路径的解决方法
  • 下一篇:DedeCMS织梦图集productimagelist标签调用其他字段
  • 来源:未知//所属分类: dede仿站 /更新时间:2022-01-04
    相关仿站教程