Taguan Posted March 26, 2006 Share Posted March 26, 2006 We have a site www.buitendegrenzen.be and we wrote it in PHP the inlogscript is whit a session and a cookie .Last week we transfert to a new hosting and sinds then the inlogscript gives problems. it gives always an error on the place where i put session_start();the error looks like this : Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/cybertro/public_html/buitendegrenzen/index.php:17) in /home/cybertro/public_html/buitendegrenzen/index.php on line 18Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/cybertro/public_html/buitendegrenzen/index.php:17) in /home/cybertro/public_html/buitendegrenzen/index.php on line 18I did try manny changes but there is always an error on the place of the session start . I hope some one can help me ! or some suggestions i can try ... Thanks Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/ Share on other sites More sharing options...
toplay Posted March 26, 2006 Share Posted March 26, 2006 This has been asked a lot on this board.Look in the newbie section (and FAQ page).[a href=\"http://www.phpfreaks.com/forums/index.php?showtopic=37442\" target=\"_blank\"]http://www.phpfreaks.com/forums/index.php?showtopic=37442[/a] Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/#findComment-20967 Share on other sites More sharing options...
redarrow Posted March 26, 2006 Share Posted March 26, 2006 just sometihnk easy to try before reding all the posts ok.Always put session_start() at the top of a page and always never have anythink before it.[code]<? session_start()?>[/code]If that dont work then please read the above comment as advised. Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/#findComment-20989 Share on other sites More sharing options...
wildteen88 Posted March 27, 2006 Share Posted March 27, 2006 The source of the output is comming form witin index.php on or around line 17. So check index.php have a look at lines 15 to 20 in index.php if you cant see why then maby post you code here.But please do read the thread toplay has posted. Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/#findComment-21137 Share on other sites More sharing options...
Taguan Posted March 28, 2006 Author Share Posted March 28, 2006 I know it has to be on the top of te page and i did put it there for trying .Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/cybertro/public_html/buitendegrenzen/index.php:1) in /home/cybertro/public_html/buitendegrenzen/index.php on line 3Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/cybertro/public_html/buitendegrenzen/index.php:1) in /home/cybertro/public_html/buitendegrenzen/index.php on line 3and i dit try ob_flush(); ob_start(); session_start();nothing solved the problemi hope somone can help me . Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/#findComment-21686 Share on other sites More sharing options...
redbullmarky Posted March 28, 2006 Share Posted March 28, 2006 [!--quoteo(post=359389:date=Mar 28 2006, 07:28 PM:name=Taguan)--][div class=\'quotetop\']QUOTE(Taguan @ Mar 28 2006, 07:28 PM) [snapback]359389[/snapback][/div][div class=\'quotemain\'][!--quotec--]i hope somone can help me .[/quote]toplay already did.there's not one single session/header problem that i've not (or anyone else after some careful checks) has not been able to eliminate after carefully following the advice on the link provided.post your code above and including your 'session_start()' line Quote Link to comment https://forums.phpfreaks.com/topic/5881-session_start-problems/#findComment-21709 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.