Linux下php-fpm启动、关闭、重启

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...

2 天前 admin 1 阅读
php访问数据库的过程

php访问数据库的过程

在制作动态网站的时候,最基本的一步就是连接数据库,下面我们就为大家介绍一下PHP连接数据库的过程。 推荐教程:PHP视频教程 1.连接数据库函数 mysqli_connect(主机名,用户名,密...

2 天前 admin 1 阅读
php编译安装扩展redis及swoole

php编译安装扩展redis及swoole

一.安装redis扩展 下载redis扩展包以及解压 1 2 wget https://github.com/edtechd/phpredis/archive/php7.zip unzip php7.zip 进入解压后目录,编译安...

2 天前 admin 1 阅读
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 – 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缓存目录再测下。

2 天前 admin 0 阅读
PHP变量命名规则

PHP变量命名规则

PHP变量命名规则 1、变量以美元符号$开头。如$name,$age。 2、美元符号$后面的第一个字符不可以是数字,只能是下划线_或者字母。如$1_1这样的变量是错误的。 3、除了下划线_外,变量不允...

2 天前 admin 0 阅读
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

访问网站提示报错 : Fatal error: Incompatible file format: The encoded file has format major ID 5, whereas the Loader expects 4 in    如图 这是PHP版本问题,可以直接更换PHP...

2 天前 admin 0 阅读
mysql数据库怎样查询执行效率慢的sql语句

mysql数据库怎样查询执行效率慢的sql语句

PHP网站有些页面打开快,有些打开非常慢,查询了很久也不知道什么原因, 不在PHP代码执行的问题,可能是mysql语句执行的问题,可以考虑检查一下mysql语句。 如何在mysql查找效率慢的SQL语句...

2 天前 admin 0 阅读
宝塔面板启动PHP7.4失败报错php-fpm: error while loading shared libraries: libssl.so.1.0.0解决办法

宝塔面板启动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...

3 天前 admin 2 阅读
关于Thinkphp程序报 Class 'think\Image' not found 问题解决方法

关于Thinkphp程序报 Class 'think\Image' not found 问题解决方法

解决方法如下: 一、 把 ./vendor/topthink/think-image/src下的文件 全部全部复制到 (包括image.php和image文件夹)  ./thinkphp/library/think 目录下 ,在登录后台 就可以正常上传了...

2024-01-29 admin 1 阅读
/www/server/php/74/sbin/php-fpm:symbollookup error:/www/server/php/74/lib/php/extensions/no-debug-non-zts-20190902/zip.so:undefined symbol: zip libzip version

/www/server/php/74/sbin/php-fpm:symbollookup error:/www/server/php/74/lib/php/extensions/no-debug-non-zts-20190902/zip.so:undefined symbol: zip libzip version

yum install -y cmake3 # 使用cmake3编译libzip wget https://libzip.org/download/libzip-1.8.0.tar.gz --no-check-certificate tar zxvf libzip-1.8.0.tar.gz && cd ...

2023-12-29 admin 0 阅读