- 博客(18)
- 收藏
- 关注
转载 PhpStorm 增加Swoole智能提示
原文链接:https://www.jianshu.com/p/6884bbd5b111下载https://github.com/eaglewu/swoole-ide-helper的源码将代码包含到PhpStorm的Settings->Languages & Frameworks->PHP->inclue path里面即可转载于:https:/...
2019-09-11 13:59:00 323
转载 centOS7 下利用iptables配置IP地址白名单的方法
原文链接:http://www.manongjc.com/article/126567.html编辑iptables配置文件,将文件内容更改为如下,则具备了ip地址白名单功能#vim /etc/sysconfig/iptables*filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0...
2019-09-10 15:28:00 1432
转载 mysqli连接提示 Warning: mysqli::mysqli(): (HY000/2002): No such file or directory
参考链接:https://blog.csdn.net/zhaoerduo/article/details/51076456今天在研究easyswoole,在测试服务器上启动easyswoole后提示PHP Warning: mysqli::__construct(): (HY000/2002): No such file or directory...解决方案:修改项目连接my...
2019-09-09 17:16:00 857
转载 用navicat远程连接mysql:Can't connect to MySQL server (10060)
参考链接1:https://www.cnblogs.com/flzs/p/10161969.html;参考链接2:https://jingyan.baidu.com/article/455a9950a4fea0a16727787e.html;1.设置远程用户访问权限(//任何远程主机都可以访问数据库):mysql>GRANTALLPRIVILEGESON*...
2019-09-09 15:08:00 517
转载 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES/NO) 解决方案1.停止mysql...
原文链接:https://cloud.tencent.com/developer/article/11886361.停止mysql数据库/etc/init.d/mysql stop (或者直接 kill -9 [PID] 杀进程!)这里的路径填自己mysql安装路径2.执行如下命令mysqld_safe --user=mysql --skip-grant-tables...
2019-09-06 18:05:00 69
转载 在centos7中为php7安装redis扩展
原文链接:https://blog.csdn.net/xujialei0704/article/details/80362602下载redis,解压,编译:$ wget http://download.redis.io/releases/redis-4.0.6.tar.gz$ tar xzf redis-4.0.6.tar.gz$ cd redis-4.0.6$ make &am...
2019-09-06 14:30:00 80
转载 Cannot find config.m4. 解决方案
原文链接:https://blog.csdn.net/Johnson_llguo/article/details/83970798Cannot find config.m4. Make sure that you run '/usr/local/php/bin/phpize' in the top level source directory of the module 在需要...
2019-09-06 14:24:00 497
转载 Linux修改php.ini后重启php-fpm的方法
/etc/init.d/php-fpm restart转载于:https://www.cnblogs.com/xiesx/p/11472635.html
2019-09-06 11:08:00 716
转载 MySQL的四种事务隔离级别
原文:https://www.cnblogs.com/shihaiming/p/11044740.html一、事务的基本要素(ACID) 1、原子性(Atomicity):事务开始后所有操作,要么全部做完,要么全部不做,不可能停滞在中间环节。事务执行过程中出错,会回滚到事务开始前的状态,所有的操作就像没有发生一样。也就是说事务是一个不可分割的整体,就像化学中学过的原子,是物质构...
2019-09-05 17:10:00 59
转载 root用户被提示:Operation not permitted
原文链接:https://blog.csdn.net/yuanxiang01/article/details/81508699今天在使用root用户删除服务器上的一个名为default文件夹时,被系统告知:rm: cannot remove ‘default/.user.ini’: Operation not permitted。解决方案:1.先输入命令:lsattrdef...
2019-09-05 16:01:00 269
转载 static 关键字
1.php函数中static的使用php中static的定义语句只会被执行一次,但是它的值会被函数记住,直到程序终止举个栗子:<?phpfunction test(){ //这个语句只会在该程序运行的第一次调用生效,但是这个值在函数执行结束后会被该函数记住, //也就是说下次执行到这个函数的,$a是已经存在的且值为上次运行后的值 static $...
2019-08-29 17:41:00 86
转载 关于jsonp机制与php后台处理jsonp
参考链接1:https://justcoding.iteye.com/blog/1366102/参考链接2:https://blog.csdn.net/sinat_26204753/article/details/74178117我使用的是jquery的$.ajax方式进行jsonp请求,方法如下:<script type="text/javascript"> ...
2019-08-20 17:38:00 73
转载 nginx配置后只有根目录首页index.php能访问,其他页面404
我本地是window系统,用的是phpstudy,解决办法:用phpstudy点击其他选项菜单->打开配置文件->选择vhost-ini(或者找到nginx安装目录,打开vhost.conf),在你的站点配置里location / { index index.html index.htm index.php; #aut...
2019-08-19 10:47:00 1261
转载 CentOS7 -bash: php: command not found
原文链接:https://blog.csdn.net/u010505805/article/details/77896776我的环境里php的目录是/usr/local/php/bin,所以:第一步:vim /etc/profile(编辑环境变量)可在最后一行敲入命令export PATH=$PATH:/usr/local/php/bin,然后保存。第二步:source ...
2019-08-13 09:37:00 193
转载 nginx的日志 log_format参数说明
摘取链接:https://blog.csdn.net/zhanghuiqi205/article/details/89417716log_format格式变量: $remote_addr #记录访问网站的客户端地址 $remote_user #远程客户端用户名 $time_local #记录访问时间与时区 $request #用户的ht...
2019-08-12 17:35:00 151
转载 centos下安装好nginx重启报错:-bash: nginx: command not found
原文链接:https://blog.csdn.net/rightbeforethesix/article/details/93175086Linux 安装好的 nginx 在sbin目录下没有nginx命令nginx的bash命令::没有发现1、进入 /etc/profile 文件 进行编辑转载于:https://www.cnblogs.com/xiesx/p...
2019-08-12 14:06:00 189
转载 centos下安装yii2
这里假设linux,mysql,php,nginx/apache已经装好1.安装curl扩展(已安装可以跳过)yum -y install curl2.curl-sShttps://getcomposer.org/installer|php要是提示bash: php: command not found解决方案export PATH=$PATH:...
2019-08-12 14:04:00 169
转载 LNMP环境搭建
原文链接https://www.cnblogs.com/wujuntian/p/8183952.html,mysql和php下载安装包那里我有做修改,还有nginx安装的第8点有添加报错解决方案,其余未有改动。一、安装前1.更新系统软件:yum update2.查看是否已安装wget:rpm -qa wget否则安装:yum install wget3...
2019-08-09 13:51:00 120
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人