-
Notifications
You must be signed in to change notification settings - Fork 1
Known Issues
The 7.3 update was missing a file. Copy updater/updater.php to update/updater.php if you can not update. (Should be fixed automatically when checking for update)
Update error could not verify action was executed
Change updater.php
else if(action == 'unzipUpdateAndReturnArray')
{
unzipBranch();
}
Change line to
var popupSettingsArray = JSON.parse(<?php echo json_encode($popupSettingsArray) ?>);
in steps 1-3
To fix style display issue in firefox for the main menu, copy the following code into base.css (Fixed in 4.2.3+)
.settingsUlFS
{
width: 200px;
position: absolute;
bottom: 0;
top: 46px;
left: 0;
-webkit-padding-start: 0;
-webkit-margin-before: 0;
-webkit-margin-after: 0;
-moz-padding-start: 0;
-moz-margin-before: 0;
-moz-margin-after: 0;
overflow: auto;
margin: 0;
}
.settingsUlSub
{
width: 200px;
position: absolute;
bottom: 0;
top: 46px;
left: 201;
-webkit-padding-start: 0;
-webkit-margin-before: 0;
-webkit-margin-after: 0;
-moz-padding-start: 0;
-moz-margin-before: 0;
-moz-margin-after: 0;
overflow: auto;
margin: 0;
}
Update issue for betas 4.1, run installUpdates(''); after a check for udpate to trigger update (or refresh page) (4.1.1 beta version is re-download of 4.1 with fix, 4.1.2 beta version is same as 4.1.1 regular)
patch if not on that (in the afterPollFunctionComplete at the end of the if(firstLoad)
var windows = Object.keys(logDisplayArray);
var lengthOfWindows = windows.length;
for(var i = 0; i < lengthOfWindows; i++)
{
if(logDisplayArray[i] !== null)
{
var logsCheck = Object.keys(logs);
var lengthOfLogsCheck = logsCheck.length;
for(var j = 0; j < lengthOfLogsCheck; j++)
{
if(logDisplayArray[i] === logsCheck[j])
{
document.getElementById("log"+i+"Td").scrollTop = $("#log"+i).outerHeight();
}
}
}
}
Javascript errors when adding / removing lines in watchlist
~Solution:
Edit after setup, in settings > main > watchlist
Warning: require_once(../../../local/default/conf/config.php): failed to open stream: No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/Log-Hog/core/php/template/upgradeLayout.php on line 18
Fatal error: require_once(): Failed opening required '../../../local/default/conf/config.php' (include_path='.:/Applications/XAMPP/xamppfiles/lib/php') in /Applications/XAMPP/xamppfiles/htdocs/Log-Hog/core/php/template/upgradeLayout.php on line 18
Solution:
- Copy core/conf/config.php to local/default/conf/config.php
- rename $defaultConfig to $config