I have a strange issue here.  I am running a CentOS machine, with

apache 2.2.3
php 5.1.6
kernel 2.6.18-194.8.1.el5xen

My sessions will work using https, but not using simple http. I've compared my configs with another identical machine which works with both, and I can't figure out why. Anyone got an idea?

Here's the simple script I run to test.

<?php

session_start();

echo 'session started';

if (isset($_SESSION['name'])) {
  echo '<br />' . $_SESSION['name'];
  session_destroy();
} else {
  echo '<br />No session found';
  $_SESSION['name'] = 'My session';
}

phpinfo();
?>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to