Debian 9.1 在不工作时将 Chmod 777 设置为 2 个文件

Debian 9.1 Set Chmod 777 to 2 files while it is not working

我正在尝试设置 cryptodice,但要进行设置,我需要 2 个文件 chmod 777!那么,这 2 个文件是:inc/db-conf.phpinc/driver-conf.php!

所以我执行了这个命令:find /CryptoDice -type d -exec chmod 777 {} \; 这应该将目录中的每个文件都设置为 chmod 777。但是当我重新加载页面时。它仍然说它不可写。我该如何解决这个问题?

我知道有那个 chmod 777 不好。我想在安装后再次将其设置为默认值,这样它就会再次安全。

我该如何解决这个问题?

来自以下位置的安装说明:https://github.com/felinegambler/CryptoDice

3) Change to the inc/ directory and change the permissions to 777 (chmod 777 *)

您可以简单地执行以下操作:

$ chmod 777 inc/db-conf.php
$ chmod 777 inc/driver-conf.php