PHP write outside document root

后端 未结 2 2068
伪装坚强ぢ
伪装坚强ぢ 2021-01-24 12:57

I\'m trying to create a file in a directory outside the document root of the web server. The folder has permissions 777 but php says Permission Denied: Warning: fopen(/home/site

相关标签:
2条回答
  • 2021-01-24 13:46

    It sounds like safe mode is on and doc_root has been set. You'll need to set doc_root to empty or turn off safe mode.

    0 讨论(0)
  • 2021-01-24 13:48

    The 777 permissions is half the battle. You will also need to change the group to be www-data (if on debian) using the:

    chgrp g+w www-data /home/growtent/public_html/images

    That "should" work, depending on what system you are running and given that my memory is correct.

    0 讨论(0)
提交回复
热议问题