乔不是 发表于 2018-12-21 17:04:25

remove_open_basedir_restriction.sh 脚本中少一个斜杠 /

remove_open_basedir_restriction.sh
脚本中少一个斜杠 /

----原脚本---------------------------
while :;do
    read -p "Enter website root directory: " website_root
    if [ -d "${website_root}" ]; then
      if [ -f ${website_root}/.user.ini ];then
            chattr -i ${website_root}/.user.ini
            rm -f ${website_root}.user.ini

-----------------------------
需修改为: rm -f ${website_root}/.user.ini
不然删除不了.user.ini文件

乔不是 发表于 2018-12-21 17:12:50

是lnmp 1.5 中

lnmp1.5/tools/remove_open_basedir_restriction.sh

licess 发表于 2018-12-21 20:13:53

确实漏了反斜杠
页: [1]
查看完整版本: remove_open_basedir_restriction.sh 脚本中少一个斜杠 /