component is not authorized by this account hint: [B3GVCa0189e575] 错误解决?
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行代码
- if(empty($_W['setting']['site']['key']) || empty($_W['setting']['site']['token'])) {
- return error('-1', "您的程序需要在微赞云服务平台注册你的站点资料, 来接入云平台服务后才能使用相应功能.");
- }
复制代码
把这三行代码注释掉就可以了,(注释掉就是在每一行的开头加上"//“就可以了),修改成这样:
- //if(empty($_W['setting']['site']['key']) || empty($_W['setting']['site']['token'])) {
- // return error('-1', "您的程序需要在微赞云服务平台注册你的站点资料, 来接入云平台服务后才能使用相应功能.");
- //}
复制代码
然后,在找到第36行
- if ($dat['content'] == 'install-module-protect') {
- return error('-1', '此模块已设置版权保护,您只能通过云平台来安装。');
- }
复制代码
第151行
- if ($dat['content'] == 'install-theme-protect') {
- return error('-1', '此模板已设置版权保护,您只能通过云平台来安装。');
- }
分别注释掉就可以了,当然你如果删除掉,也是可以的,但最好还是不要删除
component is not authorized by this account hint: [B3GVCa0189e575] 错误解决?的更多相关文章
- Component creation must be done on Event Dispatch Thread错误解决方法
在用java swing 做例子,给页面设置皮肤样式的时候出现了这个错误: org.jvnet.substance.api.UiThreadingViolationException: Compone ...
- .xlsx文件总是默认用2007 Microsoft Office component 打开,且无法更改用EXCEL打开的解决方法
之前装了OFFICE2003,后来改装了 OFFICE2007,之后XLSX文件双击总是用2007 Microsoft Office component 打开,导致无法打开. 解决方法: 打开注册表R ...
- SVN的Not authorized to open root of edit operation解决办法
以为经常用到这是转贴 谢谢 Subversion装了1.5.2版,乌龟SVN装的是1.5.1版本,可以通过乌龟正常访问到版本库,但当check out时却出现了"Not authorize ...
- 出现“ORA-28000:the account is locked”的解决办法
在Oracle 11g版本中,出于安全的考虑,所有Oracle的默认用户,包括SCOTT用户都被锁定.输入用户名和口令之后,会出现错误“ORA-28000:the account is locked” ...
- The required Server component failed to start so Tomcat is unable to start解决之一
http://www.cnblogs.com/quxuedan/archive/2012/12/11/2813445.html 看看这个博客园园主说的吧
- [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 ...
- MongoDB not authorized for query - code 13 错误解决办法
跟着教程走完到了鉴权阶段,不加 --auth 登陆正常,但会出现warning :没有鉴权,修改不会生效,此时登陆正常. 但是加上了--auth 启动之后加上密码登陆则无法登陆. 添加用户和鉴权: 先 ...
- scott/tiger登录时提醒ora-28000 the account is locked
scott/tiger登录时提示ora-28000 the account is locked在plsql developer中要是以scott/tiger登录时提示ora-28000 the acc ...
- ORA-28000: the account is locked-的解决办法
ORA-28000: the account is locked第一步:使用PL/SQL,登录名为system,数据库名称不变,选择类型的时候把Normal修改为Sysdba;第二步:选择myjob, ...
随机推荐
- openwrt 控制gpio口的方法
利用i2c来控制gpio口 1.编译驱动或者安装驱动 # opkg update # opkg install kmod-i2c-gpio-custom kmod-i2c-core# 加载驱动 # i ...
- JSP之登录验证码
1.JSP页面中设置输入选项和验证码 <form action=login.do" method="post" > <div class="l ...
- 简单机器学习人脸识别工具face-recognition python小试,一行代码实现人脸识别
摘要: 1行代码实现人脸识别,1. 首先你需要提供一个文件夹,里面是所有你希望系统认识的人的图片.其中每个人一张图片,图片以人的名字命名.2. 接下来,你需要准备另一个文件夹,里面是你要识别的图片.3 ...
- Ubuntu 12.04下Hadoop 2.2.0 集群搭建(原创)
现在大家可以跟我一起来实现Ubuntu 12.04下Hadoop 2.2.0 集群搭建,在这里我使用了两台服务器,一台作为master即namenode主机,另一台作为slave即datanode主机 ...
- SpringBoot返回结果如果为null或空值不显示处理方法
第一种方法:自定义消息转换器 @Configuration public class WebMvcConfig extends WebMvcConfigurerAdapter{ // /** // * ...
- HDU 5652 India and China Origins 二分+并查集
India and China Origins 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5652 Description A long time ...
- UESTC 2015dp专题 H 邱老师选妹子 数位dp
邱老师选妹子 Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.uestc.edu.cn/#/contest/show/65 Descr ...
- poj 3624 Charm Bracelet 背包DP
Charm Bracelet Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://poj.org/problem?id=3624 Descripti ...
- HP-unix如何生成动态库?
HP-unix系统生成动态库编译的方法? 创建PIC中间文件的编译器选项是+z,创建动态库的链接器标志是-b. 1. cc +z d1.c d2.c /* 编译以".o"为扩展名的 ...
- gridview 空数据绑定
private void getDataBind() { DataTable dt = new DataTable(); dt.Columns.Add("id"); dt.Colu ...