Skip to content
Matt Reishman edited this page Jun 5, 2019 · 15 revisions

7.3

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)

5.0.6? / 5.0 beta 1/2? (Fixed in 5.0.8 & 5.1 beta 3)

Update error could not verify action was executed

Change updater.php

else if(action == 'unzipUpdateAndReturnArray')
{
	unzipBranch();
}

-- 4.1.1 Error in setup, fixed in 4.1.1.1 (Non auto update) & 4.2.4 (Auto update)

Change line to

var popupSettingsArray = JSON.parse(<?php echo json_encode($popupSettingsArray) ?>);

in steps 1-3

4.0 - 4.2.2 Firefox

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;
}



4.1 Betas

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)

Scroll on load for first log, fixed in 3.5

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();
					}
				}
			}
		}

Possible setup error in 3.0 / 3.1 Beta 4 / 3.2 Alpha 4 (Fixed in 3.1 Beta 5 / 3.2 Beta)

Javascript errors when adding / removing lines in watchlist

~Solution:

Edit after setup, in settings > main > watchlist

Possible setup error in 2.3.5 (Fixed in v2.3e):

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:

  1. Copy core/conf/config.php to local/default/conf/config.php
  2. rename $defaultConfig to $config