Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
2 registered (Ruben, Bert), 32 Guests and 16 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 07/18/07
Posts: 17
Top Posters (30 Days)
Ruben 33
Gizmo 18
Rob Provencher 12
Rimex 9
SD 9
Bert 8
sw55 7
Eugene 5
TCS1 4
Matthias1976 4
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
Page 1 of 2 1 2 >



Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Express hosting.
by Ruben
05/16/13 03:54 PM
Level of detail in new user registration emails
by Mitch P.
05/15/13 10:20 PM
Approving users
by Bert
05/15/13 09:22 PM
Users randomly added to other group
by Bert
05/15/13 09:15 PM
Posting and other problems with 7.5.7
by Matthias1976
05/15/13 02:58 PM
Forum Stats
10964 Members
36 Forums
33956 Topics
183369 Posts

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