|
Posted by Tyrone Slothrop on 01/03/07 14:53
On Wed, 3 Jan 2007 12:22:20 +0100, artev <mailnotspammm@notspamm.nn>
wrote:
>I have some files php that use the session_start for archive
>datas in a variable $_SESSION['archive'] = $list;
>
>they not work more if in the file .htaccess I use this code
>(for to have permalink)
>
><IfModule mod_rewrite.c>
>RewriteEngine On
>RewriteBase /site/
>RewriteCond %{REQUEST_FILENAME} !-f
>RewriteCond %{REQUEST_FILENAME} !-d
>RewriteRule . /site/index.php [L]
></IfModule>
>
I had the same problem just yesterday. According to PHP manual on
php.net, sessions are not carried when there is a redirect. Since a
mod_rewrite is on the server level, I doubt there is a simple hack
around this. I ended up using my tried and true session functions,
passing the session id in a query string and saving the session values
in a MySQL table.
I would be interested to know if there is a way to code around this
limitation.
Anyone?
Navigation:
[Reply to this message]
|