![PHP7.x无法连接MySQL8.0,但是本地命令行可以正常登录 , 是什么原因](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/loading.png)
PHP7.x无法连接MySQL8.0,但是本地命令行可以正常登录 , 是什么原因
今天遇到一个比较奇怪的问题,服务器本地安装的mysql 8.0 数据库,在服务器内部使用命令行mysql -uroot -p 是可以正常登录,正常查询; 但是安装wordpress 程序时,填写正常的数据库信息...
![微擎开启redis 人人商城秒杀功能开启 微擎性能优化](https://img.wenzhan.cc/wp-content/uploads/2024/12/QQ20241227-211755-300x143.png)
微擎开启redis 人人商城秒杀功能开启 微擎性能优化
首先开启环境的redis扩展 然后编辑 /data/config.php 35行左右 查找如下代码(修改前请将config.php文件复制备份一下,以免出现错误可还原) $config = 'mysql'; 改成 $config = 'redis...
![Linux下php-fpm启动、关闭、重启](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/thumbnail.png)
Linux下php-fpm启动、关闭、重启
cat php-fpm.conf 看到 pid = /var/run/php-fpm/php-fpm.pid php-fpm配置测试 /usr/local/php/sbin/php-fpm -t /usr/local/php/sbin/php-fpm -c /usr/local/php/etc/php.ini -y /usr...
![php访问数据库的过程](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/thumbnail.png)
php访问数据库的过程
在制作动态网站的时候,最基本的一步就是连接数据库,下面我们就为大家介绍一下PHP连接数据库的过程。 推荐教程:PHP视频教程 1.连接数据库函数 mysqli_connect(主机名,用户名,密...
![php编译安装扩展redis及swoole](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/thumbnail.png)
php编译安装扩展redis及swoole
一.安装redis扩展 下载redis扩展包以及解压 1 2 wget https://github.com/edtechd/phpredis/archive/php7.zip unzip php7.zip 进入解压后目录,编译安...
![phpMyAdmin – Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.](https://img.wenzhan.cc/wp-content/uploads/2017/05/phpmyadmin.png)
phpMyAdmin – Error Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
使用PHPmyadmin管理数据库的时候,出现如下报错,可以按照以下步骤操作测试下 1.清空浏览器缓存再测试下。 2.清空PHP缓存目录再测下。
![PHP变量命名规则](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/thumbnail.png)
PHP变量命名规则
PHP变量命名规则 1、变量以美元符号$开头。如$name,$age。 2、美元符号$后面的第一个字符不可以是数字,只能是下划线_或者字母。如$1_1这样的变量是错误的。 3、除了下划线_外,变量不允...
![Fatal error: Incompatible file format: The encoded file has format major ID 5, whereas the Loader expects 4 in](https://img.wenzhan.cc/wp-content/uploads/2017/05/php.png)
Fatal error: Incompatible file format: The encoded file has format major ID 5, whereas the Loader expects 4 in
访问网站提示报错 : Fatal error: Incompatible file format: The encoded file has format major ID 5, whereas the Loader expects 4 in 如图 这是PHP版本问题,可以直接更换PHP...
![mysql数据库怎样查询执行效率慢的sql语句](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/thumbnail.png)
mysql数据库怎样查询执行效率慢的sql语句
PHP网站有些页面打开快,有些打开非常慢,查询了很久也不知道什么原因, 不在PHP代码执行的问题,可能是mysql语句执行的问题,可以考虑检查一下mysql语句。 如何在mysql查找效率慢的SQL语句...
![宝塔面板启动PHP7.4失败报错php-fpm: error while loading shared libraries: libssl.so.1.0.0解决办法](https://www.wenzhan.cc/wp-content/themes/onenice-master/static/images/loading.png)
宝塔面板启动PHP7.4失败报错php-fpm: error while loading shared libraries: libssl.so.1.0.0解决办法
通过宝塔面板重启php7.4报错,重装PHP也报错,通过命令行启动发现报错如下 /www/server/php/74/sbin/php-fpm: error while loading shared libraries: libsodium.so.23: cannot open shar...