php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24889 session.use_trans_sid and url_rewriter.tags does not give intended result
Submitted: 2003-07-31 11:46 UTC Modified: 2003-07-31 13:22 UTC
From: oyvind at 3kanten dot it Assigned:
Status: Not a bug Package: Session related
PHP Version: 4.3.2 OS: Linux Slackware 9.0
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: oyvind at 3kanten dot it
New email:
PHP Version: OS:

 

 [2003-07-31 11:46 UTC] oyvind at 3kanten dot it
Description:
------------
Trying to rewrite tags with session id, does not work.
---

./configure --with-mysql --enable-trans-sid

----

Apache 2.0, PHP 4.3.2 (cli) (built: Jul 18 2003 21:03:59)




Reproduce code:
---------------
ini_set("session.use_trans_sid", "1");
ini_set("url_rewriter.tags","a=href,area=href,frame=src,input=src,form=fakeentry,fieldset=");

session_id('temp');

session_start();

$_SESSION["var"] =  "testvar";

echo '<a href="index.php>'; // not rewritten

Expected result:
----------------
Rewriting of tags with session id.

Actual result:
--------------
No tag rewriting.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-07-31 13:22 UTC] sniper@php.net
You can't set session.use_trans_sid in your script, only in php.ini or .htaccess files.

 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Mon Sep 01 20:00:03 2025 UTC