473,396 Members | 1,945 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

code behaves differently on different servers

i have a simple JS window.open function that i'm calling and it works great
here:

http://demo.creationsite.com/GLBC/www/
(click on "virtual tour" in the yellow text link)

- no status bar
- proper title in title bar (same as main window)
now once i transferred this EXACT file (and included JS file) to the live
location (which is with a different hosting provider btw) i have some
issues:

http://www.greatlakesbrewing.com/
(click the same link as before)

- now i get a status bar!
- the title doesn't show up correctly (the URL is automatically displayed in
front of what i have for the title tag)
- do a "view source" and see what i mean

this live site is with MediaTemple btw

anyone ever see this behavior before?

thank you for any help you can provide!

- kevin
Jul 23 '05 #1
5 2175
Lee
CreepieDeCrapper said:

i have a simple JS window.open function that i'm calling and it works great
here:

http://demo.creationsite.com/GLBC/www/
(click on "virtual tour" in the yellow text link)

- no status bar
- proper title in title bar (same as main window)
now once i transferred this EXACT file (and included JS file) to the live
location (which is with a different hosting provider btw) i have some
issues:

http://www.greatlakesbrewing.com/
(click the same link as before)

- now i get a status bar!
- the title doesn't show up correctly (the URL is automatically displayed in
front of what i have for the title tag)
- do a "view source" and see what i mean


I see exactly the same thing at both sites (status bar and URL in title), using
IE6 and Firefox.

Jul 23 '05 #2
first off, thank you for testing

i'm using the same browsers as you (on xp pro) and get different results as
indicated in my first post... not sure why, it's a very odd issue

if you have the time, view source the popup and look at the <title> tag...
notice the URL isn't in there... any ideas here?
"Lee" <RE**************@cox.net> wrote in message
news:d2*********@drn.newsguy.com...
CreepieDeCrapper said:

i have a simple JS window.open function that i'm calling and it works
great
here:

http://demo.creationsite.com/GLBC/www/
(click on "virtual tour" in the yellow text link)

- no status bar
- proper title in title bar (same as main window)
now once i transferred this EXACT file (and included JS file) to the live
location (which is with a different hosting provider btw) i have some
issues:

http://www.greatlakesbrewing.com/
(click the same link as before)

- now i get a status bar!
- the title doesn't show up correctly (the URL is automatically displayed
in
front of what i have for the title tag)
- do a "view source" and see what i mean


I see exactly the same thing at both sites (status bar and URL in title),
using
IE6 and Firefox.

Jul 23 '05 #3
Service Pack 2 for Windows XP changes the behaviour of the various
Security zones in Internet Explorer. demo.creationsite.com is most
likely in your Intranet zone, where Internet Explorer 6.0.2900 does
_not_ add the URL to the titlebar. www.greatlakesbrewing.com is most
likely in your Internet zone, where Internet Explorer 6.0.2900 in it's
default configuration _does_ add the URL to the titlebar.

There is _nothing_ you can do about this, it is a security feature added
to Internet Explorer in Windows XP Service Pack 2 to allow people to see
at a glance that the link they clicked on which opened a new window that
navigated to http://ww**********@somemalicioussite.com is not ebay.com,
but in fact is somemalicioussite.com.

The same information appears in the titlebar of recent Gecko-based
browsers when a new window without an address bar is opened.

I'm sure there is some configuration or registry change an individual
could make that would change this behaviour, but you can't affect that
change from your Web site.

You'll just have to live with it, because the people using your site are
seeing the URL in the titlebar.

"CreepieDeCrapper" <mi*********@yahoo.com> wrote in message
news:PXG4e.286061$FM3.125861@fed1read02...
first off, thank you for testing

i'm using the same browsers as you (on xp pro) and get different
results as indicated in my first post... not sure why, it's a very odd
issue

if you have the time, view source the popup and look at the <title>
tag... notice the URL isn't in there... any ideas here?
"Lee" <RE**************@cox.net> wrote in message
news:d2*********@drn.newsguy.com...
CreepieDeCrapper said:

i have a simple JS window.open function that i'm calling and it works
great
here:

