Closed
Bug 228089
Opened 21 years ago
Closed 21 years ago
startup page redirects too quickly
Categories
(www.mozilla.org :: General, defect)
Tracking
(Not tracked)
VERIFIED
WONTFIX
People
(Reporter: phr-mozilla, Assigned: gerv)
References
()
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031007
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.5) Gecko/20031007
I download and install mozilla 1.5. The first time I launch it after
installation, it comes up showing a screen that says something like "your
version of mozilla is more than 4 weeks old, please upgrade". I can't tell what
else it says because that screen goes away in about 3 seconds and the browser
points to a mozilla.org page. The message is pretty stupid anyway, since I just
downloaded the browser so it must be current. Running my existing Mozilla 1.2.1
instance and then running 1.5 again brings up the same "your version is > 4
weeks old" screen. But that screen is seen only the first time I run 1.5 after
installation or after running 1.2.1.
Reproducible: Always
Steps to Reproduce:
1. Install Mozilla 1.5 or run an older version for a moment
2. Start up 1.5
3.
Actual Results:
"Your version of mozilla is > 4 weeks old" screen appears and disappears.
Expected Results:
Either that screen should not be shown, or else it should stay displayed until
the user clicks on a link or button to make it go away. It should not disappear
all by itself.
Comment 1•21 years ago
|
||
Sounds like a mozilla.org bug....
Assignee: general → endico
Component: Browser-General → webmaster@mozilla.org
Product: Browser → mozilla.org
QA Contact: general → imajes
Version: Trunk → other
Comment 2•21 years ago
|
||
Changing fields. Can't confirm--you have a slow connection reporter?
Summary: startup screen disappears too fast → startup page redirects too quickly
Updated•21 years ago
|
QA Contact: imajes → stolenclover
Updated•21 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 4•21 years ago
|
||
The redirect is supposed to be fast - 1.5 doesn't have a special start page set,
so we have to do a redirect from the standard start page. It happens as fast as
we can make it happen, I'm afraid.
Gerv
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → WONTFIX
Comment 5•21 years ago
|
||
Actually, that wasn't quite true, because it was being done at the javascript
level from within that page after it loaded (telling the browser to redirect).
It's now doing it as a server-side redirect directly from Apache. So now the
original start page will never even get served if the user is accessing from 1.4
or 1.5.
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/5.0.\(.*;.rv:1\.4\).Gecko
RewriteRule ^/start/$ /start/1.4/ [R]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/5.0.\(.*;.rv:1\.5\).Gecko
RewriteRule ^/start/$ /start/1.5/ [R]
| Assignee | ||
Comment 7•21 years ago
|
||
Nice :-) I'll remove the JS-based redirect.
We may want such a redirect for 1.6 when it comes out. Dave: is this redirect
.htaccess-based, and so available for editing from a CVS checkout of the
webtree? Or would you have to add it?
Gerv
Comment 8•21 years ago
|
||
right now I'd have to add it. It *could* be done from .htaccess however. We
may have to fiddle with the config to get it to allow you to, but no reason we
can't do that. Why don't you try that for the 1.6 one, take one of those
rulesets above, modify it for 1.6 and drop it in the .htaccess file, and we'll
see what we have to do to make it work. Once it does, we can take the 1.4 and
1.5 out of the httpd.conf and put them in the .htaccess.
Updated•17 years ago
|
Product: mozilla.org → Websites
Updated•13 years ago
|
Component: www.mozilla.org → General
Product: Websites → www.mozilla.org
You need to log in
before you can comment on or make changes to this bug.
Description
•