UCHome插件
语言编码 UTF-8
版权所属 -
支持网站 -
插件名称 UChome - 添加日志中上传附件功能(zip,rar格式)
插件作者 WISDOM_WEI
适用版本 UCenter_Home_2.0_SC_UTF8
具体实现步骤:
1、修改UCHOME目录如下文件
打开文件source/script_upload.js
找到:- var extensions = 'jpg,jpeg,gif,png';
复制代码 修改为:- var extensions = 'jpg,jpeg,gif,png,rar,zip';
复制代码 找到:- attachexts[id] = inArray(ext, ['gif', 'jpg', 'jpeg', 'png']) ? 2 : 1;
复制代码 修改为:- attachexts[id] = inArray(ext, ['gif', 'jpg', 'jpeg', 'png', 'rar', 'zip']) ? 2 : 1;
复制代码 2、打开文件source/function_cp.php
找到:- //允许上传类型
- $allowpictype = array('jpg','jpeg','gif','png');
复制代码 修改为:- //允许上传类型
- $allowpictype = array('jpg','jpeg','gif','png');
- $allowothertype=array('rar','zip');
复制代码 找到:- //判断后缀
- $fileext = fileext($FILE['name']);
- if(!in_array($fileext, $allowpictype)) {
- return cplang('only_allows_upload_file_types');
- }
复制代码 修改为:- //判断后缀
- $fileext = fileext($FILE['name']);
- if(!(in_array($fileext, $allowpictype)||in_array($fileext, $allowothertype))) {
- return cplang('only_allows_upload_file_types');
- }
复制代码 找到:- //检查是否图片
- if(function_exists('getimagesize')) {
- $tmp_imagesize = @getimagesize($new_name);
- list($tmp_width, $tmp_height, $tmp_type) = (array)$tmp_imagesize;
- $tmp_size = $tmp_width * $tmp_height;
- if($tmp_size > 16777216 || $tmp_size < 4 || empty($tmp_type) || strpos($tmp_imagesize['mime'], 'flash') > 0) {
- @unlink($new_name);
- return cplang('only_allows_upload_file_types');
- }
- }
复制代码 修改为:- //检查是否图片
- if(function_exists('getimagesize')) {
- $fileext = fileext($new_name);
- if(in_array($fileext, $allowpictype)) {
- $tmp_imagesize = @getimagesize($new_name);
- list($tmp_width, $tmp_height, $tmp_type) = (array)$tmp_imagesize;
- $tmp_size = $tmp_width * $tmp_height;
- if($tmp_size > 16777216 || $tmp_size < 4 || empty($tmp_type) || strpos($tmp_imagesize['mime'], 'flash') > 0) {
- @unlink($new_name);
- return cplang('only_allows_upload_file_types');
- }
- }
- }
复制代码 3、打开source/function_blog.php
找到:- //未插入文章
- foreach ($uploads as $value) {
- $picurl = pic_get($value['filepath'], $value['thumb'], $value['remote'], 0);
- $message .= "<div class="uchome-message-pic"><img src="$picurl"><p>$value[title]</p></div>";
- }
复制代码 修改为:- //未插入文章
- foreach ($uploads as $value) {
- $picurl = pic_get($value['filepath'], $value['thumb'], $value['remote'], 0);
- $fileext = fileext($picurl);
- if(in_array($fileext, array('jpg','jpeg','gif','png'))){
- $message .= "<div class="uchome-message-pic"><img src="$picurl"><p>$value[title]</p></div>";
- }
- else{
- $message .= "<p><div><a href="$picurl">$value[filename]</a> ($value[size] byte)</p></div>";
- }
- }
复制代码 4、打开source/cp_thread.php
找到:- //未插入文章
- foreach ($uploads as $value) {
- $picurl = pic_get($value['filepath'], $value['thumb'], $value['remote'], 0);
- $message .= "<div class="uchome-message-pic"><img src="$picurl"><p>$value[title]</p></div>";
- }
复制代码 修改为:- //未插入文章
- foreach ($uploads as $value) {
- $picurl = pic_get($value['filepath'], $value['thumb'], $value['remote'], 0);
- $fileext = fileext($picurl);
- if(in_array($fileext, array('jpg','jpeg','gif','png'))){
- $message .= "<div class="uchome-message-pic"><img src="$picurl"><p>$value[title]</p></div>";
- }
- else{
- $message .= "<p><div><a href="$picurl">$value[filename]</a> ($value[size] byte)</p></div>";
- }
- }
复制代码 5、通过以上即可实现rar、zip类型文件上传。如果上传时不修改存储相册,则默认存储在默认相册里,因为不是图片文件,浏览时不能显示缩略图,影响美观。为解决这个问题,建议在相册里面建一个“附件存储文件夹”,权限设为“仅自己可见”,这样上传时选定这个存储位置,就不会影响默认相册的图片预览效果,同时也不妨碍日志中附件的下载链接。
6、文件打包,有需要的可直接下载,FTP工具以二进制方式上传到UCHOME目录覆盖原文件即可。
|