Hi
I have a problem with php session on my site that is structured like this:
http root = /var/www/site.com/web
https root = /var/www/site.com/web/secure/content
I'm using name based virtrualhosts on apache2 (Fedora x86_64).
I'm doing a test with two simple files:
file1.php in http root
Code:
<?php
session_start();
$_SESSION['test'] = 'test';
?>
and file2.php in https root
Code:
<?php
session_start();
print_r($_SESSION);
?>
I'm not sure if I did everything right (I never used the sessions with php)
but the output of file 2 (in ssl root) is always 'Array()' which means that does not get the session variables (right?).
I also tried to set session variable via 'GET method' in a link but nothing to do.
I will post configurations if needed. Hope u can help me ...

Thanks
Recent comments
1 day 12 hours ago
1 day 21 hours ago
2 days 11 min ago
2 days 1 hour ago
2 days 2 hours ago
2 days 4 hours ago
2 days 5 hours ago
2 days 7 hours ago
2 days 23 hours ago
2 days 23 hours ago