http://demo.creationsite.com/GLBC/www/
(click on "virtual tour" in the yellow text link)

- no status bar
- proper title in title bar (same as main window)
now once i transferred this EXACT file (and included JS file) to the
live
location (which is with a different hosting provider btw) i have some
issues:

http://www.greatlakesbrewing.com/
(click the same link as before)

- now i get a status bar!
- the title doesn't show up correctly (the URL is automatically
displayed in
front of what i have for the title tag)
- do a "view source" and see what i mean


I see exactly the same thing at both sites (status bar and URL in
title), using
IE6 and Firefox.


--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #4
wow, nice catch
that is exactly what is happening :)

any input about the status bar showing up? my code is set to prevent it yet
it still displays... maybe for the same reason the URL is in the title bar
(i.e. zoning security, etc.)
"Grant Wagner" <gw*****@agricoreunited.com> wrote in message
news:he****************@news2.mts.net...
Service Pack 2 for Windows XP changes the behaviour of the various
Security zones in Internet Explorer. demo.creationsite.com is most likely
in your Intranet zone, where Internet Explorer 6.0.2900 does _not_ add the
URL to the titlebar. www.greatlakesbrewing.com is most likely in your
Internet zone, where Internet Explorer 6.0.2900 in it's default
configuration _does_ add the URL to the titlebar.

There is _nothing_ you can do about this, it is a security feature added
to Internet Explorer in Windows XP Service Pack 2 to allow people to see
at a glance that the link they clicked on which opened a new window that
navigated to http://ww**********@somemalicioussite.com is not ebay.com,
but in fact is somemalicioussite.com.

The same information appears in the titlebar of recent Gecko-based
browsers when a new window without an address bar is opened.

I'm sure there is some configuration or registry change an individual
could make that would change this behaviour, but you can't affect that
change from your Web site.

You'll just have to live with it, because the people using your site are
seeing the URL in the titlebar.

"CreepieDeCrapper" <mi*********@yahoo.com> wrote in message
news:PXG4e.286061$FM3.125861@fed1read02...
first off, thank you for testing

i'm using the same browsers as you (on xp pro) and get different results
as indicated in my first post... not sure why, it's a very odd issue

if you have the time, view source the popup and look at the <title>
tag... notice the URL isn't in there... any ideas here?
"Lee" <RE**************@cox.net> wrote in message
news:d2*********@drn.newsguy.com...
CreepieDeCrapper said:

i have a simple JS window.open function that i'm calling and it works
great
here:

http://demo.creationsite.com/GLBC/www/
(click on "virtual tour" in the yellow text link)

- no status bar
- proper title in title bar (same as main window)
now once i transferred this EXACT file (and included JS file) to the
live
location (which is with a different hosting provider btw) i have some
issues:

http://www.greatlakesbrewing.com/
(click the same link as before)

- now i get a status bar!
- the title doesn't show up correctly (the URL is automatically
displayed in
front of what i have for the title tag)
- do a "view source" and see what i mean

I see exactly the same thing at both sites (status bar and URL in
title), using
IE6 and Firefox.


--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq

Jul 23 '05 #5
The status bar appears for the same reason the titlebar has the URL in
it, to prevent a malicious Web site from opening a new window that
pretends to be someone else and tricking the user into doing things they
wouldn't normally do. Again, you have no control over this.

If a user of Internet Explorer 6.0.2900 (comes with Windows XP Service
Pack 2) wishes, they can go to Tools > Internet Options > Security tab >
choose the appropriate zone and click Custom Level... > Miscellaneous >
and uncheck Allow script-initiated windows without size or position
constraints. But you have no way to do that programmatically.

Recent Gecko-based browsers do this as well, and I would imagine that
Opera 8 will do this too (if 7.5 doesn't already do it).

"CreepieDeCrapper" <mi*********@yahoo.com> wrote in message
news:lud5e.27$63.19@fed1read02...
wow, nice catch
that is exactly what is happening :)

