Ticket #3309 (assigned defect)

Opened 4 years ago

Last modified 3 years ago

session segfaults and failures

Reported by: weyrick Owned by: weyrick
Priority: urgent Milestone: 3.0.0 release
Component: Standard Library Version: trunk
Severity: major Keywords:
Cc:

Description (last modified by weyrick) (diff)

one report of session segfault, another test case of failure (microserver):

page1.php

<?php
session_start();
echo 'Welcome to page #1';
$_SESSION['favcolor'] = 'green';
$_SESSION['animal'] = 'cat';
// Works if session cookie was accepted
echo '<br /><a href="page2.php">page 2</a>';
?>

page2.php

<?php
session_start();
echo 'Welcome to page #2<br />';
echo 'favcolor=' . $_SESSION['favcolor'] . '<br>'; // green
echo 'animal=' . $_SESSION['animal'] .'<br>' ; // cat
echo '<br /><a href="page1.php">page 1</a>';
?>

and of course a suitable mhttpd_startup.inc


Change History

Changed 3 years ago by weyrick

  • version set to 2.9.0 beta
  • type set to defect
  • description modified (diff)
  • milestone set to 2.9.x beta

may be fixed?

Changed 3 years ago by weyrick

  • owner changed from anonymous to weyrick
  • status changed from new to assigned
Note: See TracTickets for help on using tickets.