Closed
Bug 14487
Opened 26 years ago
Closed 26 years ago
Profile creation window renders blank
Categories
(Core Graveyard :: Profile: BackEnd, defect, P3)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: dead, Assigned: gayatrib)
Details
When I start up Mozilla with no profile (rm -rf ~/.mozilla), the profile
creation window appears, with the button bars at the top and bottom of the
window, but the actual content area stays blank (gray). This was working ok
yesterday, I believe.
Also, if you close the profile creation window (with the window manager),
apprunner goes ahead and starts... I suppose this is also a bug, but I'm not
sure.
| Reporter | ||
Updated•26 years ago
|
Severity: critical → blocker
| Reporter | ||
Comment 1•26 years ago
|
||
Pinkerton says it's a blocker.
Comment 2•26 years ago
|
||
The second part of your report is already covered by another bug.
Given that you get a profile and can start the app, what exactly makes this a
blocker?
Updated•26 years ago
|
Assignee: selmer → gayatrib
Comment 3•26 years ago
|
||
Gayatri, see if you can figure out where the problem is. Best bet is something
changed underneath us again. Steve
| Reporter | ||
Comment 4•26 years ago
|
||
You don't end up with a profile though, if you close the window to allow the
browser to continue to load. The browser starts up with NO profile directory
created, which seems like it would cause problems in other areas.
You can't just click the Finish button, it says there is not enough information
filled in.
Comment 7•26 years ago
|
||
I managed to make it work by changing, in cpw.js:loadPage()
if (!firstTime) {
saveData();
}
to
if (firstTime == false) {
saveData();
}
for some reason, firstTime is undefined first time through.
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Comment 8•26 years ago
|
||
This failure was because of a JS error. In cpw.js, there was this line:
var wizardMap = new Array("test-content1_1.xul");
which does not work. In fact, it fails, leaving the rest of the globals
uninitialized.
I changed this to
var wizardMap = ["test-content1_1.xul"];
and things work again.
Thanks Simon! Cannot believe how simple js syntax keeps changing.
I was concentrating on hidden form elements, as that was where the
error seemed to be existing.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 10•26 years ago
|
||
build 199092208
Comment 11•26 years ago
|
||
Moving all Profile Manager bugs to new Profile Manager Backend component.
Profile Manager component to be deleted.
Updated•10 years ago
|
Product: Core → Core Graveyard
| Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•