找回密码
 立即注册

QQ登录

只需一步,快速开始

Discuz!x3.2 插件调用编辑器解决方案之一

1、模板文件添加内容


  1. <!--{subtemplate home/editor_image_menu}-->
  2. 内容:<textarea class="userData" name="content" id="uchome-ttHtmlEditor" style="height: 100%; width: 100%; display: none; border: 0px"></textarea>
  3. <iframe src='home.php?mod=editor&charset={CHARSET}&allowhtml=1&isportal=1' name='uchome-ifrHtmlEditor' id='uchome-ifrHtmlEditor'  scrolling='no' style='width:85%;height:400px;border:1px solid #C5C5C5;position:relative;' border=0 frameborder=0 ></iframe>
  4. <iframe id="uploadframe" name="uploadframe" width="0" height="0" marginwidth="0" frameborder="0" src="about:blank"></iframe>
  5. <input id='submit_editsubmit' class='btn' type='submit' value='提交'  name='editsubmit' onClick='validate(this);'>
  6. <script type="text/javascript" src="static/image/editor/editor_function.js"></script>  
  7. <script type="text/JavaScript">  
  8. function validate(obj) {  
  9.     edit_save();  
  10.     window.onbeforeunload = null;  
  11.     obj.form.submit();  
  12.     return false;  
  13. }
  14. </script>  

复制代码


  然而这中间需要注意的是:

  1. <!--{subtemplate home/editor_image_menu}-->
复制代码

  是用于调用图片上传功能的,少了的话图片上传功能也就用不了了。

  1. <script type="text/javascript" src="static/image/editor/editor_function.js"></script>  
  2. <script type="text/JavaScript">  
  3. function validate(obj) {  
  4.     edit_save();  
  5.     window.onbeforeunload = null;  
  6.     obj.form.submit();  
  7.     return false;  
  8. }
  9. </script>
复制代码


  这段js是编辑框传值和校验用,少了也就没法传值了。很多资料到这一步也就完了,此时图片上传功能却无法使用。百度和google了不知道多少遍也没有找到,资料少得可怜。但是少了图片上传功能,这个编辑器也就不完整了;再者编辑框大部分情况下都是需要上传图片的。因此,不得不查看源码,一步步调试了。

  2、查找问题

  上传图片的时候,出现以下的现象,然后就毫无反应了。
191156344384816.png
  于是找来misc.php查看源码。最后一句是这样的

  1. require DISCUZ_ROOT.'./source/module/misc/misc_'.$mod.'.php';
复制代码

  将$mod输出,发现时swfupload。于是找来misc_swfupload.php文件。第一行的判断是这样的。

  1. if((empty($_G['uid']) && $_GET['operation'] != 'upload') || $_POST['hash'] != md5(substr(md5($_G['config']['security']['authkey']), 8).$_G['uid'])) {
  2.     exit();
  3. }
