sessions problem

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
jake_vdb
Forum Newbie
Posts: 1
Joined: Fri Aug 25, 2006 3:05 pm

sessions problem

Post by jake_vdb »

I'm not able to start a session. I get the following error:

Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0

Warning: Unknown: Failed opening '/../test.php' for inclusion (include_path='.:/usr/local/share/pear') in Unknown on line 0


This is what I've been trying to test with:
<?php
session_start();
?>



Any help is appreciated.
-Jake
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

invoke <?php phpinfo(); ?>
What does it say for session.save_path
Does it point to a valid directory?
The php process needs read/write permissions for that directory.
Post Reply