EQ2Interface

EQ2Interface (https://www.eq2interface.com/forums/index.php)
-   ProfitUI (https://www.eq2interface.com/forums/forumdisplay.php?f=41)
-   -   My problem with running the updater. (https://www.eq2interface.com/forums/showthread.php?t=11285)

alicelovesbob 07-13-2008 09:10 AM

My problem with running the updater.
 
I'm having a problem running the updater. I have installed java 6 but it will not work. Here is what it tells me when I try to run the updater:

<!-- NdxICC, languageOption=0, charsetOption=0 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<SCRIPT Language="JavaScript">
var usgDebugOn = false;
var iccConsoleOption = 0;
var iccLocation = 0;
</SCRIPT>
<!-- ************************ -->
<!-- * NdxICC.htm * -->
<!-- ************************ -->
<!-- * 2005-12-22 BPHolmen * -->
<!-- ************************ -->

<Script Language='JavaScript'>
var jsVersion = 1.0;
</Script>
<Script Language='JavaScript1.1'>
var jsVersion = 1.1;
</Script>
<Script Language='JavaScript1.2'>
var jsVersion = 1.2;
</Script>
<Script Language='JavaScript1.3'>
var jsVersion = 1.3;
</Script>

<Head>
<Title>Launch the Nomdadix Console</Title>
</Head>

<Script Language='JavaScript'>
if (usgDebugOn) alert('NdxICC...');
if (usgDebugOn) alert('jsVersion='+jsVersion);

window.name = '_NdxBrowser';

var docURL = window.location.href;
if (usgDebugOn) alert(docURL);

var x1 = 0;
var x2 = 0;

// IP = USG IP Address ...
var strIP = '';
x1 = docURL.indexOf('IP=',x1);
if (x1 > 0)
{
x1 += 3;
x2 = docURL.indexOf('&',x1);
if (x2 < 1) { x2 = docURL.length; }
strIP = unescape(docURL.substring(x1,x2));
}
if (usgDebugOn) alert('strIP='+strIP);

// MA = MAC Address ...
var strMA = '';
x1 = docURL.indexOf('MA=',x1);
if (x1 > 0)
{
x1 += 3;
x2 = docURL.indexOf('&',x1);
if (x2 < 1) { x2 = docURL.length; }
strMA = unescape(docURL.substring(x1,x2));
}
if (usgDebugOn) alert('strMA='+strMA);

// OS = Origin Server
var strOS = '';
x1 = docURL.indexOf('OS=',x1);
if (x1 > 0)
{
x1 += 3;
x2 = docURL.indexOf('&',x1);
if (x2 < 1) { x2 = docURL.length; }
strOS = unescape(docURL.substring(x1,x2));
if (strOS.substring(0,7) != 'http://')
{
strOS = 'http://' + strOS;
}
} else {
x1 = 0;
}
if (usgDebugOn) alert('strOS='+strOS);

// are we running on MSIE? if so, what version?
var appVersion = 0;
var idxMSIE = navigator.userAgent.indexOf('MSIE');
if (0 <= idxMSIE)
{
var idxChr1 = navigator.userAgent.indexOf(' ',idxMSIE+1);
var idxChr2 = navigator.userAgent.indexOf(';',idxChr1+1);
if (idxMSIE < idxChr1 && idxChr1 < idxChr2)
{
appVersion = navigator.userAgent.substring(idxChr1+1,idxChr2) - 0;
}
}

var defaultWidth = 0;
var defaultHeight = 0;

if (iccConsoleOption == 0)
{ // ICC
if (0 < appVersion && appVersion < 6)
{ // MSEI 5.x?
defaultWidth = 480;
defaultHeight = 180;
} else {
defaultWidth = 420;
defaultHeight = 180;
}
} else { // LC
if (0 < appVersion && appVersion < 6)
{ // MSEI 5.x?
defaultWidth = 275;
defaultHeight = 65;
} else {
defaultWidth = 240;
defaultHeight = 60;
}
}

if (usgDebugOn) {
defaultHeight *= 2;
}


// WinCE screen size = 240x320
var scrWidth = 240;
var scrHeight = 320;

if ((jsVersion >= 1.2) && (screen != null))
{
if (screen.width > 0 && screen.height > 0)
{
scrWidth = screen.width;
scrHeight = screen.height;
}
}

// allow for scroll bar
scrWidth -= 20;

if (usgDebugOn) alert('Screen=(' + scrWidth + 'x' + scrHeight + ')');

var winWidth;
var winHeight;

if (defaultWidth < scrWidth)
{ // rectangle, for wide screens
winWidth = defaultWidth;
winHeight = defaultHeight;
}
else
{ // square, for small screens
winWidth = scrWidth;
winHeight = scrWidth;
}

if (usgDebugOn) alert('NdxICC.winWidth = '+winWidth);
if (usgDebugOn) alert('NdxICC.winHeight = '+winHeight);

var winFeat = 'Resizable=no,Scrollbars=no,Status=no,Toolbar=no';
winFeat += (',Width=' + winWidth + ',Height=' + winHeight);

// Window Position ...
// ... Upper Left (default)
var vLeft = 0;
var vTop = 0;
if (iccConsoleOption != 0)
{ // Logout Popup
switch (iccLocation)
{
case 0:
// Upper Left
break;
case 1:
// Upper Right
vLeft = (scrWidth - winWidth);
break;
case 2:
// Lower Left
vTop = (scrHeight - winHeight);
break;
case 3:
// Lower Right
vLeft = (scrWidth - winWidth);
vTop = (scrHeight - winHeight);
break;
default:
break;
}
// allow room for status bar at bottom of screen
vTop -= 65;
}
// ... Sanity check
vLeft = (vLeft < 0) ? 0 : vLeft;
vTop = (vTop < 0) ? 0 : vTop;
// ... Window Position
winFeat += (',Left=' + vLeft + ',Top=' + vTop);

winHREF = ('http://' + strIP + ':2111/usg/NdxBegin.htm');
winHREF += ('?IP=' + escape(strIP));
winHREF += ('&MA=' + escape(strMA));
winHREF += ('&OS=' + escape(strOS));
winHREF += ('&width=' + winWidth);
winHREF += ('&height=' + winHeight);

if (navigator.userAgent.indexOf('Windows CE') < 0)
{
if (usgDebugOn) alert('NOT Windows CE');
window.open(winHREF,'_NdxICC',winFeat);
}
else
{
if (usgDebugOn) alert('Windows CE');
window.location.replace(winHREF);
}
</Script>

<Body onLoad='window.open(strOS,"_NdxBrowser");'>
<Script Language='JavaScript'>
document.writeln('<' + 'Img Src="http://' + strIP + ':3111/Nomadix.bmp">');
</Script>
</Body>

<!-- ************************ -->
<!-- * eof: NdxICC.htm * -->
<!-- ************************ -->

It seems to be quite a huge problem....please help if you can.

Kaldran 07-13-2008 09:28 AM

Thats for sure not an error message the updater would create by itself. Are you accessing the internet via a Wi-Fi HotSpot or any other access gateway? If so, maybe try to surf some websites before launching the updater.

alicelovesbob 07-13-2008 09:36 AM

We have wireless high-speed internet at our house. I can browse the web just fine, but for some reason it does not seem to like the newest version of java on my computer. My husbands works fine and he is using the same things that I downloaded. He is quite computer savvy but he can't figure out why it is not working either.

tknarr 07-13-2008 10:07 AM

That page appears to be the page brought up by the Nomadix wireless-access "solution" favored by the hotel industry and others. I've never seen it come up from a normal WAP, but if the wireless is your actual connection to your ISP they may be using it. My experience is that it interferes severely with any Internet access that isn't an actual browser visiting Web pages. In particular it redirects all Web access to it's own console page (and blocks all non-Web access) until you've logged in, and requires that window to handle Javascript and be open at all times to maintain Internet connectivity.

The problem here isn't in the updater, I'm afraid.

Kaldran 07-13-2008 10:24 AM

If you used the old updater before you could try to reset all settings bei using the "Reset all settings" option in the "Settings" menu. The updater starts using standard http ports by then which may fix it.

alicelovesbob 07-13-2008 12:23 PM

I have not used any updater for it before. I just installed the new ui yesterday.

alicelovesbob 07-13-2008 12:24 PM

Quote:

Originally Posted by tknarr (Post 74219)
That page appears to be the page brought up by the Nomadix wireless-access "solution" favored by the hotel industry and others. I've never seen it come up from a normal WAP, but if the wireless is your actual connection to your ISP they may be using it. My experience is that it interferes severely with any Internet access that isn't an actual browser visiting Web pages. In particular it redirects all Web access to it's own console page (and blocks all non-Web access) until you've logged in, and requires that window to handle Javascript and be open at all times to maintain Internet connectivity.

The problem here isn't in the updater, I'm afraid.

But my husband is on the same internet connection that I am and he didn't have any problem whatsoever.


All times are GMT -5. The time now is 08:57 PM.

vBulletin® - Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
© MMOUI