【无标题】finalshell 上传php文件,出现500错误的问题

finalshell 上传php文件,运行时出现500错误的问题
多方查找发现是因为上传后文件的权限不够
上传后的权限

rz -y

ls -ll
-rw------- 1 root root       6 17:38 b.php


修改文件权限就可以正常执行了

chmod +r b.php 或者  chmod +w b.php

finalshell 没有找到如何在上传修改文件权限的设置。


使用xshell上传d.php文件后的权限

rz -y
ls -ll
-rw-r--r-- 1 root root      6 17:39 d.php


可以正常执行

b.php  d.php的内容

<?php
phpinfo();
?>