Re: simultaneous apache 1.3x 2.x

2004-08-29 Thread Chad Leigh -- Shire.Net LLC
On Aug 28, 2004, at 6:02 PM, Eric F Crist wrote:
Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 
+ squirrelmail doesn't go. I tried and although the install proceeds 
I get  crashes in PHP.
PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural 
version.
Unfortunately this freebsd 4.9 system is also required to serve SVN 
so I must keep apache 2.
So can I get both apaches working on the same system? Or perhaps 
someone has some advice about getting squirrelmail working with 
apache 2.
Doesn't squirrelmail require some IMAP version or another?
Do you mean that SM requires some IMAP library or something?  That is a 
negative if that is what you mean.  They implemented it themselves and 
don't rely on an external IMAP library

Chad
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: simultaneous apache 1.3x 2.x

2004-08-29 Thread Scott Stahl
You can run multiple instances of Apache on your machine but they cannot all
use port 80 which is standard.  I would recommend using a higher port for
your Squirrelmail, something like 8081 or better yet use https.  

Honestly though I would stay away from Apache 2 all togeither as Apache
1.3.x is still the standard.

Scott. 

-Original Message-
From: Robin Becker [mailto:[EMAIL PROTECTED] 
Sent: Saturday, August 28, 2004 5:20 PM
To: [EMAIL PROTECTED]
Subject: simultaneous apache 1.3x  2.x

I'm trying to install squirrelmail, but it seems that PHP + apache 2 +
squirrelmail doesn't go. I tried and although the install proceeds I get
  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the squirrelmail
requirements it seems that apache 1.3 is the natural version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so I
must keep apache 2.

So can I get both apaches working on the same system? Or perhaps someone has
some advice about getting squirrelmail working with apache 2.
--
Robin Becker



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-29 Thread Chad Leigh -- Shire.Net LLC
On Aug 28, 2004, at 11:58 PM, Scott Stahl wrote:
You can run multiple instances of Apache on your machine but they 
cannot all
use port 80 which is standard.
Only if you have one IP address.  If you have aliased IP addresses on 
the same machine, you can run each apache on its own IP and on port 80

Chad

 I would recommend using a higher port for
your Squirrelmail, something like 8081 or better yet use https.
Honestly though I would stay away from Apache 2 all togeither as Apache
1.3.x is still the standard.
Scott.
-Original Message-
From: Robin Becker [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 28, 2004 5:20 PM
To: [EMAIL PROTECTED]
Subject: simultaneous apache 1.3x  2.x
I'm trying to install squirrelmail, but it seems that PHP + apache 2 +
squirrelmail doesn't go. I tried and although the install proceeds I 
get
  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail
requirements it seems that apache 1.3 is the natural version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so 
I
must keep apache 2.

So can I get both apaches working on the same system? Or perhaps 
someone has
some advice about getting squirrelmail working with apache 2.
--
Robin Becker


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-29 Thread August Simonelli
On Sun, 29 Aug 2004 00:20:04 +0100, Robin Becker [EMAIL PROTECTED] wrote:
 I'm trying to install squirrelmail, but it seems that PHP + apache 2 +
 squirrelmail doesn't go. I tried and although the install proceeds I get
   crashes in PHP.

I got apache2/courier-imap/php4/squirrelmail running ok on my FreeBSD
5.2.1 system. I did it all from ports and it seemed to work ok (just a
test system that has no real load and gets destroyed every few days
when I get an urge for something new - it's already gone as i write
this).

 
 PHP appears to deprecate apache 2 at present and looking at the

the lang/php4 port allowed me to set WITH_APACHE2=yes (I guess php5
would too ...) in make.conf and that made things happier.

sorry if this is way off ... it worked for me but i may have bumbled
into it  ...

august
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Chad Leigh -- Shire.Net LLC
On Aug 28, 2004, at 5:20 PM, Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 + 
squirrelmail doesn't go. I tried and although the install proceeds I 
get  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural 
version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so 
I must keep apache 2.

So can I get both apaches working on the same system?
You can do what I do -- install apache from source, not from ports.  I 
have apache 2 and several apache1 installations running on one machine.

It builds easily on freebsd and you can pass --prefix to the configure 
scripts to stick it whereever you want in your filesystem.

I use /usr/local/apache/apache_FOO
Chad
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Robin Becker
Chad Leigh -- Shire.Net LLC wrote:
On Aug 28, 2004, at 5:20 PM, Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 + 
squirrelmail doesn't go. I tried and although the install proceeds I 
get  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural 
version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so 
I must keep apache 2.

So can I get both apaches working on the same system?

You can do what I do -- install apache from source, not from ports.  I 
have apache 2 and several apache1 installations running on one machine.

It builds easily on freebsd and you can pass --prefix to the configure 
scripts to stick it whereever you want in your filesystem.

I use /usr/local/apache/apache_FOO
Chad

I guess I need to do the same prefix for the other bits required purely 
by squirrelmail then.
--
Robin Becker
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Eric F Crist
Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 + 
squirrelmail doesn't go. I tried and although the install proceeds I get 
 crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so I 
must keep apache 2.

So can I get both apaches working on the same system? Or perhaps someone 
has some advice about getting squirrelmail working with apache 2.
Doesn't squirrelmail require some IMAP version or another?
Just a question.
Eric Crist
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Donald J. O'Neill
Hi Robin 
I used Matt Simerson's Mail::Toaster. It can be found at:
http://www.thenetworkpeople.biz/internet/mail/toaster/index.shtml
Take a look and see if that interests you. 

Don

///
On Saturday 28 August 2004 06:20 pm, Robin Becker wrote:
 I'm trying to install squirrelmail, but it seems that PHP +
 apache 2 + squirrelmail doesn't go. I tried and although the
 install proceeds I get crashes in PHP.

 PHP appears to deprecate apache 2 at present and looking at the
 squirrelmail requirements it seems that apache 1.3 is the natural
 version.

 Unfortunately this freebsd 4.9 system is also required to serve
 SVN so I must keep apache 2.

 So can I get both apaches working on the same system? Or perhaps
 someone has some advice about getting squirrelmail working with
 apache 2.

-- 
Donald J. O'Neill
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Robin Becker
Eric F Crist wrote:
Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 + 
squirrelmail doesn't go. I tried and although the install proceeds I 
get  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural 
version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so 
I must keep apache 2.

So can I get both apaches working on the same system? Or perhaps 
someone has some advice about getting squirrelmail working with apache 2.

Doesn't squirrelmail require some IMAP version or another?
Just a question.
Eric Crist
After reflection I think I understand what you're getting at; 
squirrelmail isn't going to be used with the system's mail server. It's 
to be used to allow offsite workers to query our hosted IMAP server 
using http. Our offsite people are often behind firewalls and our IMAP 
sits on a system at pair.com which is apparently controlled by the 
firewall teams.
--
Robin Becker
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: simultaneous apache 1.3x 2.x

2004-08-28 Thread Lucas Holt
I used to have an apache 2 server setup with php 4.x and squirrelmail.  
I did not use ports though.  It will work fine built from source.

On Aug 28, 2004, at 7:20 PM, Robin Becker wrote:
I'm trying to install squirrelmail, but it seems that PHP + apache 2 + 
squirrelmail doesn't go. I tried and although the install proceeds I 
get  crashes in PHP.

PHP appears to deprecate apache 2 at present and looking at the 
squirrelmail requirements it seems that apache 1.3 is the natural 
version.

Unfortunately this freebsd 4.9 system is also required to serve SVN so 
I must keep apache 2.

So can I get both apaches working on the same system? Or perhaps 
someone has some advice about getting squirrelmail working with apache 
2.
--
Robin Becker

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


Lucas Holt
[EMAIL PROTECTED]

FoolishGames.com  (Jewel Fan Site)
JustJournal.com (Free blogging)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]