~~~
# 解决Warning: vchar() has been disabled for security reasons in…的问题
1. 进入php.ini编辑状态
2. 输入/,进入搜索模式,找到disable\_functions
3. 寻找disable\_functions字符串,将后面的vchar删除
~~~
~~~
FTP上传文件,提示553 Can't open that file: Permission denied
原因
目录的所属组,所属用户属于root, 导致FTP无法上传, 修改组和所属用户为www即可
chown -fR www ./*
chgrp -fR www ./*
~~~
~~~
# 基于CentOS 7.6宝塔 安装redis无法远程链接问题
[https://www.jianshu.com/p/deeaad4fc024](https://www.jianshu.com/p/deeaad4fc024)
宝塔下安装php swoole扩展
[https://www.itbulu.com/bt-swoole.html](https://www.itbulu.com/bt-swoole.html)
~~~
~~~
# CentOS7开启ssh服务并使用xshell连接
https://blog.csdn.net/qq_34207366/article/details/88969999
~~~