Phorum 3 hack to Phorum 5
Posted by Tante Moege
|
Phorum 3 hack to Phorum 5 January 13, 2007 11:52AM |
Registered: 18 years ago Posts: 3 |
Before upgrading to Phorum 5.1.6 I had a nice little forum with a shout box on one side. The neat part about it was that it used the username from the forum. I must admit that I had help building the integration.
After updating that does not work anymore. Would somebody be kind enough to help me remodelling the code so that it will run again?
chdir("../");
require "./common.php";
print '<input type="hidden" name="user" value="'.$phorum_user['username'].'">';
Thanks in advance
Tante Moege
After updating that does not work anymore. Would somebody be kind enough to help me remodelling the code so that it will run again?
chdir("../");
require "./common.php";
print '<input type="hidden" name="user" value="'.$phorum_user['username'].'">';
Thanks in advance
Tante Moege
|
January 14, 2007 11:25AM |
Admin Registered: 24 years ago Posts: 4,495 |
|
Re: Phorum 3 hack to Phorum 5 January 15, 2007 03:15PM |
Registered: 18 years ago Posts: 3 |
|
January 15, 2007 04:13PM |
Admin Registered: 21 years ago Posts: 8,532 |
No, you're trying to send header information after having sent page information. Search this forum or google for that error message for more info.
The easiest way to work around this, is adding ob_start() to the start of your scripts.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
The easiest way to work around this, is adding ob_start() to the start of your scripts.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
|
Re: Phorum 3 hack to Phorum 5 January 17, 2007 12:19PM |
Registered: 18 years ago Posts: 3 |
Sorry, only registered users may post in this forum.