Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
1 registered (Gizmo), 27 Guests and 7 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 12/25/03
Posts: 211
Top Posters (30 Days)
Ruben 27
Gizmo 23
Bert 18
sb 5
hema0359 4
After the Rose 4
gladiator 3
skicomau 3
Willzter 2
mona said 2
Latest Photos
Uhm...
Mayan End of World
Gas Station Disco Video Shoot
Test Pictures
Audrey Kate
Page 1 of 2 1 2 >
Topic Options
#113080 - 10/19/01 07: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
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#113081 - 10/19/01 07: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 08: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 08: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 09: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 11: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/20/01 12:17 AM 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 06: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 08: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 10: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 12:54 PM 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 01:56 PM 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 03: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 10: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 01:47 PM 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 09:26 PM Re: PHP Error after upgrading to 6.1.0 final... [FIXED]
Anonymous
Unregistered

Top
#113096 - 10/24/01 04: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 06: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
No Birthdays
Recent Topics
Marking a topic as 'read' manually
by sw55
Yesterday at 04:29 PM
How to add AD island?
by Conrad
Yesterday at 01:19 PM
Need to update from 6 to latest: can't until server checked
by Digilady
06/17/13 08:17 AM
Shout Box
by Bert
06/15/13 04:15 PM
Calendar
by Bert
06/15/13 04:11 PM
Forum Stats
11000 Members
36 Forums
33988 Topics
183528 Posts

Max Online: 978 @ 06/24/07 10:19 PM
Random Image