在线工具

2017-07-12     8

我们来解决这个的防护方法就是 设置php-templete.ini文件,找到open_basedir,把前面的分号去掉,如下所示即可解决此问题 shell ; open_basedir, if set, limits all file operations to the defined directory ; and below. This directive makes most sense

2017-07-14     21

我们经常会使用cdn来达到加快网站访问速度和隐藏服务器真实ip的目的,但是站点使用了cdn后程序获取到的用户ip以及nginx日志中记录的ip均会变成cdn的中转ip。不过cdn一般会实用自定义ip头来保存用户的真实ip,或者是将其放在X_FORWARDED_FOR头里,通过nginx的realip模块和这些ip头里的信息就可以获取到用户的真实ip了。 首先需要确认安装nginx的时候加上了re

2017-07-14     26

ubuntu在命令行下的版本升级,官方比较推荐的方式是使用do-release-upgrade,也即按顺序执行以下命令即可: shell apt-get update apt-get upgrade apt-get install update-manager-core do-release-upgrade 如果这种方式遇到如下报错: shell Error authenticating so

2017-07-14     17

今天在编译php的amqp扩展时遇到一个问题,就是加载扩展时php-fpm报出如下错误: shell NOTICE: PHP message: PHP Warning: PHP Startup: amqp: Unable to initialize module Module compiled with module API=20121212 PHP compiled with modul

2017-07-14     12

如果telnet远程linux服务器的3306端口是通的话,那说明没有授予用户远程登录权限,那么就在远程服务器上登入mysql后使用如下语句授权: shell grant all privileges on *.* to root@"%" identified by "password" with grant option; flush privileges; 第一行命令解释如下,.:第一个

2017-07-24     19

shell find / -name xunsearch /usr/local/xunsearch /home/ftp/n/newnaila/ThinkPHP/Library/Vendor/xunsearch cd /usr/local/xunsearch cd bin bin/xs-ctl.sh restart

2017-08-28     101

首先启用 EPEL Repository: linux yum -y install epel-release 启用 EPEL Repository 後, 可以用 yum 直接安裝 Htop: linux yum -y install htop 安裝好 Htop 後, 啟動只需執行 “htop” 指令: linux htop

2017-09-25     61

当我们限定了用户不能跳出其主目录之后,使用该用户登录FTP时往往会遇到这个错误: linux 500 OOPS: vsftpd: refusing to run with writable root inside chroot () 这个问题发生在最新的这是由于下面的更新造成的: ubuntu - Add stronger checks for the configuration error o

2017-09-25     41

linux下文件的复制、移动与删除命令为:cp,mv,rm 一、文件复制命令cp 命令格式:cp [-adfilprsu] 源文件(source) 目标文件(destination) cp [option] source1 source2 source3 ... directory 参数说明: -a:是指archive的意思,也说是指复制所有

2017-12-27     18

/查看系统版本 linux cat /etc/redhat-release

2018-01-01     12

linux 查找目录下的所有文件中是否含有某个字符串 find .|xargs grep -ri "mycjl" 查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名 find .|xargs grep -ri "mycjl" -l 1.正则表达式 (1)正则表达式一般用来描述文本模式的特殊用法,由普通字符(例如字符a-z)以及特殊字符(称为元字符,如/、*、?等)组成。

2018-01-03     17

今天在linux用git clone 克隆项目,但是出现以下错误 linux Cloning into 'mycjl'... fatal: unable to access 'https://gitee.com/*/*.git/': Could not resolve host: gitee.com 之前明明还可以的,然后检查了下问题,最后的解决方法是: 输入以下命令 git sudo vim