Home News Reviews Forums Shop


Runtime error since forum upgrade?

What was that?

Runtime error since forum upgrade?

Postby VEFF on Mon May 12, 2003 1:28 pm

I am not sure if I am alone, but I am getting runtime errors on every page while browsing the forums.
Is this an issue due to the upgrade that was just performed?

I am using IE 5.0 at work. Will try at home tonight (I have IE 6) .
Thanks!
Burners only:
Pioneer DVR-115D
Pioneer DVR-111D
Plextor PX-716A TLA0304
Plextor PX-716A same TLA

LiteOn 52246S 52X CD-RW
LiteOn 52246S (another)
LiteOn 52327S 52X CD-RW
TDK 40X USB 2.0 CD-RW
TEAC CD-W540E 40X CD-RW
User avatar
VEFF
CD-RW Player
 
Posts: 2025
Joined: Tue Jan 15, 2002 9:36 pm

Postby Ian on Mon May 12, 2003 1:56 pm

Working fine for me under XP with IE 6.0
"Blu-ray is just a bag of hurt." - Steve Jobs
User avatar
Ian
Grand Poobah
 
Posts: 15127
Joined: Sun Apr 08, 2001 2:34 pm
Location: Madison, WI

Postby CDRecorder on Mon May 12, 2003 2:32 pm

I have IE6 on WinXP, and it works fine for me, too.
CDRecorder
CD-RW Recorder
 
Posts: 2335
Joined: Tue Apr 01, 2003 9:28 pm

Postby Dan on Mon May 12, 2003 4:35 pm

Windows 2000 Pro, IE 6.0
I'm getting the runtime error messages as well. Not on everypage though.

I think it has to do with the ads =/
User avatar
Dan
CD-RW Thug
 
Posts: 61
Joined: Sun Apr 08, 2001 2:34 pm
Location: Toronto

Postby dolphinius_rex on Mon May 12, 2003 5:32 pm

yeah, I'm recieving errors too.

I'm running Win2K and IE 6.0

according to IE, it's a syntax error on Line 225, Char 1 (code: 0)

hope that helps :D
Punch Cards -> Paper Tape -> Tape Drive -> 8" Floppy Diskette -> 5 1/4" Floppy Diskette -> 3 1/2" "Flippy" Diskette -> CD-R -> DVD±R -> BD-R

The Progression of Computer Media
User avatar
dolphinius_rex
CD-RW Player
 
Posts: 6923
Joined: Fri Jan 31, 2003 6:14 pm
Location: Vancouver B.C. Canada

Yeah, I'm getting those too.

Postby Turkeyscore.com on Mon May 12, 2003 6:50 pm

Yeah, I'm getting those too, but on line 225
zzzt *pop*
User avatar
Turkeyscore.com
CD-RW Player
 
Posts: 570
Joined: Sun Feb 16, 2003 10:45 pm
Location: Refrigerator

Postby dodecahedron on Mon May 12, 2003 8:26 pm

yes, i'm getting a Runtime Error on every page load/refresh too.
"Error: Syntax Error on line 224". or 245. or 246.

WinXP, no SP1, IE6
Last edited by dodecahedron on Tue May 13, 2003 6:51 am, edited 1 time in total.
One Ring to rule them all, One Ring to find them,
One Ring to bring them all and in the darkness bind them
In the land of Mordor, where the Shadows lie
-- JRRT
M.C. Escher - Reptilien
User avatar
dodecahedron
DVD Polygon
 
Posts: 6865
Joined: Sat Mar 09, 2002 12:04 am
Location: Israel

Postby David on Tue May 13, 2003 1:03 am

I'm getting the error also.
Running 98SE IE6.0
Syntax Error on line 225, 230, 246.
David
CD-RW Player
 
Posts: 415
Joined: Fri Apr 04, 2003 11:08 pm
Location: Mali

Postby CDRecorder on Tue May 13, 2003 1:43 am

I logged in on my old Win98 box with IE6 SP1, and I am not getting the errors. I wonder if there is a bug or strange setting on some computers which causes this error. Or could it be that ad-blocking or cookie-blocking software is causing errors?
CDRecorder
CD-RW Recorder
 
Posts: 2335
Joined: Tue Apr 01, 2003 9:28 pm

Postby MediumRare on Tue May 13, 2003 6:07 am

I'm getting these at work now- IE 6, NT4 SP6, but only when I'm logged in, and then each time I change pages. At home I use Opera 7, Win 95A and have no RT errors.

G
User avatar
MediumRare
CD-RW Translator
 
