Error logs and access logs

Hi
Is it possible for a user to read the web server error logs and access logs associated with his/her web pages? I have some awkward web page problems that I need to diagnose.
Thanks.

Welcome

Error messages can be enabled in the control panel, and the messages will be outputted to the screen. Error logs themselves are not available on free hosting.

Note that there may also be built-in error reporting tools (Both the MySQL PDO and cURL libraries have them) that you can use as well.

7 Likes

Thanks for your help.
My problem right now is that I need to check accesses to my web page. Is there any way of checking accesses that have been made to it?
Thanks.

If you have a custom domain, maybe this guide would help:

If not, you would have to log it yourself with PHP and maybe output the results to a file.

6 Likes

Not directly, no.

You can use Logflare with Cloudflare if you have a custom domain (See YT_Xaos’s post), or do a var_dump($_SERVER); into a txt file. Just make sure to remove that line as soon as you are done with it.

6 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.