Hi Belletage,
You are right, it's a bug. I did not know it.
If you delete guestbook.log first, then you can not recover the log from backup. Logs are not shown, but logs are in folder.
To fix it, you must replace the following in line 202 to 204:
by:
The log of comments is saved in data/other/logs/guestbook.log
Backups of logs are saved in data/other/logs/guestbook_bak
Files
Regards.
PD:i will upload to extend a new version with it fixed.
You are right, it's a bug. I did not know it.
If you delete guestbook.log first, then you can not recover the log from backup. Logs are not shown, but logs are in folder.
To fix it, you must replace the following in line 202 to 204:
Code:
else{ //If file does not exist
echo '<label>'.$i18n['MISSING_FILE'].':‘<em><?php echo @$log_name; ?></em>’</label>';
}
by:
Code:
else{ //If file does not exist
//backups
if (@$_GET['action'] == 'backup') {
include 'guestbook/backup.php';
} else {
echo '<label>'.$i18n['MISSING_FILE'].':‘<em><?php echo @$log_name; ?></em>’</label>';
}
}
The log of comments is saved in data/other/logs/guestbook.log
Backups of logs are saved in data/other/logs/guestbook_bak
Files
Quote:six files became saved:are pages of getsimple.
----------------------
stylesheet.txt
pages.xml*
guest-cumbe.xml*
guestbook-belle.bak.xml
guestbook-cumbe.bak.xml*
sitemap.xml*
----------------------
Regards.
PD:i will upload to extend a new version with it fixed.