首页 >

织梦DedeCMS后台不支持上传bmp格式图片的搞定方式

就算是后台-系统-附件设置,里面添加了bmp,上传bmp格式图片系统还是会提示你”文件类型不正确!”
解决方法
1 | 后台-系统-附件设置,添加bmp
织梦DedeCMS后台不支持上传bmp格式图片的搞定方式织梦DedeCMS后台不支持上传bmp格式图片的搞定方式
2 | \include\dialog\select_images_post.php 找到
  1. $sparr = Array(“image/pjpeg”, “image/jpeg”, “image/gif”, “image/png”, “image/xpng”, “image/wbmp”);
改成
  1. $sparr = Array(“image/pjpeg”, “image/jpeg”, “image/gif”, “image/png”, “image/xpng”, “image/wbmp”, “image/bmp”);
3 | \include\helpers\upload.helper.php 找到
  1. $sparr = Array(‘image/pjpeg’, ‘image/jpeg’, ‘image/gif’, ‘image/png’, ‘image/xpng’, ‘image/wbmp’);
改成
  1. $sparr = Array(‘image/pjpeg’, ‘image/jpeg’, ‘image/gif’, ‘image/png’, ‘image/xpng’, ‘image/wbmp’, ‘image/bmp’);
4 | \include\dialog\select_images.php 找到
  1. (gif|png)
改成
  1. (gif|png|bmp)
完成

织梦DedeCMS后台不支持上传bmp格式图片的搞定方式
  • 织梦DedeCMS调用文章缩略图原图地址只能调用jpg格式修正教程
  • 织梦DedeCMS调用文章缩略图原图地址只能调用jpg格式修正教程 | 织梦DedeCMS调用文章缩略图原图地址只能调用jpg格式修正教程 ...

    织梦DedeCMS后台不支持上传bmp格式图片的搞定方式
  • 织梦DedeCMS后台自定义表单添加搜索功能
  • 织梦DedeCMS后台自定义表单添加搜索功能 | 织梦DedeCMS后台自定义表单添加搜索功能 ...

    织梦DedeCMS后台不支持上传bmp格式图片的搞定方式
  • 织梦DedeCMS二级域名附件相对路径修改绝对路径链接
  • 织梦DedeCMS二级域名附件相对路径修改绝对路径链接 | 织梦DedeCMS二级域名附件相对路径修改绝对路径链接 ...