Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Who's Online
8 registered (Flyin V, Gizmo, gliderdad, luket, ntdoc, Rick, Ruben Rocha, 1 invisible), 18 Guests and 17 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 05/15/08
Posts: 1
Top Posters (30 Days)
Ruben Rocha 165
Rick 116
Gizmo 108
Thelockman 62
driv 56
AllenAyres 35
ScriptKeeper 34
Ian 31
Mark S 30
blaaskaak 29
Latest Photos
My Home System
test photo gallery
Bernese Mountain Dogs
My Daimler
Dorado and shark
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#113080 - 10/19/01 05:18 PM PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


I've been running PR 2.1 and just upgraded to the final release. I clicked on my graphic that takes me to the forum listing page and I got the error below. I temporarily disabled the UBB Accelerator and its working ok. I'd like to know what I can do to fix the problem... Thanks

Warning: Unknown modifier '' in /home/sites/site55/web/ubb/ultimatebb.php on line 43

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 521

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 522

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 523

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 524

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 525

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site55/web/ubb/ultimatebb.php:43) in /home/sites/site55/web/ubb/ultimatebb.php on line 495

3rdgen.org - Real Cars, Real People, Real Fast!
Administrator/Webmaster

[This message was edited by Charles Capps on November 05, 2002 at 10:31 AM.]

Top
#113081 - 10/19/01 05:35 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


What version does the accelerator test report?

I bet it's 4.04.

I thought I had caught this one...

Comment out lines 43-47 in ultimatebb.php by placing "//" at the beginning of the line.

That comments out the code that's causing the problem.

In the mean time, GK, if you could open a support ticket so I can experiment with different ways of fixing the problem over the weekend...

Thanks.

--
Charles Capps
Programmer, Infopop Corporation
Please do not contact me privately for support - post on the board or open a support ticket instead!

Top
#113082 - 10/19/01 06:00 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Charles:

Its actually version 4.03... If your refering to 4.04, I think its safe to assume the error is also in the later version.

Would you like me to open a support ticket still?

Thanks Charles

EDIT: AOL Instant Messanger is the devil! I signed on and was hit with a dozon IM's telling me the site is down LOL

3rdgen.org - Real Cars, Real People, Real Fast!
Administrator/Webmaster

Top
#113083 - 10/19/01 06:40 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Yes, absolutely open that ticket.

As I said in the office yesterday - "Perl compatible regular expressions... sure."

--
Charles Capps
Programmer, Infopop Corporation
Please do not contact me privately for support - post on the board or open a support ticket instead!

Top
#113084 - 10/19/01 07:49 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


[QUOTE]Originally posted by Charles Capps:
Yes, absolutely open that ticket.
[/QUOTE]Submitted Have a great weekend!

3rdgen.org - Real Cars, Real People, Real Fast!
Administrator/Webmaster

Top
#113085 - 10/19/01 09:51 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Ticket opened... and closed.

The problem was exactly what I thought it was... it will be fixed in the next release.

GK, I'll be logging into the server a few more times over the weekend and on Monday, so please don't change the FTP information you submitted. Thanks.

--
Charles Capps
Programmer, Infopop Corporation
Please do not contact me privately for support - post on the board or open a support ticket instead!

Top
#113086 - 10/19/01 10:17 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Thanks a million Charles! Feel free to take a gander whenever you want over the weekend

George

3rdgen.org - Real Cars, Real People, Real Fast!
Administrator/Webmaster

Top
#113087 - 10/20/01 04:01 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


I'm using v4.0.4 and I experience the same thing.

Commenting out those lines did the trick mind.

Richard Bannister
Moderator - UBB for Mac Users
http://www.bannister.org/
Do not e-mail/PM me for support.

[This message was edited by Richard Bannister on 20 Oct 01 at 04:09 AM.]

Top
#113088 - 10/20/01 06:59 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Ditto for PHP v4.00

Top
#113089 - 10/20/01 08:49 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Try to replace:
[CODE] $CGIURL2 = preg_replace("!/!", "/", $CGIURL);
$NonCGIURL2 = preg_replace("!/!", "/", $NonCGIURL);
if(($ref != "") && (!preg_match("/^($CGIURL2|$NonCGIURL2)/ultimatebb.(php|cgi)/", $ref)) && ($this[0] == "")) {[/CODE]with
[CODE] $domain = explode("/", $CGIURL);
if ($ref && preg_match("/$domain[2]/i",$ref) && preg_match("/ultimatebb.(php|cgi)/",$ref) && !$this[0]) {[/CODE]

Top
#113090 - 10/20/01 10:54 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


[QUOTE]Originally posted by GK:
3rdgen.org - Real Cars, Real People, Real Fast!
Administrator/Webmaster[/QUOTE] :rolleyes:

Hehe ... George ... I'm playin' ...

I too got those same messages so I'm guessing I need to shut down the PHP Accelerator ...


2001 Chevrolet Camaro SS #0332

Administrator of ColoradoF-Body.com

Top
#113091 - 10/20/01 11:56 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Charles isnt that the same problem i am vriting about in my topic under unix install ???

I did comment those line and it didnt work for me ;O))

Thomas

Top
#113092 - 10/20/01 01:09 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


It works great from my workstation, but not from my labtop ????

What happend ??

thomas

Top
#113093 - 10/20/01 08:19 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Mine worked fine on the beta, then when upgraded to full i got the same problems as the people above.

I have commented out the lines as suggested and its working again.

Does commenting out thoses lines have any affect on the way that the .php file saves us bandwidth or uses the compression method?

just interested..

Thanks

Top
#113094 - 10/22/01 11:47 AM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


Nope, this is something added between the beta and the final release.

It's also something that's getting taken back out between the final release and the next release...

--
Charles Capps
Programmer, Infopop Corporation
Please do not contact me privately for support - post on the board or open a support ticket instead!

Top
#113095 - 10/22/01 07:26 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered



Top
#113096 - 10/24/01 02:59 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


I have version 4.03 too, and I get basically the exact same error as GK:

Warning: Unknown modifier '' in /home/sites/site98/web/ubb/ultimatebb.php on line 43

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 521

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 522

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 523

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 524

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 525

Warning: Cannot add header information - headers already sent by (output started at /home/sites/site98/web/ubb/ultimatebb.php:43) in /home/sites/site98/web/ubb/ultimatebb.php on line 495

I'm not the brightest at PHP, so could you walk me through how to fix the problem?

Top
#113097 - 10/24/01 04:06 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered


This has been fixed in 6.1.0.1, now available in the Member Area. Topic closed.

--
Charles Capps
Programmer, Infopop Corporation
Please do not contact me privately for support - post on the board or open a support ticket instead!

Top
Page 1 of 2 1 2 >


Shout Box

Today's Birthdays
Neptin
Recent Topics
How do I set Moderation Queue for an individual user?
by luket
11/20/08 11:28 AM
Custom Island per Forum?
by unixpaul
11/20/08 10:18 AM
SQL Corruption?
by Jason Carey
11/20/08 05:52 AM
adding views column to portal page
by nick1
11/20/08 05:12 AM
Upload broken in 7.4.1
by MacW
11/20/08 03:23 AM
Forum Stats
4247 Members
33 Forums
30483 Topics
154633 Posts

Max Online: 978 @ 06/24/07 08:19 PM