作者
本站作者 我好笨 共计发布文章970篇
正常的服务,跑着跑着,就提示这个了。
配置文件是公共的,也不知道谁改了什么。
解决这个,在配置文件的common段,放入:
tls_enable = true
这样,再重新运行就可以了。
php开发WeCenter V4.1.0后台,话题管理,编辑已有话题报错:htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
后台,话题管理,编辑已有话题报错:htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
调试信息提示文件:
at FormBuilder->fetch() in Topic.php line 247
完整路径:
app/backend/content/Topi...
其他技术今天偶然看到一篇帖子说eu.org域名被禁止了
之前申请过两个,很少使用,前端时间测试一个模型用到了,并配置在了微信公众号里,用来平时自己记录一点东西使用
昨晚用了一下,无法正常使用了,还以为是模型无法调用导致的,并没在意
今天突然看到别人发帖子说这个域名被封禁了,于是,换了一个域名解析上去,功能果然正常了。
哎,免费域名滥用就会导致这样的问题,现在太多人不珍惜资源了。
php开发本地PHP8.1配置wecenter4.1,点击个人中心的账号设置报错
报错信息:
htmlentities(): Passing null to parameter #1 ($string) of type string is deprecated
经检查发现,是模板中对值进行了转换,但默认初始值是null,因此需要转换一下
打开文件:app/common/controller/Frontend.php
第45行下面,添加:
if (is...
php开发本地PHP8.1配置wecenter4.1,点击首页的热门标签报错
报错信息:
SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is not function...
php开发本地PHP8.1配置wecenter4.1报错:SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is
登录以后,点击个人主页报错:
SQLSTATE[42000]: Syntax error or access violation: 1055 Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'peth5.aws_answer.id' which is not...
php开发本地PHP8.1配置wecenter4.1报错:[error] [0]Class "thinkfacadeFilesystem" not found
报错位置:
appcommonlibraryhelperUploadHelper.php:226
这是因为引入了thinkphp的Filesystem类,但是下载的压缩包里面没有包含。
修改composer.json,加入
"topthink/think-filesystem":"^1.0",
如图:
改成如图后,再composer update即可。
...
php开发本地PHP8.1配置wecenter4.1报错:[error] [0]thinkRequest::server(): Argument #2 ($default) must be of type string, null given,
报错位置:
appcommoncontrollerPlugins.php on line 89
找到文件位置,发现是从cookie中获取token时,没有初始化,导致的报错。
于是改一改:
$cookie_token=cookie('token');
$cookie_token=$cookie_token?$cookie_token:'';
...
php开发本地PHP8.1配置wecenter4.1报错:[error] [8192]explode(): Passing null to parameter #2 ($string) of type string is deprecated
只要打开了调试模式,定位到了文件,就可以解决了。
报错文件位于:
appcommonlibraryhelperUserAuthHelper.php:58
找到文件,在报错代码前面加一句:
$authArr = is_null($authArr)?'':$authArr;
就不再报错了。
php开发本地配置WeCenter V4.1.0的第三个问题:substr(): Passing null to parameter #1 ($string) of type string is deprecated
这个报错,和第一个报错类似,是在后台管理模块中,报错的。
报错的文件在公共文件,appfunction.inc.php:255行
找到这里,可以看到:
// 密匙c用于变化生成的密文
$key_c = $operation == 'DECODE' ? substr($string, 0, $c_key_length) : substr(md5(micr...
php开发本地配置WeCenter V4.1.0的第二个问题,页面404,无法登录后台
安装好,解决了首页报错的问题,访问页面上其他连接,全部报错,后台无法登录
可以很肯定是重写的问题,看了下下载的压缩包自带的apache重写规则,里面为空,于是补上thinkphp的重写规则
写入到public目录下的.htaccess文件中
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multivie...
php开发本地配置wecenter4.1.0版本报错:htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated
之前一直使用3.*的,最近想着看看最新版本,除了底层框架换成了thinkphp6之外,授权变化也挺大的。
不知道还能不能免费用了,不去版权的话,反正个人用吧。
在本地安装跑起来,就给了我一个下马威。
安装没有任何错误,也没说PHP版本不合适,当然我是PHP8.1.27,比较高的版本了。
安装完成,首页就报错:
htmlspecialchars(): Pass...
php开发关于MySQL写入表情符号,提示:Incorrect string value: 'xF0x9FxA7xA7xE5x8F...' for column的问题
上一篇文章:
Uncaught mysqli_sql_exception: Incorrect string value: 'xF0x9Fx91x86xE5x85...' for column (144d.com)
文章中写了,改了数据库的字符集,字段的字符集,写入还是报错,当时没注意在执行查询的时候,用了set names
然后这个set names还设置的是utf8
经测试,...
其他技术近期研究了一下git的统计,涉及到linux下通过php执行shell的问题
其中一个问题就是,需要切换到指定目录,再执行git log命令
通过php的shell_exec来执行命令时,分布执行时,切换目录是不生效的。
经查询得知,shell执行有个环境,如果是分步执行,相当于建立了两个临时shell环境,执行完命令就关闭了,所以环境变量就无效了
解决办法:
通过符号"&&"来连接多个命令,就可以。
如下:...
其他技术oracle表给字段建立索引无效
oracle表给字段建立索引无效,给where条件后面的简单字段,创建索引,索引无效
条件是in和like,尝试创建位图索引,走了索引
日常生活bakuyu.com域名过期了,10年了,还是只有放弃了
bakuyu.com域名过期了,10年了,还是只有放弃了
续费太贵了
php开发Uncaught mysqli_sql_exception: Incorrect string value: 'xF0x9Fx91x86xE5x85...' for column
这个问题就是出在将emoji的表情,存入到MySQL的文本字段中。
网上很多方法解决,大多都是修改表的字符集。
我之前也遇到过,修改字符集确实也解决了,但这次,修改了库、表、字段的字符集。my.ini的配置也改了,还是不行
最后只能通过移除这个emoji字符来解决。
别人的方法:
function removeEmojiChar($str)
{
...
其他技术git统计提交信息的代码
--统计增删改数量
git log --remotes --format='%aN' | sort -u | while read name; do echo -en "$namet"; git log --remotes --author="$name" --pretty=tformat: --numstat --since="2023-01-01" --before="2...