ID: 25355
Updated by: [EMAIL PROTECTED]
Reported By: sadun at isikun dot edu dot tr
-Status: Open
+Status: Bogus
-Bug Type: *URL Functions
+Bug Type: Mail related
Operating System: windows server 2003
PHP Version: 4CVS-2003-09-02 (stable)
New Comment:
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.
Thank you for your interest in PHP.
See bug #25333
Previous Comments:
------------------------------------------------------------------------
[2003-09-02 06:40:46] sadun at isikun dot edu dot tr
the main problem is with mail() function. not with base64 sorry.
somehow when i mail attachments with fixed mail function it do not show
them but same code shows same mail with send from old version of mail
functions...
why PHP become SO buggy now days. every functions has some problems.
but thanks for debuggers
------------------------------------------------------------------------
[2003-09-02 06:12:23] sadun at isikun dot edu dot tr
Description:
------------
working code on 4.3.3 version wont work on php 4.3.4-dev.
code at the bottom, i checked that $attach_content[1] is not empty also
with healty base64 encoding.
Reproduce code:
---------------
if($fp){
$attach_content = fread($fp,filesize($attachment_file));
fclose($fp);
$attach_content = explode("EXPLODE_FROM_HERE",$attach_content);
$attach_info = explode("~~",$attach_content[0]);
$content_type = trim($attach_info[0]);
$content_type = ereg_replace(";", "", $content_type);
header("Content-transfer-encoding: binary\n");
header("Content-Disposition: attachment;
filename=$HTTP_GET_VARS[name]\n");
if($attach_info[1]=="base64"){
echo base64_decode($attach_content[1]);
}
if($attach_info[1]=="8bit"){
echo imap_8bit($attach_content[1]);
}
if($attach_info[1]=="quoted-printable"){
echo stripslashes(quoted_printable_decode($attach_content[1]));
}
if(empty($attach_info[1])){
echo stripslashes($attach_content[1]);
}
}
Expected result:
----------------
binary source will be printed by php so could be downloaded by
browser..
Actual result:
--------------
0 bytes
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=25355&edit=1