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. Linux的经典shell命令整理

    Linux的经典shell命令整理 1.删除0字节文件find -type f -size 0 -exec rm -rf {} \; 2.查看进程按内存从大到小排列ps -e -o “%C : %p ...

  2. Git gitconfig 配置

    difftool: [diff] tool = bc4 algorithm = histogram [difftool] prompt = false [difftool "bc4" ...

  3. Good Bye 2017 部分题解

    D. New Year and Arbitrary Arrangement 分析 \(dp[i][j]\) 表示已有 \(i\) 个 \(a\) 和 \(j\) 个 \(ab\) 的情况下继续构造能得 ...

  4. MPI - 缓冲区和非阻塞通信

    转载自: Introduction to MPI - Part II (Youtube) Buffering  Suppose we have ) MPI_Send(sendbuf,...,,...) ...

  5. iOS 9音频应用播放音频之音量设置与声道设置

    iOS 9音频应用播放音频之音量设置与声道设置 iOS 9音频应用音量设置 音量又称响度.音强,是指人耳对所听到的声音大小强弱的主观感受,其客观评价尺度是声音的振幅大小.在iOS 9音频应用的应用中, ...

  6. 【BZOJ 3997】 3997: [TJOI2015]组合数学 (DP| 最小链覆盖=最大点独立集)

    3997: [TJOI2015]组合数学 Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 919  Solved: 664 Description 给出 ...

  7. 【BZOJ 3133】 3133: [Baltic2013]ballmachine (线段树+倍增)

    3133: [Baltic2013]ballmachine Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 148  Solved: 66 Descri ...

  8. Codeforces 196 E. Tricky and Cleve Password

    \(>Codeforces \space 196\ E. Tricky\ and\ Cleve\ Password<\) 题目大意 : 给出一个有 \(n\) 个结点,\(m\) 条边的连 ...

  9. 51nod1821 最优集合 贪心

    首先考虑一个集合的最大优美值怎么求出 考虑新增一个数,假设我们现在的优美值已经达到了$V$,那么只需要一个$[1, V + 1]$的数就可以使$V$达到更大 为了保证能添加尽可能多的数进来,我们这么构 ...

  10. 【BZOJ】2131: 免费的馅饼

    2131: 免费的馅饼 Time Limit: 10 Sec  Memory Limit: 259 MBSubmit: 508  Solved: 310[Submit][Status][Discuss ...