PHP create text file on server

前端 未结 2 1907
囚心锁ツ
囚心锁ツ 2021-01-29 03:52

In my php application i want to create a error log in a text format so tried like this its working fine in my local machine

if(!$mail->Send())
{
 echo \"Mess         


        
2条回答
  •  心在旅途
    2021-01-29 04:27

    You have to make sure that:

    • the folder /lib exists in the document root
    • the webserver process has permission to write to that folder.

    If you create the folder with your ftp account, the webserver process will have no access. You can set permissions to 777, but then everyone has access. Best would be to set permission to 770 and make the group of the folder the webserver group id.

提交回复
热议问题