php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #20167 no response when i get a blob
Submitted: 2002-10-30 03:07 UTC Modified: 2002-11-14 01:47 UTC
From: gallard dot nicolas at cimaest dot msa dot fr Assigned:
Status: No Feedback Package: Informix related
PHP Version: 4.2.3 OS: RH 8.0
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: gallard dot nicolas at cimaest dot msa dot fr
New email:
PHP Version: OS:

 

 [2002-10-30 03:07 UTC] gallard dot nicolas at cimaest dot msa dot fr
$pool = ifx_pconnect($database, $id, $password);

$sql = "select * from tbl_blob where libelle='" . $uid . "'";
$prep = ifx_query($sql,$pool,$tbl);
$table = ifx_fetch_row($prep,"NEXT");

if (is_array($table)) {
        $bib = $table[blobe];
        header("Content-type: image/jpeg");
        $a = ifx_get_blob($bib);
        echo $a;
}

This program is OK in RH 7.0 (Apache/1.3.20, PHP4.2.3)

in RH 8.0 ( Apache/2.0.40, PHP4.2.3)
the ifx_get_blob is blocked (no response of the navigator)

It's OK if i get the blob thirst than header :

        $bib = $table[blobe];
        $a = ifx_get_blob($bib);
        header("Content-type: image/jpeg");
        echo $a;

Thanks

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-30 07:07 UTC] sniper@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php4-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-latest.zip
 [2002-11-14 01:47 UTC] sniper@php.net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Jan 23 18:01:31 2025 UTC