Closed
Bug 290202
Opened 20 years ago
Closed 20 years ago
Unable to leave Developers and come back in
Categories
(addons.mozilla.org Graveyard :: Developer Pages, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
1.0
People
(Reporter: Bugzilla-alanjstrBugs, Assigned: morgamic)
Details
Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked. Go to /developers Log in Click Firefox: Extensions at the top Click Developers link at the top Page fails to load
This has something to do with developers/index.php because I can jump back to developers/main.php without a problem.
| Assignee | ||
Comment 3•20 years ago
|
||
this was an incorrect path. this has been fixed:
Index: developers/index.php
===================================================================
RCS file: /cvsroot/mozilla/webtools/update/developers/index.php,v
retrieving revision 1.4.2.4
diff -u -p -8 -r1.4.2.4 index.php
--- developers/index.php 5 Apr 2005 04:47:09 -0000 1.4.2.4
+++ developers/index.php 14 Apr 2005 05:44:37 -0000
@@ -1,19 +1,19 @@
<?php
require_once('../core/init.php');
require_once('./core/sessionconfig.php');
//If already logged in, we don't need to show the prompt... redirect the user in.
if ($_SESSION["logoncheck"]=="YES") {
-header('Location: https://'.HOST_NAME.WEB_PATH.'/developers/');
+header('Location: https://'.HOST_NAME.WEB_PATH.'/developers/main.php');
exit;
}
$page_headers = '<link rel="stylesheet" type="text/css"
- href="/admin/core/mozupdates.css">';
+ href="'.WEB_PATH.'/admin/core/mozupdates.css">';
$page_title = 'Mozilla Update :: Developer Control Panel';
require_once(HEADER);
?>
<hr class="hide">
<div id="mBody">
<div id="mainContent" class="right">
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 4•20 years ago
|
||
I'm going to take out the line references the non-existent stylesheet.
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•