Re: [PHP] PHP installation on RedHat

2003-06-15 Thread Yann Larrivee
Oups sorry with a link it always works better ;)

http://protonicdesign.com/tutorial/sablot_and_php.php

Yann Larrivee
www.phpquebec.org
www.protonicdesign.com

Sorry the tutorial is not in french yet.
I will translate it soone.

On Sun, 2003-06-15 at 08:02, Tim Best wrote:
> Bonsoir Yann,
> 
> Je suis intriguer de votre 'tutorial'!  Mais je ne
> peux pas le trouver...  Ou est-it exactement?
> 
> Merci beaucoup pour votre assistance! (et ecriver en
> français, merci de votre patience avec moi. ;-)
> 
> /Tim Best
> Best IT
> cell: 504-231-1084
> fax: 206-338-6162
> [EMAIL PROTECTED]
> http://www.best-it.biz
> 
> PS: I am sorry for emailing to you from this different
> address.  I am having problems with my email account.
> 
> 
> 
> 
> on 6/11/03 10:56, Yann Larrivee at
> [EMAIL PROTECTED] wrote:
> 
> Hi i made a tutorial on how to compile php, expath,
> libxml, sablotron
> 
> It works well for me. I ran into many probleme so i
> made an faq page
> where all errors are listed with an explanation,
> solution.
> If anybody encounter other errors i will put them
> there too.
> 
> I compile on Suse 8.2 but i dont think it should make
> a difference.
> 
> Yann Larrivee
> www.phpquebec.org
> www.protonicdesign.com
> 
> 
> On Sat, 2003-06-14 at 19:24, Info Best-IT wrote:
> > Anyone know where I can get a better step by step
> how to for installation of PHP with DOM,
> > XSLT, and XPATh support on Red Hat?  PHP.NET is not
> so hot...
> >
> > /T
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> __
> Do you Yahoo!?
> SBC Yahoo! DSL - Now only $29.95 per month!
> http://sbc.yahoo.com
> 





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



Re: [PHP] PHP installation on RedHat

2003-06-14 Thread Yann Larrivee
Hi i made a tutorial on how to compile php, expath, libxml, sablotron 

It works well for me. I ran into many probleme so i made an faq page
where all errors are listed with an explanation, solution.
If anybody encounter other errors i will put them there too.

I compile on Suse 8.2 but i dont think it should make a difference.

Yann Larrivee
www.phpquebec.org
www.protonicdesign.com


On Sat, 2003-06-14 at 19:24, Info Best-IT wrote:
> Anyone know where I can get a better step by step how to for installation of PHP 
> with DOM, 
> XSLT, and XPATh support on Red Hat?  PHP.NET is not so hot...
> 
> /T
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 



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



[PHP] PHP installation on RedHat

2003-06-14 Thread Info Best-IT
Anyone know where I can get a better step by step how to for installation of PHP with 
DOM, 
XSLT, and XPATh support on Red Hat?  PHP.NET is not so hot...

/T

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



Re: [PHP] PHP Installation on Redhat 8 - General Questions

2002-11-13 Thread BigDog
What you need to do is go into your apache_1.3.26/src/modules/php4
directory and and clean out the libphp files.

1. Stop apache.
2. Remove lib files from apache_1.3.26/src/modules/php4 
3. Do a make clean in apaches top dir.
4. Do a make clean in php top dir.
5. Remove config.cache in php dir.
6. Then recompile php -> make -> make install
7. Then recompile apache -> make -> make install
8. Restart apache
9. View phpinfo()

Should work now..


On Wed, 2002-11-13 at 16:43, Lee P. Reilly wrote:
> Hi there,
> 
> I wonder if someone could answer a few questions for me? First of all,
> excuse my ignorance as I'm somewhat of a Linux newbie. I have installed
> PHP, Apache, Mysql, etc. on Windows numerous times, but have found the
> Linux installation to be more troublesome due in part (more likely in
> whole) to my lack of Linux experience.
> 
> Following the instructions for setting up on PHP 4.x for Apache 1.x.x on
> the URL,
> http://www.e-gineer.com/instructions/install-php4x-for-apache1xx-on-linux.phtml
> I installed PHP as a module under Apache. I am using JPGraph which
> requires the GD graphics library, so after installing PHP with the basic
> options, I decided to reinstall it with GD support. Here is what I did
> to accomplish this:
> 
> In my PHP directory, I removed the config.cache file, did a 'make clean'
> and recompiled as follows:
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> ./configure \
> --with-config-file-path=/www/conf \
> --with-apache=../apache_1.3.27 \
> --with-png-dir=/usr/local \
> --with-gd=/usr/local \
> --with-zlib \
> --enable-track-vars
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> This seemed to be successful!
> 
> In the Apache directory, I did a 'make clean' and and recompiled as
> follows:
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> ./configure \
> --with-layout=Apache \
> --prefix=/usr/local/httpd \
> --sysconfdir=/www/conf \
> --enable-module=rewrite \
> --enable-module=status \
> --activate-module=src/modules/php4/libphp4.a 
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> 
> Typed 'make'
> Stopped Apache
> Typed 'make install'
> Started Apache
> 
> This also seemed to be successful.
> 
> However, phpinfo() generates information from the previous install. The
> configure command generated by phpinfo() is 
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>  './configure' '--with-config-file-path=/www/conf'
> '--with-apache=../apache_1.3.27' '--enable-track-vars'
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> And the build date show the time/date when I built it yesterday.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> 
> Can anyone suggest a reason for this? Is there something I am doing
> wrong?
> 
> Thanks very much in advance for your help!
> 
> - Best regards,
> Lee Reilly
-- 
.: B i g D o g :.



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




