摘要: 不能远程连接报错: mysql -u root -puse mysql mysql> select host, user from user; 将相应用户数据表中的host字段改成'%'; update user set host='%' where user='root'; ERROR 1062 阅读全文
posted @ 2024-11-13 15:38 时光一寸灰 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 一、下载官方的rpm包 1 wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 二、安装rpm包 1 rpm -ivh mysql-community-release-el7-5.noarch.rpm 三、安装mys 阅读全文
posted @ 2024-11-13 15:34 时光一寸灰 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 此问题是镜像不可用导致的,需更换镜像 1、/etc/yum.repos.d/ 2、vim CentOS-Base.repo 3、更换阿里云镜像 # CentOS-Base.repo # # The mirror system uses the connecting IP address of the 阅读全文
posted @ 2024-11-07 17:15 时光一寸灰 阅读(71) 评论(0) 推荐(0) 编辑
摘要: PHP腾讯地图经纬度转百度地图经纬度 中国正常GCJ02坐标 >百度地图BD09坐标 腾讯地图用的也是GCJ02坐标 @param double $lat 纬度 @param double $lng 经度 */ function Convert_GCJ02_To_BD09($lat,$lng){ $ 阅读全文
posted @ 2024-10-30 14:16 时光一寸灰 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 在代码中加入 header('Access-Control-Allow-Origin:*');// 响应类型header('Access-Control-Allow-Methods:*'); 阅读全文
posted @ 2024-10-30 14:15 时光一寸灰 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.查看本机安装的php版本 php -v 或者 php-fpm -v2.官网下载对应版本的php 解压 tar -zxvf php-7.2.3.tar.gz 进入pcntl扩展目录cd php-7.2.3/ext/pcntl 运行phpize (php安装成功后自带,一般在安装目录里的bin目录下 阅读全文
posted @ 2024-10-30 14:13 时光一寸灰 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 将地图 http 改为https 阅读全文
posted @ 2022-09-30 15:33 时光一寸灰 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1、将入口文件移到根目录下 ① 将index.php 复制到根目录,然后修改为 // 定义应用目录 define('APP_PATH', __DIR__ . '/application/'); // 开启调试模式 define('APP_DEBUG', true); // 加载框架引导文件 requ 阅读全文
posted @ 2022-09-20 16:03 时光一寸灰 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys 阅读全文
posted @ 2021-06-28 12:25 时光一寸灰 阅读(339) 评论(1) 推荐(0) 编辑
摘要: truncate table 表名 阅读全文
posted @ 2021-05-27 17:16 时光一寸灰 阅读(115) 评论(0) 推荐(0) 编辑