置顶推荐 最近更新
6个月前 (03-26)
阅读(355)
评论(0)
报错信息:
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...
6个月前 (03-25)
阅读(348)
评论(0)
登录以后,点击个人主页报错:
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...
6个月前 (03-25)
阅读(246)
评论(0)
报错位置:
appcommonlibraryhelperUploadHelper.php:226
这是因为引入了thinkphp的Filesystem类,但是下载的压缩包里面没有包含。
修改composer.json,加入
"topthink/think-filesystem":"^1.0",
如图:
改成如图后,再composer update即可。
...
6个月前 (03-25)
阅读(252)
评论(0)
报错位置:
appcommoncontrollerPlugins.php on line 89
找到文件位置,发现是从cookie中获取token时,没有初始化,导致的报错。
于是改一改:
$cookie_token=cookie('token');
$cookie_token=$cookie_token?$cookie_token:'';
...
6个月前 (03-25)
阅读(280)
评论(0)
只要打开了调试模式,定位到了文件,就可以解决了。
报错文件位于:
appcommonlibraryhelperUserAuthHelper.php:58
找到文件,在报错代码前面加一句:
$authArr = is_null($authArr)?'':$authArr;
就不再报错了。
6个月前 (03-25)
阅读(257)
评论(0)
这个报错,和第一个报错类似,是在后台管理模块中,报错的。
报错的文件在公共文件,appfunction.inc.php:255行
找到这里,可以看到:
// 密匙c用于变化生成的密文
$key_c = $operation == 'DECODE' ? substr($string, 0, $c_key_length) : substr(md5(micr...
6个月前 (03-25)
阅读(275)
评论(0)
安装好,解决了首页报错的问题,访问页面上其他连接,全部报错,后台无法登录
可以很肯定是重写的问题,看了下下载的压缩包自带的apache重写规则,里面为空,于是补上thinkphp的重写规则
写入到public目录下的.htaccess文件中
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multivie...
6个月前 (03-25)
阅读(282)
评论(0)
之前一直使用3.*的,最近想着看看最新版本,除了底层框架换成了thinkphp6之外,授权变化也挺大的。
不知道还能不能免费用了,不去版权的话,反正个人用吧。
在本地安装跑起来,就给了我一个下马威。
安装没有任何错误,也没说PHP版本不合适,当然我是PHP8.1.27,比较高的版本了。
安装完成,首页就报错:
htmlspecialchars(): Pass...
6个月前 (03-14)
阅读(319)
评论(0)
上一篇文章:
Uncaught mysqli_sql_exception: Incorrect string value: 'xF0x9Fx91x86xE5x85...' for column (144d.com)
文章中写了,改了数据库的字符集,字段的字符集,写入还是报错,当时没注意在执行查询的时候,用了set names
然后这个set names还设置的是utf8
经测试,...
6个月前 (03-12)
阅读(263)
评论(0)
其中一个问题就是,需要切换到指定目录,再执行git log命令
通过php的shell_exec来执行命令时,分布执行时,切换目录是不生效的。
经查询得知,shell执行有个环境,如果是分步执行,相当于建立了两个临时shell环境,执行完命令就关闭了,所以环境变量就无效了
解决办法:
通过符号"&&"来连接多个命令,就可以。
如下:...
6个月前 (03-07)
阅读(248)
评论(0)
oracle表给字段建立索引无效,给where条件后面的简单字段,创建索引,索引无效
条件是in和like,尝试创建位图索引,走了索引
6个月前 (03-06)
阅读(256)
评论(0)
bakuyu.com域名过期了,10年了,还是只有放弃了
续费太贵了
7个月前 (02-02)
阅读(396)
评论(0)
这个问题就是出在将emoji的表情,存入到MySQL的文本字段中。
网上很多方法解决,大多都是修改表的字符集。
我之前也遇到过,修改字符集确实也解决了,但这次,修改了库、表、字段的字符集。my.ini的配置也改了,还是不行
最后只能通过移除这个emoji字符来解决。
别人的方法:
function removeEmojiChar($str)
{
...
7个月前 (02-02)
阅读(445)
评论(0)
--统计增删改数量
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...
8个月前 (01-19)
阅读(457)
评论(0)
代码如下:
$zipfile=new ZipArchive();
$upgradeFile=__SITEROOT.'_cache/update_'.date('Ymd').'.zip';
if ($zipfile->open($upgradeFile, ZipArchive::CREATE | ZipArchive::O...
8个月前 (01-13)
阅读(785)
评论(0)
报错信息:
{"header":{"code":10404,"message":"PathDomainError:(15:51:11.840) no category route found","sid":"cht000b7f20@dx18d01cda78c9a4b550","status":2}}
使用官方的demo,也是报这个错,但是你要是问几个简单的字,...
8个月前 (01-10)
阅读(458)
评论(0)
ps aux | head -1;ps aux |grep -v PID |sort -rn -k +4 | head -10简单记录一下,备查。
8个月前 (01-08)
阅读(300)
评论(0)
今天Linux下的Apache突然无法访问了,使用命令启动后,也无效,于是看了一下日志,发现日志里面全是报错:
[core:emerg] [pid 31173:tid 139906984314688] (28)No space left on device: AH00023: Couldn't create the ssl-cache mutex
AH00016: Configura...