Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我更改了包含动态类的文件中的某些内容时,从数据库中调用了该类的名称。它在本地服务器上工作正常,但在我更改文件名并再次上传之前,它不会在实时服务器上更新。
任何人都可以是什么原因,为什么会发生这种情况。
这可能是写权限问题,
服务器上的文件必须归 Apache 所有。
如果不是,那么由于权限问题,这可能会发生。
(1) 允许 Apache 访问文件夹和文件。
sudo chgrp -R www-data {Path} sudo find {Path} -type d -exec chmod g+rx {} + sudo find {Path} -type f -exec chmod g+r {} +