954,568 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Directory can not access session?

I have an approve.php inside an /include directory. I have another file inside the /pop_up directory.

Approve.php

if (!isset($_SESSION['username'])) {
	header("location:log_in.php");
	die();
}


When i run the include('include/approve.php') code in files in the main directory, it works. When I run the include('../include/approve.php') in files in the pop_up/ directory it seems to always find that $_SESSION['username'] is not set.

Any suggestions?

megachip04
Light Poster
34 posts since Jul 2011
Reputation Points: 10
Solved Threads: 1
 

By default, sessions and cookies start at the root path of the file that created it and all lower sub-folders. Either move your session script at least as high as your other scripts that need it or try to change your session location with session_save_path .

MagicMedia
Junior Poster
149 posts since Jul 2010
Reputation Points: 20
Solved Threads: 35
 

Is there a way to set it to where they can all access session? I create the session in /include, but I need /include and /pop_up to be able to access it.

megachip04
Light Poster
34 posts since Jul 2011
Reputation Points: 10
Solved Threads: 1
 

ALL files must have a session_start() in them (or in their include files) if session variables can be got at.

I assume the popup files (or the files included in them) do not have a session_start().

//EDIT reading that back I don't know if it makes sense.

Best thing to do perhaps is place session_start() at the top of each main file. You don't need session_start in include files if it's already been declared in the main file.

diafol
Rhod Gilbert Fan (ardav)
Moderator
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
 

thanks. that would not be the first time I have missed that.

megachip04
Light Poster
34 posts since Jul 2011
Reputation Points: 10
Solved Threads: 1
 

Thanks "ardav" and "Magic Media" for your valuable suggestion.

shah01
Newbie Poster
1 post since Feb 2012
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: