From: [EMAIL PROTECTED] Operating system: Windows 2000 Professional PHP version: 4.0.6 PHP Bug Type: Filesystem function related Bug description: fread not work function encode_file($sourcefile) { if (is_readable($sourcefile)) { $fd = fopen($sourcefile, "r"); $contents .= fread($fd,filesize($sourcefile)); $encoded = chunk_split(base64_encode($contents)); fclose($fd); } return $encoded; } $source = $DOCUMENT_ROOT."/IMAGES/titolomail.gif"; encode_file($source); fopen also don't work with "rb" option and system return a memory violation error -- Edit bug report at: http://bugs.php.net/?id=13426&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]