component is not authorized by this account hint: [aMADoA0312e514]

component is not authorized by this account hint: [B3GVCa0189e575] 错误解决?

component is not authorized by this account hint: [rIP5ya0345e578]

component is not authorized by this account hint: [bFvHta0360e544]

错误信息为: 访问微信接口错误, 错误代码: 40001, 错误信息: invalid credential, access_token is invalid or not latest hint: [TitxZa0962vr47!],错误详情:微信公众平台授权异常, 系统已修复这个错误, 请刷新页面重试.

错误信息为: 访问微信接口错误, 错误代码: 40001, 错误信息: invalid credential, access_token is invalid or not latest hint: [00aRpA0280vr57!],错误详情:微信公众平台授权异常, 系统已修复这个错误, 请刷新页面重试.

访问云服务器错误, 可能原因:
1、您的服务器防火墙屏蔽了云服务器IP;
2、您的服务器IP地址没有授权(系统检测到您的服务器IP为:“'..'”请把这个IP填到“系统管理——注册站点——IP授权管理--填入备用IP栏,进行IP授权);
3、你也可以尝试备用更新:移步备用更新页面

在使用微赞 微擎提示 “请尽快完善您在微赞云服务平台的站点注册信息”。

解决办法修改:/web/common/common.func.php

function site_profile_perfect_tips(){
global $_W;
return ; // 这里直接返回即可!!! if ($_W['isfounder'] && (empty($_W['setting']['site']['token']))) {
if (!defined('SITE_PROFILE_PERFECT_TIPS')) {
$url = url('cloud/profile');
return <<<EOF
$(function() {
var html =
'<div id="siteinfo-tips" class="upgrade-tips">'+
'<a href="{$url}" target="_blank">请尽快完善您在微赞云服务平台的站点注册信息。</a>'+
'</div>';
$('body').prepend(html);
});
EOF;
define('SITE_PROFILE_PERFECT_TIPS', true);
}
}
return '';
}

覆盖到\web\common目录下即可!

以微赞为例解决此类问题: 
打开\framework\model\cloud.mod.php 找到第23行代码

  1. if(empty($_W['setting']['site']['key']) || empty($_W['setting']['site']['token'])) {
  2. return error('-1', "您的程序需要在微赞云服务平台注册你的站点资料, 来接入云平台服务后才能使用相应功能.");
  3. }

复制代码

