Description of my issue:
Today I found out that the File permission of to Akeeba Logfile is set to 666 instead of 644.
I read a lot of posts where you are saying it is a hosting setup. With the hoster, I did some test. We made the following PHP script and run it.
<?php
$file = 'test.txt';
// Append a new person to the file
$current = "TESTFILE\n";
// Write the contents back to the file
file_put_contents($file, $current);
?>
The result of the file was:
-rw-r--r-- 1 test.xxxxx.nl psacln 168 Oct 18 10:52 test.php
-rw-r--r-- 1 test.xxxxx.nl psacln 9 Oct 18 10:58 test.txt
This seems that the server is handling it correctly. What I did:
After the backup, we upload it to a remote FTP Server. I guess this should not impact the log file permission.
Please, advice what to do or where the issue is. Of course, it is not a big issue (it is in a save directory), but it isn't nice.
Best regards,
Arjen Schrijvers