Closed
Bug 162201
Opened 23 years ago
Closed 22 years ago
npi.nl - Website shows just black screen
Categories
(Tech Evangelism Graveyard :: Dutch, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: marcel_mozilla, Unassigned)
References
()
Details
(Whiteboard: [havefix][havecontact])
Attachments
(1 file)
|
2.96 KB,
text/plain
|
Details |
The website of the National Pop Institute (NPI) just shows an unhelpful black
screen upon entering the site. It seems there is some bad browser checking being
done which leads to nothing. Blah!
The Javascript console says:
Error: document.p has no properties
Source File: http://www.npi.nl/splash.htm
Line: 53
The site works fine in IE6.
Updated•23 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 1•23 years ago
|
||
confirm linux trunk cvs 2002-08-10
fwiw, workaround -> http://www.npi.nl/frames.htm
| Reporter | ||
Comment 2•23 years ago
|
||
If you use the workaround, you won't see the main menu which is supposed to be
left side of the main screen. The menu is at http://www.npi.nl/nav/nav.htm.
Man, how complicated can a website get... Does this site really need so many
redirects and frames ?
Comment 3•23 years ago
|
||
for the splash, heres what they are doing in http://www.npi.nl/splash.htm :
var isNav=(navigator.appName.indexOf("Netscape")!=-1);
if(isNav){ document.p.document.write(aa); document.p.document.close(); }
else p.innerHTML=aa a+=b;
hereis the correct way :
if (document.layers) {document.p.document.write(aa);document.p.document.close();}
else if (document.all) {p.innerHTML=aa a+=b}
else if (document.getElementById('p').innerHTML)
{document.getElementById('p').innerHTML=aa a+=b}
I will see what I can do for the menu.
Comment 4•23 years ago
|
||
if (document.layers) {document.p.document.write(aa);document.p.document.close();}
else if (document.all) {p.innerHTML=aa; a+=b}
else if (document.getElementById('p').innerHTML)
{document.getElementById('p').innerHTML=aa; a+=b}
looks better :)
everything else should work, and with this fixed, the frameset _should_ open.
Whiteboard: [havefix]
Mass updating .nl Tech Evang bugs
contact info : info@npi.nl
Webmaster: Mathijs Brouwer
Whiteboard: [havefix] → [havefix][havecontact]
| Reporter | ||
Comment 6•23 years ago
|
||
I added this reply to remind myself that I already emailed him and that he
already replied. It has been 8 months ago since I sent it and the site still
behaves the exact same way.
Comment 7•23 years ago
|
||
tech evang june 2003 reorg
Assignee: nitot → dutch
Component: Europe: West → Dutch
QA Contact: brantgurganus2001 → dutch
tested with Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b)
Gecko/20031208: still a black screen.
| Reporter | ||
Comment 10•22 years ago
|
||
Just got an email from the webmaster. The latest planning is to have a new
website spring 2004. He's using Firebird now himself, so that should help :-)
| Reporter | ||
Comment 11•22 years ago
|
||
Just visited the website and everything seems to work just fine now. Hooray!
P.S. www.popinstituut.nl is an alias for www.npi.nl
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•