EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Featured Projects > ProfitUI

Reply
Thread Tools Search this Thread Display Modes
  #1  
Unread 07-13-2008, 09:10 AM
alicelovesbob's Avatar
alicelovesbob alicelovesbob is offline
A Young Mystail Rat
 
Join Date: Jul 2008
Server: Blackburrow
Posts: 4
Default 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.
Reply With Quote
  #2  
Unread 07-13-2008, 09:28 AM
Kaldran Kaldran is offline
A Griffon
 
Join Date: Nov 2004
Server: Valor
Posts: 358
Default

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.
Reply With Quote
  #3  
Unread 07-13-2008, 09:36 AM
alicelovesbob's Avatar
alicelovesbob alicelovesbob is offline
A Young Mystail Rat
 
Join Date: Jul 2008
Server: Blackburrow
Posts: 4
Default

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.
Reply With Quote
  #4  
Unread 07-13-2008, 10:07 AM
tknarr's Avatar
tknarr tknarr is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Jul 2006
Server: Unrest
Posts: 849
Default

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.
Reply With Quote
  #5  
Unread 07-13-2008, 10:24 AM
Kaldran Kaldran is offline
A Griffon
 
Join Date: Nov 2004
Server: Valor
Posts: 358
Default

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.
Reply With Quote
  #6  
Unread 07-13-2008, 12:23 PM
alicelovesbob's Avatar
alicelovesbob alicelovesbob is offline
A Young Mystail Rat
 
Join Date: Jul 2008
Server: Blackburrow
Posts: 4
Default

I have not used any updater for it before. I just installed the new ui yesterday.
__________________
Reply With Quote
  #7  
Unread 07-13-2008, 12:24 PM
alicelovesbob's Avatar
alicelovesbob alicelovesbob is offline
A Young Mystail Rat
 
Join Date: Jul 2008
Server: Blackburrow
Posts: 4
Default

Quote:
Originally Posted by tknarr View Post
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.
__________________
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -5. The time now is 03:53 AM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI