I have been using EasyPHP (Devserver 17.0) for development tests, and I just discovered that the file size of the access.txt has become 6.59 GB. It contains records of every file which was loaded. I don't really want to know what files were loaded. But after I deleted it, it is re-created when the server restarts. Is it possible to prevent the access.txt from being re-created?
What is it in that file? If its access log file then by default it will be recreated when you delete it in the next reboot. The other workaround is you can purge that file in a timely manner or set a task scheduler.
Thank you. I understand. The file contains things like: 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/blank.png HTTP/1.1" 200 227 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/folder.png HTTP/1.1" 200 395 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/php.png HTTP/1.1" 200 757 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/text.png HTTP/1.1" 200 463 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/image.png HTTP/1.1" 200 671 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/zip.png HTTP/1.1" 200 617 127.0.0.1 - - [30/Dec/2018:20:07:38 +0800] "GET /icons/pdf.png HTTP/1.1" 200 799 Code (markup):