I am not able to get the php session working on http. I tried the same simple test page on another domain on the server which uses https and it worked as expected. Here is the simple code I am using
session_start();
echo session_id();
When I refresh the page I get a new session_id each time. I've set session.cookie_secure to 0 and 1 but it made no difference. I have no clue why this is not working??? Any ideas?