Posts: 1768
Joined: Sun Jan 19, 2003 3:08 pm
Location: ffm

Postby cfitz on Tue May 13, 2003 9:16 am

Alright, that's enough of this already! :wink:

The error is caused because the script for the FastClick pop-under window ( :evil: ) is being inserted within the script block for the private message pop-up window, causing a mismatch of <script></script> tags:

This is how it is:

Code: Select all
<script language="Javascript" type="text/javascript">
<!--
   if ( 0 )
   {
      window.open('privmsg.php?mode=newpm', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
   }
//-->
<!-- FASTCLICK.COM POP-UNDER CODE v1.6 for cdrlabs.com -->
<script language="javascript"><!--
var doc=document;  var url=escape(doc.location.href); var date_ob=new Date();
doc.cookie='h2=o; path=/;';var bust=date_ob.getSeconds();
if(doc.cookie.indexOf('e=llo') <= 0 && doc.cookie.indexOf('2=o') > 0){
doc.write('<scr'+'ipt language="javascript" src="http://media.fastclick.net');
doc.write('/w/pop.cgi?sid=2673&m=2&v=1.6&u='+url+'&c='+bust+'"></scr'+'ipt>');
doc.cookie='he=llo; path=/;';} // -->
</script>
<!-- FASTCLICK.COM POP-UNDER CODE v1.6 for cdrlabs.com -->

</script>


This is how it should be:

Code: Select all
<script language="Javascript" type="text/javascript">
<!--
   if ( 0 )
   {
      window.open('privmsg.php?mode=newpm', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
   }
//-->
</script>

<!-- FASTCLICK.COM POP-UNDER CODE v1.6 for cdrlabs.com -->
<script language="javascript"><!--
var doc=document;  var url=escape(doc.location.href); var date_ob=new Date();
doc.cookie='h2=o; path=/;';var bust=date_ob.getSeconds();
if(doc.cookie.indexOf('e=llo') <= 0 && doc.cookie.indexOf('2=o') > 0){
doc.write('<scr'+'ipt language="javascript" src="http://media.fastclick.net');
doc.write('/w/pop.cgi?sid=2673&m=2&v=1.6&u='+url+'&c='+bust+'"></scr'+'ipt>');
doc.cookie='he=llo; path=/;';} // -->
</script>
<!-- FASTCLICK.COM POP-UNDER CODE v1.6 for cdrlabs.com -->


While we wait for Socheat to work his magic and fix this, the rest of us can eliminate the annoying "Syntax error" messages by unchecking either of these two checkboxes:

Image

Image

I normally disable reporting of script errors (there are too many buggy scripts out there), so I wasn't getting the message all of you were reporting. But I finally decided to temporarily re-enable it to see what all the fuss was about.

cfitz
cfitz
CD-RW Curmudgeon
 
Posts: 4572
Joined: Sat Jul 27, 2002 10:44 am

Postby Ian on Tue May 13, 2003 10:33 am

OK, that should be fixed now.
"Blu-ray is just a bag of hurt." - Steve Jobs
User avatar
Ian
Grand Poobah
 
Posts: 15127
Joined: Sun Apr 08, 2001 2:34 pm
Location: Madison, WI

Postby dolphinius_rex on Tue May 13, 2003 10:37 am

so far so good on this end! :D
Punch Cards -> Paper Tape -> Tape Drive -> 8" Floppy Diskette -> 5 1/4" Floppy Diskette -> 3 1/2" "Flippy" Diskette -> CD-R -> DVD±R -> BD-R

The Progression of Computer Media
User avatar
dolphinius_rex
CD-RW Player
 
Posts: 6923
Joined: Fri Jan 31, 2003 6:14 pm
Location: Vancouver B.C. Canada

Postby cfitz on Tue May 13, 2003 10:55 am

The fixed code looks fine.

cfitz
cfitz
CD-RW Curmudgeon
 
Posts: 4572
Joined: Sat Jul 27, 2002 10:44 am

Postby Dartman on Tue May 13, 2003 11:10 am

I turned off the script error thing after I tried it on and it drove me nuts on almost every site I visited :) I also have blocked most of the anoying pop ups and disabled windows messenger, helps a lot.
User avatar
Dartman
CD-RW Player
 
Posts: 1602
Joined: Sun May 26, 2002 2:13 pm
Location: USA


Return to Rants n' Raves

Who is online

Users browsing this forum: No registered users and 0 guests

cron
All Content is Copyright (c) 2001-2024 CDRLabs Inc.