8月 22, 2024 - php开发    Thinkphp 配置时报错: no input file specified已关闭评论

Thinkphp 配置时报错: no input file specified

Tinkphp配置好文件后:

一直出现nginx报错:

no input file specified
原因:

查看nginx错误日志:

tail -f /usr/local/etc/nginx/nginx_error.log

原因项目的中.user.ini是其它人直接压缩从宝塔上运行的压缩包(开启了防跨站攻击),其路径是他人宝塔中的路径。导致php解析不到,故而报错。

解决1:直接删除.user.ini文件。
解决2:修改.user.ini中的文件路径为本地目录路径。且把路径加入到php.ini中,重启php.nginx
参考原因:https://cloud.tence[……]

Read more

8月 12, 2024 - mysql    mysql10用Sequel Pro链接不上已关闭评论

mysql10用Sequel Pro链接不上

Mysql10:

通过navicat连接不上数据库:
https://blog.csdn.net/leo3070/article/details/117440146

mysql> use mysql;

Database changed

mysql> SELECT Host, User, plugin from user;

+———–+——————+———————–+

| Host      | User             | plugin                |

+——-[……]

Read more

6月 25, 2024 - Linux, 开发笔记    php exec获取的输出不完整已关闭评论

php exec获取的输出不完整

Exec 获取到的输出不完整:

$process = exec('ps -ef |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);

可以增加 -ww参数:增加输出宽度

$process = exec('ps -efww |grep vt4e-ywew-cdd1-taqm-69v1| grep -v grep', $output, $rtn);

[……]

Read more

页面:«1234567...42»