Re: [PHP] PHP Installation on Redhat 8 - General Questions

2002-11-13 Thread Marek Kilimajer
I don't think you needed to recompile apache, but only php. Did you 
actually do
make && make install in PHP directory?

Lee P. Reilly wrote:

Hi there,

I wonder if someone could answer a few questions for me? First of all,
excuse my ignorance as I'm somewhat of a Linux newbie. I have installed
PHP, Apache, Mysql, etc. on Windows numerous times, but have found the
Linux installation to be more troublesome due in part (more likely in
whole) to my lack of Linux experience.

Following the instructions for setting up on PHP 4.x for Apache 1.x.x on
the URL,
http://www.e-gineer.com/instructions/install-php4x-for-apache1xx-on-linux.phtml
I installed PHP as a module under Apache. I am using JPGraph which
requires the GD graphics library, so after installing PHP with the basic
options, I decided to reinstall it with GD support. Here is what I did
to accomplish this:

In my PHP directory, I removed the config.cache file, did a 'make clean'
and recompiled as follows:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
./configure \
--with-config-file-path=/www/conf \
--with-apache=../apache_1.3.27 \
--with-png-dir=/usr/local \
--with-gd=/usr/local \
--with-zlib \
--enable-track-vars
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
This seemed to be successful!

In the Apache directory, I did a 'make clean' and and recompiled as
follows:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
./configure \
--with-layout=Apache \
--prefix=/usr/local/httpd \
--sysconfdir=/www/conf \
--enable-module=rewrite \
--enable-module=status \
--activate-module=src/modules/php4/libphp4.a 
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Typed 'make'
Stopped Apache
Typed 'make install'
Started Apache

This also seemed to be successful.

However, phpinfo() generates information from the previous install. The
configure command generated by phpinfo() is 
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
'./configure' '--with-config-file-path=/www/conf'
'--with-apache=../apache_1.3.27' '--enable-track-vars'
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
And the build date show the time/date when I built it yesterday.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Can anyone suggest a reason for this? Is there something I am doing
wrong?

Thanks very much in advance for your help!

- Best regards,
Lee Reilly


 



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




[PHP] PHP Installation on Redhat 8 - General Questions

2002-11-13 Thread Lee P. Reilly
Hi there,

I wonder if someone could answer a few questions for me? First of all,
excuse my ignorance as I'm somewhat of a Linux newbie. I have installed
PHP, Apache, Mysql, etc. on Windows numerous times, but have found the
Linux installation to be more troublesome due in part (more likely in
whole) to my lack of Linux experience.

Following the instructions for setting up on PHP 4.x for Apache 1.x.x on
the URL,
http://www.e-gineer.com/instructions/install-php4x-for-apache1xx-on-linux.phtml
I installed PHP as a module under Apache. I am using JPGraph which
requires the GD graphics library, so after installing PHP with the basic
options, I decided to reinstall it with GD support. Here is what I did
to accomplish this:

In my PHP directory, I removed the config.cache file, did a 'make clean'
and recompiled as follows:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
./configure \
--with-config-file-path=/www/conf \
--with-apache=../apache_1.3.27 \
--with-png-dir=/usr/local \
--with-gd=/usr/local \
--with-zlib \
--enable-track-vars
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
This seemed to be successful!

In the Apache directory, I did a 'make clean' and and recompiled as
follows:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
./configure \
--with-layout=Apache \
--prefix=/usr/local/httpd \
--sysconfdir=/www/conf \
--enable-module=rewrite \
--enable-module=status \
--activate-module=src/modules/php4/libphp4.a 
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Typed 'make'
Stopped Apache
Typed 'make install'
Started Apache

This also seemed to be successful.

However, phpinfo() generates information from the previous install. The
configure command generated by phpinfo() is 
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 './configure' '--with-config-file-path=/www/conf'
'--with-apache=../apache_1.3.27' '--enable-track-vars'
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
And the build date show the time/date when I built it yesterday.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Can anyone suggest a reason for this? Is there something I am doing
wrong?

Thanks very much in advance for your help!

- Best regards,
Lee Reilly


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