Dieter wrote:# path to the log files from the server root without trailing "/" (chmoded to 777 (drwxrwxrwx))
$base_dir = "http://www.domain.com/logstat/logfiles";
Here is your errored line - it can not be a URL
should look more like (but will depend on your actual webserver setup)
$base_dir = "/home/domain-id/public_html/logstat/logfiles";
That first portion "/home/domain-id/public_html" is called your document_root and an explanation how to find the document_root can be found with a search of this forum.