pls help me..........how to solve it

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
pernks
Forum Newbie
Posts: 10
Joined: Wed May 12, 2004 10:03 am

pls help me..........how to solve it

Post by pernks »

Warning: session_start(): open(/tmp\sess_da14c5b89d5a91e0c1db7c6784a00631, O_RDWR) failed: No such file or directory (2) in C:\Program Files\Apache Group\Apache2\htdocs\assignment\LOGIN.PHP on line 6

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at C:\Program Files\Apache Group\Apache2\htdocs\assignment\LOGIN.PHP:6) in C:\Program Files\Apache Group\Apache2\htdocs\assignment\LOGIN.PHP on line 6

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at C:\Program Files\Apache Group\Apache2\htdocs\assignment\LOGIN.PHP:6) in C:\Program Files\Apache Group\Apache2\htdocs\assignment\LOGIN.PHP on line 6

User's Page
User avatar
Diod
Forum Commoner
Posts: 52
Joined: Tue Oct 19, 2004 9:07 am

Post by Diod »

well thanks for the error, but where is the code? :)
rehfeld
Forum Regular
Posts: 741
Joined: Mon Oct 18, 2004 8:14 pm

Post by rehfeld »

locate your php.ini file

find the section where it sais

session.save_path

change it to

session.save_path= " . ; c : \ t m p "

NOTE: i had to put a space between all the characters in the double quotes so that i could post it. This message board is screwed up and throws server errors unless i do that.

so you must remove all the spaces between the double quoptes or it wont work
Post Reply