~~~
# 解決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
~~~