Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

why am i getting this loop

Status
Not open for further replies.

eyec

Technical User
Aug 20, 2004
1,493
US
Code:
<script language='javascript' src='[URL unfurl="true"]http://127.0.0.1:1032/js.cgi?pcaw&r=24464'></script>[/URL]

i only see this on one pc when i view the source of the webpage. i do not see it on my other pc on the same home network.
 
You are calling the external script incorrectly.
Code:
<script type="text/javascript" src="[URL unfurl="true"]http://127.0.0.1:1032/js.cgi?pcaw&r=24464"></script>[/URL]

M. Brooks
 
The way you're including the script file should be fine - it's just slightly older syntax, but should be recognised by all browsers.

It's proabably something in the script file that is causing the loop. Can you post the contents?

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
after doing a little more looking at other sites, it seems i get this from a multitude of sites. i even get this loop script from my verizon dsl start page as well as this webpage!

i am starting to wonder if my machine java settings are not set correctly.
 
Sounds like a new technology I heard of. I think they call it a "Virus" ;-)


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
127.0.0.1
isn't that a loop ip to nowhere?

i first thought it may be a virus but have checked my box with a bunch of virus & spyware checkers & not found anything.
 
more specifically
127.0.0.1 is the standard IP address used for a loopback network connection.


This means that if you try to connect to 127.0.0.1, you are immediately looped back to your own machine.

If you telnet, ftp, etc... to 127.0.0.1, you are connected to your own machine.

In other words, 127.0.0.1 is you.

 
127.0.0.1 means self, and refers to whatever computer is being used at the time. That's what the quote you provided says in the last line. The script tag you showed in your original post refers to a CGI script (usually Perl) on whatever computer the page is viewed on, and if you don't have the scripting engine installed or the script on your computer's web server (you DO have a web server running on the computer you're trying to view this, right?), it won't do anything, and any references to functions or data in the script will cause an error.

Lee
 
no, i do not have a web server running on my home machine.

i just cut this from the View Source for this webpage
Code:
<script language='javascript' src='[URL unfurl="true"]http://127.0.0.1:1032/js.cgi?a&r=2995'></script>[/URL]

this page runs fine even with this line in it. if you do the same i bet you will not see this line of code! however, some other pages i get this on do not initialize some java applets now.

this problem just surfaced in the last week. have not had this problem before then. am now looking at it as a non-java issue - something else?

any suggestions appreciated, but i am going to try the Virus forum.

thanks to all.
 
running XPsp2, IE7rc1, ZA, AVG, SpyBot, Defender, with couple more tools in hand.

have disabled the RSS & Phishing options in IE7, using the popup blocker.

have scanned with Panda Active scan & AuditMyPC.

running latest version of Java.

no toolbar add-ons.

HiJackThis shows nothing unknown. no alarms in ZA or Event Viewer.
 
Has IE7 left beta yet?

Even if I missed the final release I wouldn't use it as a reliable and stable browser yet


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
other machine here is ME & my laptops are W2K & XP Pro sp2 all running IE6 & none of them are having these occurances!

IE7 is in Release Candidate 1. word is the official release will be later this month or early November.

really appreciate you guys help.


 
self said:
Do you have any internet security software installed? ... They are the most likely cause

eyec said:
running ... ZA, AVG, SpyBot, Defender, with couple more tools in hand

So try uninstalling them - any of them could be doing this. My money is on ZA, but it could be any of them.

Dan

Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
yes, Zone Alarm seems to be the culprit
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top