把这三行代码注释掉就可以了,(注释掉就是在每一行的开头加上"//“就可以了),修改成这样:

  1. //if(empty($_W['setting']['site']['key']) || empty($_W['setting']['site']['token'])) {
  2. // return error('-1', "您的程序需要在微赞云服务平台注册你的站点资料, 来接入云平台服务后才能使用相应功能.");
  3. //}

复制代码

然后,在找到第36行

  1. if ($dat['content'] == 'install-module-protect') {
  2. return error('-1', '此模块已设置版权保护,您只能通过云平台来安装。');
  3. }

复制代码

第151行

  1. if ($dat['content'] == 'install-theme-protect') {
  2. return error('-1', '此模板已设置版权保护,您只能通过云平台来安装。');
  3. }

分别注释掉就可以了,当然你如果删除掉,也是可以的,但最好还是不要删除

component is not authorized by this account hint: [B3GVCa0189e575] 错误解决?的更多相关文章

  1. Component creation must be done on Event Dispatch Thread错误解决方法

    在用java swing 做例子,给页面设置皮肤样式的时候出现了这个错误: org.jvnet.substance.api.UiThreadingViolationException: Compone ...

  2. .xlsx文件总是默认用2007 Microsoft Office component 打开,且无法更改用EXCEL打开的解决方法

    之前装了OFFICE2003,后来改装了 OFFICE2007,之后XLSX文件双击总是用2007 Microsoft Office component 打开,导致无法打开. 解决方法: 打开注册表R ...

  3. SVN的Not authorized to open root of edit operation解决办法

    以为经常用到这是转贴  谢谢 Subversion装了1.5.2版,乌龟SVN装的是1.5.1版本,可以通过乌龟正常访问到版本库,但当check out时却出现了"Not authorize ...

  4. 出现“ORA-28000:the account is locked”的解决办法

    在Oracle 11g版本中,出于安全的考虑,所有Oracle的默认用户,包括SCOTT用户都被锁定.输入用户名和口令之后,会出现错误“ORA-28000:the account is locked” ...

  5. The required Server component failed to start so Tomcat is unable to start解决之一

    http://www.cnblogs.com/quxuedan/archive/2012/12/11/2813445.html 看看这个博客园园主说的吧

  6. [Vue warn]: Failed to mount component: template or render function not defined. 错误解决方法

    解决方法import Vue from "vue"; 默认引入的文件是 vue/dist/vue.runtime.common.js.这个可以在node_modules/vue/p ...

  7. MongoDB not authorized for query - code 13 错误解决办法

    跟着教程走完到了鉴权阶段,不加 --auth 登陆正常,但会出现warning :没有鉴权,修改不会生效,此时登陆正常. 但是加上了--auth 启动之后加上密码登陆则无法登陆. 添加用户和鉴权: 先 ...

  8. scott/tiger登录时提醒ora-28000 the account is locked

    scott/tiger登录时提示ora-28000 the account is locked在plsql developer中要是以scott/tiger登录时提示ora-28000 the acc ...

  9. ORA-28000: the account is locked-的解决办法

    ORA-28000: the account is locked第一步:使用PL/SQL,登录名为system,数据库名称不变,选择类型的时候把Normal修改为Sysdba;第二步:选择myjob, ...

随机推荐

  1. Python类总结-继承-子类和父类,新式类和经典类

    子类和父类 class Father(object): #子类在使用super调用父类时,Father后面要加object --新式类 def __init__(self): self.Fname = ...

  2. React篇章-React 组件

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title&g ...

  3. Beaglebone Black开发板安装驱动

    Beaglebone Black开发板安装驱动 Beaglebone Black开发板安装驱动,在使用Beaglebone Black开发板子做任何事情之前首先需要安装驱动.下面的内容就了展示在Win ...

  4. Python正则模块

    re模块 import re # match # 从头开始匹配, 只匹配一次,就结束 a = re.match('\d+', '54:58天5488:8451') # 默认就是0个群组 print(a ...

  5. BNU校赛总决赛J 小白兔小灰兔 相交计算几何模板

    J 小白兔小灰兔 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语言65536K Special Judge, 64bit IO Format: %lld 题目描述 ...

  6. servlet3.0 @WebServlet注解无效的情况

    web.xml文件中的metadata-comcomplete属性的作用: 该属性指定当前的部署描述文件是否是完全的.如果设置为true,则容器在部署时只依赖部署描述文件,忽略所有的注解(同时也会跳过 ...

  7. Android Studio 2.3更换默认的ConstraintLayout布局

    首先打开你的Android Sudio安装目录,我的为D:\Program Files\Android\Android Studio,进入到以下文件夹\plugins\android\lib\temp ...

  8. Codeforces Round #346 (Div. 2) G. Fence Divercity dp

    G. Fence Divercity 题目连接: http://www.codeforces.com/contest/659/problem/G Description Long ago, Vasil ...

  9. 2015 UESTC 数据结构专题H题 秋实大哥打游戏 带权并查集

    秋实大哥打游戏 Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.uestc.edu.cn/#/contest/show/59 Descr ...

  10. 使用sklearn进行交叉验证

    模型评估方法 假如我们有一个带标签的数据集D,我们如何选择最优的模型? 衡量模型好坏的标准是看这个模型在新的数据集上面表现的如何,也就是看它的泛化误差.因为实际的数据没有标签,所以泛化误差是不可能直接 ...