[PHP] PHP cacher?

2005-01-05 Thread Kimmo Alm
Hello!
I've been looking for some PHP cache software for a while now, and I just  
can't seem to find one suitable for my setup.

I run PHP 5.x on FreeBSD 4.x with Apache 2.x. I don't particularly fancy  
the Linux compability, but rather would prefer a native solution.

It must be free (no charge)...
PS: How come that this isn't included in PHP itself, just as there's  
mod_deflate for Apache 2?

// Kimmo Alm.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: PHP cacher?

2005-01-05 Thread Kimmo Alm
On 5 Jan 2005 17:28:42 -, Matthew Weier O'Phinney <[EMAIL PROTECTED]>  
wrote:

* Kimmo Alm <[EMAIL PROTECTED]>:
Hello!
I've been looking for some PHP cache software for a while now, and I  
just
can't seem to find one suitable for my setup.

I run PHP 5.x on FreeBSD 4.x with Apache 2.x. I don't particularly fancy
the Linux compability, but rather would prefer a native solution.
It must be free (no charge)...
http://eaccelerator.sourceforge.net/Home
I was happy when you showed me that link, as I had managed to not find  
that particular accelerator software.

However, that ALSO doesn't seem to support PHP 5 and says nothing about  
FreeBSD.

PS: How come that this isn't included in PHP itself, just as there's
mod_deflate for Apache 2?
Probably because it's overkill for most sites.
Well... it should still be available as an option.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: PHP cacher?

2005-01-05 Thread Kimmo Alm
On 6 Jan 2005 03:02:10 -, Matthew Weier O'Phinney <[EMAIL PROTECTED]>  
wrote:

* Kimmo Alm <[EMAIL PROTECTED]>:
On 5 Jan 2005 17:28:42 -, Matthew Weier O'Phinney  
<[EMAIL PROTECTED]>
wrote:
> * Kimmo Alm <[EMAIL PROTECTED]>:
> > I've been looking for some PHP cache software for a while now, and
> > I  just can't seem to find one suitable for my setup.
> >
> > I run PHP 5.x on FreeBSD 4.x with Apache 2.x. I don't particularly  
fancy
> > the Linux compability, but rather would prefer a native solution.
> >
> > It must be free (no charge)...
>
> http://eaccelerator.sourceforge.net/Home

I was happy when you showed me that link, as I had managed to not find
that particular accelerator software.
However, that ALSO doesn't seem to support PHP 5 and says nothing about
FreeBSD.
I don't mean to be rude, but how deep did you dig into that site?
It *does* support PHP5, as of 0.9.1. It was for that reason that it came
into being -- it forked off of Turckk mmcache because no progress was
being made on PHP5 compatability.
Also -- of the two items in the FAQ, one *specifically* addresses
compiling for FreeBSD.
Hmm... I'm very sorry if this is the case, which it probably is.
I looked through the entire site (all I could find), and even downloaded  
the latest package and read the README.

Quote: "Requirements

apache 1.3, mod_php 4.1, autoconf, automake, libtool, m4"
This is where I stopped reading. Perhaps it was a stupid thing to do.
Thanks again for the tip. Since you're most likely right, I'll dig in  
further into the docs.

But on my side, the requirements aren't exactly clear in any way...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: PHP cacher?

2005-01-05 Thread Kimmo Alm
On 6 Jan 2005 03:02:10 -, Matthew Weier O'Phinney <[EMAIL PROTECTED]>  
wrote:

* Kimmo Alm <[EMAIL PROTECTED]>:
On 5 Jan 2005 17:28:42 -, Matthew Weier O'Phinney  
<[EMAIL PROTECTED]>
wrote:
> * Kimmo Alm <[EMAIL PROTECTED]>:
> > I've been looking for some PHP cache software for a while now, and
> > I  just can't seem to find one suitable for my setup.
> >
> > I run PHP 5.x on FreeBSD 4.x with Apache 2.x. I don't particularly  
fancy
> > the Linux compability, but rather would prefer a native solution.
> >
> > It must be free (no charge)...
>
> http://eaccelerator.sourceforge.net/Home

I was happy when you showed me that link, as I had managed to not find
that particular accelerator software.
However, that ALSO doesn't seem to support PHP 5 and says nothing about
FreeBSD.
I don't mean to be rude, but how deep did you dig into that site?
It *does* support PHP5, as of 0.9.1. It was for that reason that it came
into being -- it forked off of Turckk mmcache because no progress was
being made on PHP5 compatability.
Also -- of the two items in the FAQ, one *specifically* addresses
compiling for FreeBSD.
I looked at the Web site again, and now it was all clear. Perhaps I was  
mentally drunk or something at the time I first checked it. Sorry.

However, it's funny how they lie in the actual README ;-)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] E-mails with mail() as UTF-8

2005-01-07 Thread Kimmo Alm
Hey again!
I'm having major trouble using mail() to deliver UTF-8 e-mails.
They get sent and delivered successfully, but seem to be... messed up when  
they arrive (they go through my ISP's relay e-mail server).

My headers basically look like this: "From: Test  
<[EMAIL PROTECTED]>\nMIME-Version: 1.0\nContent-Type: text/plain;  
charset=UTF-8\n".

I want to be able to use UTF-8 chars both in the subject and the body.
When I check the letters in my e-mail client (Opera's built-in one -- M2),  
it shows "UTF-16". Also, the headers look different than from the ones I  
send.

Is the relay server altering my letters? What the hell is happening?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: E-mails with mail() as UTF-8

2005-01-07 Thread Kimmo Alm
On Fri, 7 Jan 2005 18:50:50 +1100, HarryG <[EMAIL PROTECTED]> wrote:
Possibly the relay server can not send messages in the UTF-8 format so it
has to convert the message.
Try to install a local mail server on your pc smtp server in IIS on  
Windows
or Postfix in linux and then try use your local server to delivery the  
mail
rather than the isp's mail server

Well... I'm developing on a Wintel (PHP 5 and Apache 2). I obviously use a  
simple SMTP client ("QK STMP Server"), but us customers in my ISP are  
required to use the ISP's special e-mail server for outgoing e-mails. They  
block outgoing traffic on port 25 for their clients...

It'd be nice if there was a way to save the e-mail to a file on the HDD  
rather than trying to deliver it... then I could see if it really differs.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php