[PHP-DEV] PHP 4.0 Bug #3936: Session ID Links Created Incorrectly From: agould <email protected>
Date: 03/27/00

From: agould <email protected>
Operating system: RedHat Linux 6.1
PHP version: 4.0 Beta 4 Patch Level 1
PHP Bug Type: Session related
Bug description: Session ID Links Created Incorrectly

PROBLEM:
- Session ID's are not inserted into links properly on a consistent basis. Roughly 2 or 3% of the time incorrect. An example "bad" link that was automatically created and sent to HTML output on my site:

<a href="orde?PHPSESSID=5787e94adf857e3ebef93f98b4adc75dr_entry.php">Enter Order</a>

the link should have been created as:

<a href="order_entry.php?PHPSESSID=...c75d">Enter Order</a>

In my code (from which this snippet comes from a "require()" include file), it's written as follows:

<a href="order_entry.php">Enter Order</a>

PHP CONFIG:
- The following features are configured into PHP:
  '--with-apxs=/usr/sbin/apxs' '--with-xml' '--with-mysql' '--disable-debug' '--enable-track-vars' '--enable-trans-sid'
- Zend Optimizer Beta 1 is installed as well.

SERVER CONFIG:
- Server is compiled with a standard RedHat 6.1 Pro Server installation.

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>