In the howto Ying Zhang talked about dynamicly loading these lib's, so I didn't
recompile apache, apparently I also have to recompile apache ? But then it wouldn't be
a dynamicly loadable module would it ?
-----Original Message-----
From: Soffen, Matthew [SMTP:[EMAIL PROTECTED]]
Sent: Tuesday, May 02, 2000 4:32 PM
To: Jeroen ten Berge
Cc: 'Qmail mailing list'
Subject: RE: PHP
Ok.. When you make PHP, what was your config.status ?
I used something like:
./configure --with-mysql --with-oracle=/oracle
--with-apache=../apache_1.3.9 --without-gd --enable-track-vars
This installs it as a module for Apache.
Then when you build apache you would do:
./configure --with-apxs=/usr/local/apache/bin/apxs \
--with-config-file-path=/etc/httpd \
--activate-module=src/modules/php3/libphp3.a \
--with-mysql \
--with-pgsql \
--with-xml \
--with-gd \
--with-imap \
--with-zlib \
--with-system-regex
This should make you all set.
Matt Soffen
Web Intranet Developer
http://www.iso-ne.com/
==============================================
Boss - "My boss says we need some eunuch programmers."
Dilbert - "I think he means UNIX and I already know UNIX."
Boss - "Well, if the company nurse comes by, tell her I said
never mind."
- Dilbert -
==============================================
> -----Original Message-----
> From: Jeroen ten Berge [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, May 02, 2000 10:21 AM
> To: 'Soffen, Matthew'; 'Qmail mailing list'
> Subject: RE: PHP
>
> Euh, where ? There is no libphp3.a ! The configure was at /tmp/php-3.0.16,
> where I had PHP's source..
>
> -----Original Message-----
> From: Soffen, Matthew [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, May 02, 2000 4:18 PM
> To: Jeroen ten Berge; 'Qmail mailing list'
> Subject: RE: PHP
>
> Yeah.. You forgot to "recompile" with PHP support.
>
> If you add:
> --activate-module=src/modules/php3/libphp3.a
>
> You should be fine
>
> Matt Soffen
> Web Intranet Developer
> http://www.iso-ne.com/
> ==============================================
> Boss - "My boss says we need some eunuch programmers."
> Dilbert - "I think he means UNIX and I already know UNIX."
> Boss - "Well, if the company nurse comes by, tell her I said
> never mind."
> - Dilbert -
> ==============================================
>
> > -----Original Message-----
> > From: Jeroen ten Berge [SMTP:[EMAIL PROTECTED]]
> > Sent: Tuesday, May 02, 2000 9:32 AM
> > To: 'Qmail mailing list'
> > Subject: PHP
> >
> > Has anyone treid the web mail howto from Ying Zhang ?
> > Well, I have, first i've done the web database step by step howto, which
> > went perfect, I had database activity on apache using php 3.0.16;
> > Now in order to use IMAP i had to recompile php to include IMAP support
> :
> > ./configure --with-apxs=/usr/local/apache/bin/apxs \
> > --with-config-file-path=/etc/httpd \
> > --with-mysql \
> > --with-pgsql \
> > --with-xml \
> > --with-gd \
> > --with-imap \
> > --with-zlib \
> > --with-system-regex
> > make
> > make install
> > Now when i do an /etc/rc.d/init.d/httpd configtest it exits with the
> > following error :
> > Syntax error on line 238 of /etc/httpd/httpd.conf:
> > Cannot load /usr/local/apache/libexec/libphp3.so into server:
> > /usr/local/apache/libexec/libphp3.so: undefined symbol: gss_mech_krb5
> >
> > Does anybody have a clue what's wrong here ?
> >
> > Regards,
> > Jeroen ten Berge.