ID:               14991
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Analyzed
+Status:           Closed
 Bug Type:         Session related
 Operating System: Free BSD 4.4
 PHP Version:      4.1.1
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2002-09-26 10:22:22] [EMAIL PROTECTED]

It doesn't make sense to change session.use_trans_sid from
within the script as it needs to be set before your script
runs in order to set up the output buffer.
Changing it during the script is causing undefined behaviour since PHP
started out believing that it is to
apply the url rewriting but then suddenly finds that it
isn't anymore.


------------------------------------------------------------------------

[2002-03-03 08:44:49] [EMAIL PROTECTED]

I have problems with this bug too ... same scrambled output. But only
when the session is not cookie-based. Otherwise it works fine.

------------------------------------------------------------------------

[2002-02-27 05:20:49] [EMAIL PROTECTED]

On Windows platforms (windows2000/php4.1.1 - isapi app on IIS 5.0)
ini_set not workink properly too. Output is also scrambled.

------------------------------------------------------------------------

[2002-01-24 15:14:18] [EMAIL PROTECTED]

I fix this Problem now by reading the incorrect output into a
output-buffer using ob_get_contents and tweak it with preg_replace,
duh!
Works, but is, ehh, not very smart #-)

But, surprise surprise, i then come over the error described in PHP-Bug
#14080(which is still not fixed in 4.1.1).
funny, eh?

------------------------------------------------------------------------

[2002-01-11 04:36:17] [EMAIL PROTECTED]

The following Code shows some strange behaviour:

<table cellspacing="2" cellpadding="2" border="0">
    <tr> 
      <td class="grossfett" valign="top" align="left">Galerie</td>
    </tr>
    <tr> 
      <td valign="top" nowrap> 
<?php
ini_set("session.use_trans_sid","0"); 
$cnt=0;
$d =
dir("$DOCUMENT_ROOT/3sonstiges/felgenveredelung/bp/galerie/thumbs/");
while($entry=$d->read()) 
{
[...snipped some echo "blabla";lines]
}
$d->close();
ini_set("session.use_trans_sid","1"); 
?>
        </td>
    </tr>
  </table>


The following Output is produced:

  <table cellspacing="2" cellpadding="2" border="0">
    <tr>
      <td class="grossfett" valign="top" align="left">Galerie</td>
    </tr>
    <tr>
      <td<a href ="javascript:;"
onClick=window.open("bp/showpic.php?pic
=1.jpg","hurz","location=0,directories=0,status=0,menubar=0,scrollbars=0
,toolbar=0,width=380,height=250");><img src="bp/galerie/thumbs/1.jpg"
border="0"></a>
[...snipped the list]
 valign="top" nowrap>
              </td>
    </tr>
  </table>

watch the
<td<a href [...] 
this should be
<td valign="top" nowrap><a href [...]
If i comment out the ini_set(); lines, output is normal.
Any Idea?

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=14991&edit=1

Reply via email to