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. POJ 1976 A Mini Locomotive

    $dp$. 要求选择$3$个区间,使得区间和最大.$dp[i][j]$表示前$i$个数中选择了$j$段获得的最大收益. #include <cstdio> #include <cma ...

  2. EL和JSTL的关系

    JSTL与EL的关系:EL的功能是有限的,去集合只能取特定的某一个元素,如果遍历或循环就不行了,或者添加一些条件分支判断也不行,或做一些格式化,比如日期的格式化,数字的格式化,也不行,所以要做这些功能 ...

  3. 基于libevent和unix domain socket的本地server

    https://www.pacificsimplicity.ca/blog/libevent-echo-server-tutorial 根据这一篇写一个最简单的demo.然后开始写client. cl ...

  4. bash shell 关系

    linux的bash和shell关系 shell通俗理解:把用户输入的命令翻译给操作系统. shell 是一个交互性命令解释器.shell独立于操作系统,这种设计让用户可以灵活选择适合自己的shell ...

  5. elasticsearch中ik词库配置远程热加载

    1. 修改 IKAnalyzer.cfg.xml 配置文件中的<entry key="remote_ext_dict">http://127.0.0.1/xxx.txt ...

  6. CodeForces 606C Sorting Railway Cars(最长连续上升子序列)

    Description An infinitely long railway has a train consisting of n cars, numbered from 1 to n (the n ...

  7. __declspec(dllexport) 和 __declspec(dllimport)的区别

    最近看MXNet的源码,其中c_api.h中发现遇到__declspec(dllexport) 和 __declspec(dllimport). __declspec(dllexport)用于导出符号 ...

  8. bzoj 1911: [Apio2010]特别行动队 -- 斜率优化

    1911: [Apio2010]特别行动队 Time Limit: 4 Sec  Memory Limit: 64 MB Description Input Output Sample Input 4 ...

  9. 二、python的逻辑运算与数据类型

    .python的逻辑运算符 数学运算符 加:+   减:-  乘:*  除:/  取余:% 关系运算符 等于: ==  不等于: != 小于:< 大于:>     大于等于: >=  ...

  10. 2015 UESTC 搜索专题D题 基爷的中位数 二分

    基爷的中位数 Time Limit: 20 Sec  Memory Limit: 256 MB 题目连接 http://acm.uestc.edu.cn/#/contest/show/61 Descr ...