any input about the status bar showing up? my code is set to prevent
it yet it still displays... maybe for the same reason the URL is in
the title bar (i.e. zoning security, etc.)
"Grant Wagner" <gw*****@agricoreunited.com> wrote in message
news:he****************@news2.mts.net...
Service Pack 2 for Windows XP changes the behaviour of the various
Security zones in Internet Explorer. demo.creationsite.com is most
likely in your Intranet zone, where Internet Explorer 6.0.2900 does
_not_ add the URL to the titlebar. www.greatlakesbrewing.com is most
likely in your Internet zone, where Internet Explorer 6.0.2900 in
it's default configuration _does_ add the URL to the titlebar.

There is _nothing_ you can do about this, it is a security feature
added to Internet Explorer in Windows XP Service Pack 2 to allow
people to see at a glance that the link they clicked on which opened
a new window that navigated to
http://ww**********@somemalicioussite.com is not ebay.com, but in
fact is somemalicioussite.com.

The same information appears in the titlebar of recent Gecko-based
browsers when a new window without an address bar is opened.

I'm sure there is some configuration or registry change an individual
could make that would change this behaviour, but you can't affect
that change from your Web site.

You'll just have to live with it, because the people using your site
are seeing the URL in the titlebar.

"CreepieDeCrapper" <mi*********@yahoo.com> wrote in message
news:PXG4e.286061$FM3.125861@fed1read02...
first off, thank you for testing

i'm using the same browsers as you (on xp pro) and get different
results as indicated in my first post... not sure why, it's a very
odd issue

if you have the time, view source the popup and look at the <title>
tag... notice the URL isn't in there... any ideas here?
"Lee" <RE**************@cox.net> wrote in message
news:d2*********@drn.newsguy.com...
CreepieDeCrapper said:
>
>i have a simple JS window.open function that i'm calling and it
>works great
>here:
>
>http://demo.creationsite.com/GLBC/www/
>(click on "virtual tour" in the yellow text link)
>
>- no status bar
>- proper title in title bar (same as main window)
>
>
>now once i transferred this EXACT file (and included JS file) to
>the live
>location (which is with a different hosting provider btw) i have
>some
>issues:
>
>http://www.greatlakesbrewing.com/
>(click the same link as before)
>
>- now i get a status bar!
>- the title doesn't show up correctly (the URL is automatically
>displayed in
>front of what i have for the title tag)
>- do a "view source" and see what i mean

I see exactly the same thing at both sites (status bar and URL in
title), using
IE6 and Firefox.

Jul 23 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: BS | last post by:
Hi All, This may be an old question, but there's little useful references online that I've been able to find. I want the following code to display bit by bit, not send all at once to the...
5
by: Scott Matthews | last post by:
I've recently come upon an odd Javascript (and/or browser) behavior, and after hunting around the Web I still can't seem to find an answer. Specifically, I have noticed that the Javascript...
235
by: napi | last post by:
I think you would agree with me that a C compiler that directly produces Java Byte Code to be run on any JVM is something that is missing to software programmers so far. With such a tool one could...
6
by: christian9997 | last post by:
Hi I would be very helpful if someone could help me with this code. It works fine in IE but when I display it in Netscape or Firefox and I move the mouse from one menu to the other the gap...
1
by: Do | last post by:
Hi, Has anyone every had two NET Framework 1.1 Servers that both run the same web application, but the behavior of the forms is different? My form validation behaves differently on two...
15
by: Joe Weinstein | last post by:
Hi. Below is a simple JDBC program to insert and extract a numerical value. When ResultSet.getDouble() is called, the same program produces different output on solaris than it does on Linux. I...
30
by: fritz-bayer | last post by:
Hi, why does the php expression $result = 5543039447 & 2147483648; when executed evaluate to 0, whereas the perl expression $same = 5543039447 & 2147483648 ;
43
by: davidkoree | last post by:
I mean not about cookie. Does it have something to do with operating system or browser plugin? I appreciate any help.
17
by: =?Utf-8?B?U2hhcm9u?= | last post by:
Hi Gurus, I need to transfer a jagged array of byte by reference to unmanaged function, The unmanaged code should changed the values of the array, and when the unmanaged function returns I need...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.