WAMP Clustering

WAMP Clustering

am 17.08.2005 17:46:54 von John Martinez

Does anyone have any experience clustering this configuration?
Windows, Apache, mySQL, and PHP? I'm doing research now and could use
any info. TIA.

John

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

Re: WAMP Clustering

am 28.05.2007 15:47:37 von zerof

JM escreveu:
> Does anyone have any experience clustering this configuration?
> Windows, Apache, mySQL, and PHP? I'm doing research now and could use
> any info. TIA.
>
> John
--------------------------------
http://www.educar.pro.br/en/

--
zerof
http://www.educar.pro.br/
Apache - PHP - MySQL - Boolean Logics - Project Management
----------------------------------------------------------
Você deve, sempre, consultar uma segunda opinião!
----------------------------------------------------------
Deixe todos saberem se esta informação foi-lhe útil.
----------------------------------------------------------
You must hear, always, one second opinion! In all cases.
----------------------------------------------------------
Let the people know if this info was useful for you!
----------------------------------------------------------

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

Re: Re: WAMP Clustering

am 29.05.2007 07:25:41 von Chandar V R

We have WAMP installers in the internet right?
zerof wrote:
> JM escreveu:
>> Does anyone have any experience clustering this configuration?
>> Windows, Apache, mySQL, and PHP? I'm doing research now and could use
>> any info. TIA.
>>
>> John
> --------------------------------
> http://www.educar.pro.br/en/
>

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

RE: Re: WAMP Clustering

am 29.05.2007 15:19:37 von Joshua.Moore

Uniform Server??

http://www.uniformserver.com/

hope that's what your talking about.

-----Original Message-----
From: chandar [mailto:chandar@wsspl.com]=20
Sent: Monday, May 28, 2007 10:26 PM
To: zerof
Cc: php-windows@lists.php.net
Subject: Re: [PHP-WIN] Re: WAMP Clustering

We have WAMP installers in the internet right?
zerof wrote:
> JM escreveu:
>> Does anyone have any experience clustering this configuration?
>> Windows, Apache, mySQL, and PHP? I'm doing research now and could use
>> any info. TIA.
>>
>> John
> --------------------------------
> http://www.educar.pro.br/en/
>

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

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

RE: Re: WAMP Clustering

am 29.05.2007 22:09:38 von Bill Bolte

trying to send a multipart email (with text and html options). every so
often in the resulting email i see some spaces and an !. could be right
in the middle of a word or in between some words, doesn't matter. nor
can I really establish that's it's after so many characters. below is
the code, can anyone see if I'm missing something?
=20
=20
$mime_boundary =3D "----High Touch Inc----".md5(time());
=20
$to =3D $email;
$subject =3D "2008 High Touch Users Conference Date Survey";
$headers =3D "From: Webmaster \n";
$headers .=3D "Reply-To: Webmaster \n";
$headers .=3D "MIME-Version: 1.0\n";
$headers .=3D "Content-Type: multipart/alternative;
boundary=3D\"$mime_boundary\"\n";
=20
$message =3D "--$mime_boundary\n";
//$message .=3D "Content-Type: text/plain; charset=3DUTF-8\n";
//$message .=3D "Content-Transfer-Encoding: 8bit\n\n";
$message .=3D "Content-Type: text/plain; charset=3D\"iso-8859-1\"\n";
$message .=3D "Content-Transfer-Encoding: 7bit\n\n";
$message .=3D $tmsg."\n";
=20
$message .=3D "--$mime_boundary\n";
//$message .=3D "Content-Type: text/html; charset=3DUTF-8\n";
//$message .=3D "Content-Transfer-Encoding: 8bit\n\n";
$message .=3D "Content-Type: text/html; charset=3D\"iso-8859-1\"\n";
$message .=3D "Content-Transfer-Encoding: 7bit\n\n";
=20
$message .=3D "\n";
$message .=3D " sans-serif; font-size:14px; color:#666666;\">\n";
$message .=3D $hmsg."\n";
$message .=3D "\n";
$message .=3D "\n";
=20
$message .=3D "--$mime_boundary--\n\n";
=20
$mail_sent =3D @mail( $to, $subject, $message, $headers );
echo $mail_sent ? "Mail sent
" : "Mail failed
";

Bill

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

multipart/alternative email

am 29.05.2007 22:10:42 von Bill Bolte

OOPS, forgot to change the subject line! Should be multipart/alternative
email...

-----Original Message-----
From: Bill Bolte [mailto:billb@hightouchinc.com]=20
Sent: Tuesday, May 29, 2007 3:10 PM
To: php-windows@lists.php.net
Subject: RE: [PHP-WIN] Re: WAMP Clustering

trying to send a multipart email (with text and html options). every so
often in the resulting email i see some spaces and an !. could be right
in the middle of a word or in between some words, doesn't matter. nor
can I really establish that's it's after so many characters. below is
the code, can anyone see if I'm missing something?
=20
=20
$mime_boundary =3D "----High Touch Inc----".md5(time());
=20
$to =3D $email;
$subject =3D "2008 High Touch Users Conference Date Survey";
$headers =3D "From: Webmaster \n";
$headers .=3D "Reply-To: Webmaster \n";
$headers .=3D "MIME-Version: 1.0\n";
$headers .=3D "Content-Type: multipart/alternative;
boundary=3D\"$mime_boundary\"\n";
=20
$message =3D "--$mime_boundary\n";
//$message .=3D "Content-Type: text/plain; charset=3DUTF-8\n";
//$message .=3D "Content-Transfer-Encoding: 8bit\n\n";
$message .=3D "Content-Type: text/plain; charset=3D\"iso-8859-1\"\n";
$message .=3D "Content-Transfer-Encoding: 7bit\n\n";
$message .=3D $tmsg."\n";
=20
$message .=3D "--$mime_boundary\n";
//$message .=3D "Content-Type: text/html; charset=3DUTF-8\n";
//$message .=3D "Content-Transfer-Encoding: 8bit\n\n";
$message .=3D "Content-Type: text/html; charset=3D\"iso-8859-1\"\n";
$message .=3D "Content-Transfer-Encoding: 7bit\n\n";
=20
$message .=3D "\n";
$message .=3D " sans-serif; font-size:14px; color:#666666;\">\n";
$message .=3D $hmsg."\n";
$message .=3D "\n";
$message .=3D "\n";
=20
$message .=3D "--$mime_boundary--\n\n";
=20
$mail_sent =3D @mail( $to, $subject, $message, $headers );
echo $mail_sent ? "Mail sent
" : "Mail failed
";

Bill

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

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