Need Help With Shiny's Blog ASAP!

If you've problems with unsupported - non official ;-) - functionalities use this forum please.
Post Reply
Infect The System
Posts: 45
Joined: Mon 13. Mar 2006, 03:19
Contact:

Need Help With Shiny's Blog ASAP!

Post by Infect The System »

Hi all,

I'm using Shiny's amazing blog module hack and when viewing the site in IE the comment boxes are open on every blog entry. It works fine in FF.

Here is the link so you guys can see what i am talking about.

http://jo-s.com/test.phtml

Has anyone had this problem, or have an idea on how i can fix it?

Thanks in advance.

-ITS
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

Don't search the forum for the answer about !DOCTYPE being a problem... :wink:
Infect The System
Posts: 45
Joined: Mon 13. Mar 2006, 03:19
Contact:

Post by Infect The System »

Are you stalking me Dex? Always right behind me with the right answer. :)

So i got it to work, but now im getting this error in both IE & FF.

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /****/*****/****/*****/index.php:2) in /****/****/****/****/index.php on line 48

Which is this code:
*Line 48 is the last line in this code*

Code: Select all

// start session - neccessary if frontend users are available
// but neccessary also to check if a bot is visiting the site
// -> if so then do not initialize session for larger search engines
$BOTSLIST = array('googlebot', 'msnbot', 'ia_archiver', 'altavista', 'slurp', 'yahoo', 'jeeves', 'teoma', 'lycos'); 
$IS_A_BOT = false;
foreach($BOTSLIST as $value) {
	if(!$IS_A_BOT && stristr($_SERVER['HTTP_USER_AGENT'], $value)) {
		$IS_A_BOT = true;
		break;
	}
}
// if no bot was found initialize session
if(!$IS_A_BOT) {
	session_name('hashID');
	session_start();
You got an answer for this Mr. Dex?

Thanks,

-ITS
Infect The System
Posts: 45
Joined: Mon 13. Mar 2006, 03:19
Contact:

Post by Infect The System »

Ok, so i just commented line 48 out.

//session_start();

And it fixed that error. I hope i don't need that for something else.

LOL
Post Reply