Re: [PHP] Finally....

2013-08-17 Thread Daniel
Yay, Thankyou :) Regards, Daniel Fenn On Sat, Aug 17, 2013 at 2:30 AM, Robert Cummings wrote: > On 13-08-16 11:58 AM, Marc Guay wrote: >> >> Those Belgacom emails were the only thing keeping me from a crushing >> loneliness - undo! > > > *sniffle* Another friend bites the dust *sniffle*. > >

Re: [PHP] Finally....

2013-08-17 Thread Kevin Kinsey
>Date: Fri, 16 Aug 2013 11:23:18 -0400 >From: Daniel Brown >To: PHP General >Subject: [PHP] Finally > ># ezmlm-list ~ezmlm/php-general | grep skynet >supp...@skynet.be > ># ezmlm-unsub ~ezmlm/php-general supp...@skynet.be > ># ezmlm-list ~ezmlm/php-general | grep skynet ># > >No more of t

Re: [PHP] Finally....

2013-08-16 Thread Robert Cummings
On 13-08-16 11:58 AM, Marc Guay wrote: Those Belgacom emails were the only thing keeping me from a crushing loneliness - undo! *sniffle* Another friend bites the dust *sniffle*. -- E-Mail Disclaimer: Information contained in this message and any attached documents is considered confidential a

Re: [PHP] Finally....

2013-08-16 Thread Tamara Temple
On Aug 16, 2013, at 10:58 AM, Marc Guay wrote: > Those Belgacom emails were the only thing keeping me from a crushing > loneliness - undo! I'll place a forward on my other spam… -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Finally....

2013-08-16 Thread Marc Guay
Those Belgacom emails were the only thing keeping me from a crushing loneliness - undo! On 16 August 2013 11:51, Matijn Woudt wrote: > On Fri, Aug 16, 2013 at 5:23 PM, Daniel Brown wrote: > >> # ezmlm-list ~ezmlm/php-general | grep skynet >> supp...@skynet.be >> >> # ezmlm-unsub ~ezmlm/php-gene

Re: [PHP] Finally....

2013-08-16 Thread Matijn Woudt
On Fri, Aug 16, 2013 at 5:23 PM, Daniel Brown wrote: > # ezmlm-list ~ezmlm/php-general | grep skynet > supp...@skynet.be > > # ezmlm-unsub ~ezmlm/php-general supp...@skynet.be > > # ezmlm-list ~ezmlm/php-general | grep skynet > # > > No more of those "Your e-mail concerning our products and >

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-16 Thread Curt Zirzow
* Thus wrote John Herren ([EMAIL PROTECTED]): > If I call a pdf file directly, the Acrobat plugin begins to display the > file almost immediately. Here is the reponse header for calling the file > directly: > Last-Modified: Thu, 16 Oct 2003 17:08:17 GMT > ETag: "94174-341fcb-3f8ed081" > Conten

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-16 Thread John Herren
Curt Zirzow wrote: * Thus wrote John Herren ([EMAIL PROTECTED]): header("Content-Type: application/pdf"); header("Accept-Ranges: bytes"); header("Content-Length: ".filesize($thefile)); readfile($thefile); Can anybody tell me why the browser is waiting for the entire file before it's displayed(us

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-16 Thread Curt Zirzow
* Thus wrote John Herren ([EMAIL PROTECTED]): > > header("Content-Type: application/pdf"); > header("Accept-Ranges: bytes"); > header("Content-Length: ".filesize($thefile)); > readfile($thefile); > > Can anybody tell me why the browser is waiting for the entire file > before it's displayed(using

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-16 Thread John Herren
OK, here's a different problem. If I call a pdf file directly, the Acrobat plugin begins to display the file almost immediately. Here is the reponse header for calling the file directly: HTTP/1.1 200 OK Date: Thu, 16 Oct 2003 20:41:28 GMT Server: Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-16 Thread Scott Fletcher
IE just don't work depending on some of the IE's version because of the IE's countless bugs. So, a different method of controlling the data output to the browser is needed. That's when I use the fopen() stuffs and it solve the problem. It is evident by reduced customer's calling tech support (us

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-14 Thread Curt Zirzow
* Thus wrote Mohamed Lrhazi ([EMAIL PROTECTED]): > On Tue, 2003-10-14 at 17:33, Curt Zirzow wrote: > > > > > > //use fopen() instead of readfile... > > > $fp = fopen($filepath, 'rb'); > > > $pdf_buffer = fread($fp, $filesize); > > > fclose ($fp); > > > > > > print $pdf_buffer;

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-14 Thread Mohamed Lrhazi
On Tue, 2003-10-14 at 17:33, Curt Zirzow wrote: > > > > //use fopen() instead of readfile... > > $fp = fopen($filepath, 'rb'); > > $pdf_buffer = fread($fp, $filesize); > > fclose ($fp); > > > > print $pdf_buffer; > > Loading the whole file in memory and not doing anything wit

Re: [PHP] Finally, PDF Header for PDF stuffs that work....

2003-10-14 Thread Curt Zirzow
* Thus wrote Scott Fletcher ([EMAIL PROTECTED]): > //Can't use readfile() due to poor controlling of the file download. > //(IE have this problems)... > //readfile($filepath); readfile has no effect on how IE handles downloads. > > //use fopen() instead of readfile... > $fp =

Re: [PHP] Finally!!! A workaround to mail() in PHP...

2003-02-19 Thread Scott Fletcher
The reason for this is due to the fact that PHP can override Sendmail but Sendmail can not override the Unix/Linux Operating System. So, once sendmail work without a problem in O/S, including inside the domain on the local network where hte machine reside and outside of the local network then you

Re: [PHP] Finally!!! A workaround to mail() in PHP...

2003-02-19 Thread Scott Fletcher
That doesn't work either because this machine's SMTP doesn't know it's user in it's own domain, so a modification of the /etc/hosts file is necessnary "Danny Shepherd" <[EMAIL PROTECTED]> wrote in message 023901c2d836$773f83c0$6400a8c0@DANNYS">news:023901c2d836$773f83c0$6400a8c0@DANNYS... > I'

Re: [PHP] Finally!!! A workaround to mail() in PHP...

2003-02-19 Thread Danny Shepherd
I'd say an even simpler workaround would be to add '[EMAIL PROTECTED]' as the fifth parameter to the mail function - just as in example 3 of the docs. Danny. - Original Message - From: "Scott Fletcher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 3:43 PM