Thread: "Whoops!"
View Single Post
  #1  
Old 06-13-2005, 04:53 PM
Draknek's Avatar
Draknek Draknek is offline
Cursory
Member
 
Join Date: Mar 2003
Location: Bristol, England
Posts: 165
Send a message via MSN to Draknek
Default "Whoops!"

I decided it would make more sense to have a thread in here for posting site problems, rather than continuing to clutter the update threads.

If you click on the latest addition link on the Doctor Who page, it might crash your browser. Certainly crashed mine both times I tried. The cause is an infinite loop in the PHP code. From the errors, I'm guessing you're doing something like this:
Code:
$handler = fopen($file);
// Read from $handler
When you want to do something like this:
Code:
if ($handler = fopen($file))
{
// Read from $handler
}
else
{
// Give error
}
Also, on all the doctor who fivers, the main top image disappears onmouseover, and doesn't come back. That image is broken on the all seasons page, too, but that seems to be because it's looking for a png while the 5MDW image is a gif.

Finally, I noticed that the Sci-fivers page is out of date. Only one of the recent smallville fivers is there, and the DW fivers are still listed there.

__________________
Self-referential sigs do not a humourous poster make.
Reply With Quote