Distro 099 Bugs

Archive of posts related to former distro versions. Be aware that posts here do not refer to the current distro and may not work.
Locked
RusseL
Forum Regular
Posts: 375
Joined: Fri Feb 20, 2009 8:30 pm

Distro 099 Bugs

Post by RusseL »

\pkg\systems\accounts\acctwatcher\acctWatcher.src

line 40:

Code: Select all

	if( !last_used )
		ReportText( "Account ("+account.name+") has no last login time. It has been set now though.", REPORT_SYSLOG );
		ACCT_SetLastLogin(account);
      last_used := ACCT_GetLastLogin( account );  // fix. Update last_used variable
	endif
pkg\utils\polmanager\commands\gm\serverstats.src
line 21:

Code: Select all

return OpenBrowser( mobile, "http://"+SHARD_IP+":"+SHARD_WWWPORT+"/pkg/POLManager/index.ecl" );  //fix. wrong path
i had more, but forgotten. I'll update my topic.
RusseL
Forum Regular
Posts: 375
Joined: Fri Feb 20, 2009 8:30 pm

Re: Distro 099 Bugs

Post by RusseL »

Another bug in POLManager:

recorder/recBandwidth:

Code: Select all

SetGlobalProperty("#:fsmanager:bandwidth", results);
and in www/bandwidth wrong prop name

Code: Select all

var gprop := GetGlobalProperty("#:servmgmt:bandwidth");
Locked