复制代码

  于是将分别将$_POST['hash']和md5(substr(md5($_G['config']['security']['authkey']), 8).$_G['uid'])分别输出来,发现hash是空的,完全对不上。于是找出页面的hash,在页面“/template/default/home/editor_image_menu.htm”中找到了如下代码


  1. <script type="text/javascript">
  2.     var attachUpload = new SWFUpload({
  3.         // Backend Settings
  4.         upload_url: "{$_G[siteurl]}misc.php?mod=swfupload&action=swfupload&operation=<!--{if $_G['basescript'] == 'portal'}-->portal<!--{else}-->album<!--{/if}-->",
  5.         post_params: {"uid" : "$_G[uid]", "hash":"$swfconfig[hash]"<!--{if $_G['basescript'] == 'portal'}-->,"aid":$aid,"catid":$catid<!--{/if}-->},

  6.         // File Upload Settings
  7.         file_size_limit : "$swfconfig[max]",    // 100MB
  8.         <!--{if $_G['basescript'] == 'portal'}-->
  9.         file_types : "$swfconfig[attachexts][ext]",
  10.         file_types_description : "$swfconfig[attachexts][depict]",
  11.         <!--{else}-->
  12.         file_types : "$swfconfig[imageexts][ext]",
  13.         file_types_description : "$swfconfig[imageexts][depict]",
  14.         <!--{/if}-->
  15.         file_upload_limit : 0,
  16.         file_queue_limit : 0,

  17.         // Event Handler Settings (all my handlers are in the Handler.js file)
  18.         swfupload_preload_handler : preLoad,
  19.         swfupload_load_failed_handler : loadFailed,
  20.         file_dialog_start_handler : fileDialogStart,
  21.         file_queued_handler : fileQueued,
  22.         file_queue_error_handler : fileQueueError,
  23.         file_dialog_complete_handler : fileDialogComplete,
  24.         upload_start_handler : uploadStart,
  25.         upload_progress_handler : uploadProgress,
  26.         upload_error_handler : uploadError,
  27.         upload_success_handler : uploadSuccess,
  28.         upload_complete_handler : uploadComplete,

  29.         // Button Settings
  30.         button_image_url : "{IMGDIR}/uploadbutton.png",
  31.         button_placeholder_id : "spanButtonPlaceholder",
  32.         button_width: 100,
  33.         button_height: 25,
  34.         button_cursor:SWFUpload.CURSOR.HAND,
  35.         button_window_mode: "transparent",

  36.         custom_settings : {
  37.             progressTarget : "fsUploadProgress",
  38.             uploadSource: 'portal',
  39.             uploadType: 'attach',
  40.             imgBoxObj: $('attachlist')
  41.             //thumbnail_height: 400,
  42.             //thumbnail_width: 400,
  43.             //thumbnail_quality: 100
  44.         },

  45.         // Debug Settings
  46.         debug: false
  47.     });

  48. </script>

复制代码


  hash是由$swfconfig[hash]进行赋值的。于是又搜索了一遍源码,发现了这么两句。

  1. require_once libfile('function/upload');
  2. $swfconfig = getuploadconfig($_G['uid'], 0, true);
复制代码

  二话不说,复制过来测试。试了一下,尼玛的还是不行。于是找呀找呀找,发现是前面调试时的输出影响了ajax的处理。于是将调试语句去掉,果不其然,可以成功上传了。一阵欣喜若狂。

191219020015029.png

  对于无法加载相册之类的,一律如法炮制。最后,其实是php代码初始化时添加如下代码即可。

  3、解决问题的代码

  1. require_once libfile('function/upload');
  2. $swfconfig = getuploadconfig($_G['uid'], 0, true);//编辑框上传图片初始化
  3. require_once libfile('function/spacecp');
  4. $albums = getalbums($_G['uid']);//获取登陆用户相册
复制代码


本教程由无限星辰工作室CRX349独家整理和提供,转载请注明地址,谢谢。本文地址:https://www.xmspace.net/thread-416-1-1.html
无限星辰工作室  好集导航 Discuz全集下载  星辰站长网  集热爱361  一品文学  手机小游戏合集   海外空间网 星辰api  星辰支付二维码管理平台 阿里云服务器 腾讯云服务器
服务Discuz!建站|DiscuzQ配置|二开|小程序|APP|搬家|挂马清理|防护|Win/Linux环境搭建|优化|运维|
服务理念:专业 诚信 友好QQ842062626 服务项目 Q群315524225

发表于 2016-2-22 11:01:57 | 显示全部楼层 |阅读模式

回复 | 使用道具 举报

该帖共收到 0 条回复!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

美图秀

    • fastadmin 后台界面使用字段数组类型
    • Discuz!x3.5 修改标题高亮颜色
    • Discuz!x3.5 应用中心 下载应用一直下载中
    • 帖子定时显示
    • 论坛辅助审核
拖动客服框
Online Service
点击这里给我发消息
点击这里联系我们
微信扫一扫
在线客服
快速回复 返回顶部 返回列表