php-install Digest 15 Aug 2001 07:50:37 -0000 Issue 414
Topics (messages 3967 through 3978):
Re: sparc-sun-solaris2.7 with mySQL configuration problems
3967 by: Jill Reese
Oracle troubles with php 3.x
3968 by: Leif Gripner
Post #2: Solaris/PHP non-standard libraries, AFS,etc
3969 by: Jill Reese
Installation with mod_perl / mod_so
3970 by: Alex Page
3971 by: Steve Brazill
libpng jpeg & gd - what a pain..........!
3972 by: hide
3973 by: hide
3974 by: hide
Enable-trans-sid with .htaccess
3975 by: MUSICApuntoAMICI
Errors after installing 4.06
3976 by: Maurice Schalker
3978 by: Phil Driscoll
CVS compile issues
3977 by: Evan Nemerson
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
Chris S wrote:
>
> i am trying to set up PHP 4.0.6 and when i execute this command:
>
> /configure --with-mysql=/opt/local/mysql --with-apache=/opt/local/apache-1.
> 3.9 --enable-track-vars
>
> i get the following problems:
>
> 1) checking for working makeinfo... missing
> - i tried to find this module and install it but i couldn't find it anywhere
> on the GNU site...is it neccessary? and if so, where can i get it?
Shouldn't be necessary.
> 2) checking for AIX... no
> - i am not sure what i need to do to fix this
AIX is an IBM unix flavor OS. You are running Solaris OS. Don't sweat
it.
> 3) checking for Apache module support via DSO through APXS... no
> - i have checked for mod_so.c and it is there, am i looking for the right
> thing??
You can only pick one of --with-apache or --with-apxs. You've picked
--with-apache. You may actually want
--with-apxs=/path-to-apache/apache/bin/apxs. Make sure apxs is there,
of course, before you configure with this option. It solves a lot of
headaches.
> 4) checking for Apache module support... no
> - i think that the mod_so.c has something to do with this as well??
See #3 above.
> 5) configure: error: Invalid Apache directory - unable to find httpd.h under
> /opt/local/apache-1.3.9
> - now i have changed the path in the command i executed to point directly to
> the httpd.h file (/opt/local/apache-1.3.9/bin) but i have looked up this
> error and it says to point to the directory where apache was installed. so
> what else could be the problem?
See #3 above.
> thank you for any help on these issues. i would really like to get PHP
> installed and working as soon as possible.
> chris
Have a working Oracle installation (8.0.5)
Have all my ORACLE_HOME/SID/BASE and so on corectly set up.
Configures apache
Configures php with --with-apache --with oracle . .. . . ..
Works just good. Oracle are found and right version are found in the
Configure output.
make and make install php and then make and make install apache. compiles
just fine.
Doing a phpinfo(); showes OCI8 and NOTHING under ORACLE_HOME and libes
used. SAme with the Oracle part.
User envirement (phpinfo();) I can read ORACLE_HOME/SID set to right values
STILL IT DONT WORK ! when i do get error reriving ora errors for and then
different ORA-12545 and such
gahhhh !
anyone able to help ?
// LEIF
If you are loading this package into a non-standard place, you need to
set the configure flags to set where the php.ini file will be looked for
after your installation (among other things). I've modified my previous
post's directions to add a few more configure flags. This is what I've
used:
./configure --without-mysql \
--with-apxs=/site/apache/bin/apxs \
--with-openssl=/usr/local/openssl \
--with-config-file-path=/site/lib \
--with-exec-dir=/site/bin \
--with-pear=/site \
Remember that after you run the configure script, you still need to edit
config.status, config_vars.mk, and the Makefile with the changes that I
outlined in the previous message to get PHP to make cleanly in the right
spots.
--Jill Reese
I'm having difficulty installing PHP (surprise) alongside mod_perl and
mod_so.
I've got the source tarballs for PHP (4.0.6), mod_perl (1.26), and apache
(1.3.20), and unpacked them in my home directory. Then I've done:
$ vi apache_1.3.20/src/Configuration
# uncommented the mod_so include line
$ apache_1.3.20/configure
# to get the default makefiles
$ cd mod_perl-1.26
$ make
# make install
$ cd ../php-4.0.6
$ make
# make install
$ cd ../apache_1.3.20
$ LIBS=`perl -MExtUtils::Embed -e ldopts`
$ CFLAGS=`perl -MExtUtils::Embed -e ccopts`
$ export LIBS CFLAGS
$ ./configure \
--activate-module=src/modules/perl/libperl.a \
--activate-module=src/modules/php4/libphp4.a \
--enable-module=rewrite \
--enable-module=status \
--enable-module=expires \
--enable-module=perl
$ make
# make install
# cd ../php-4.0.6
# cp php.ini-dist /usr/local/lib/php.ini
# /usr/local/apache/bin/apachectl start
This all seems to work with no error messages, and when I start the web
server, I get:
[Tue Aug 14 16:19:19 2001] [notice] Apache/1.3.20 (Unix) PHP/4.0.6
mod_perl/1.26 configured -- resuming normal operations
in my installed apache error log. Also:
$ /usr/local/apache/bin/httpd -l
shows me that mod_perl.c and mod_php4.c (but not mod_so.c) are compiled in.
However, when I try to load a PHP page which worked fine before the
'upgrade', I get the error:
"Fatal error: Failed opening required 'class.DBI'
(include_path='.:/usr/local/lib/php') in
/usr/local/apache/htdocs/irm/include/irm.inc on line 77"
There is a class.DBI file in /usr/local/apache/htdocs/irm/include/DBI but it
doesn't look like it's finding this. Is there something wrong with my PHP
installation? Also, how do I get it to recognise mod_so?
Thanks in advance,
Alex
--
Alex Page, IT Department, Solid State Logic
E-Mail: [EMAIL PROTECTED]
Phone: +44 (0) 1865 842 300
Web: http://www.solid-state-logic.com
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
That's the first time I've ever seen anyone try to install "mod_perl" by
manually 'hacking' the Apache 'source configuration' file...
I do believe that there's a lot of 'dependancies' (at least when I install
it) for "mod_perl" in order for it to install correctly (and the order of
installation may be important....
I have attached my current webdocs, which includes a section on the
Apache/Mod_Perl/PHP installation and configuration... Look them over and
see if they help... (I don't think that the 'list' will accept the
attachment...)
> ----- Original Message -----
> From: "Alex Page" <[EMAIL PROTECTED]>
> Subject: [PHP-INST] Installation with mod_perl / mod_so
>
>
> > I'm having difficulty installing PHP (surprise) alongside mod_perl and
> > mod_so.
> >
> > I've got the source tarballs for PHP (4.0.6), mod_perl (1.26), and
apache
> > (1.3.20), and unpacked them in my home directory. Then I've done:
> >
> > $ vi apache_1.3.20/src/Configuration
> > # uncommented the mod_so include line
> > $ apache_1.3.20/configure
> > # to get the default makefiles
> > $ cd mod_perl-1.26
> > $ make
> > # make install
> > $ cd ../php-4.0.6
> > $ make
> > # make install
> > $ cd ../apache_1.3.20
> > $ LIBS=`perl -MExtUtils::Embed -e ldopts`
> > $ CFLAGS=`perl -MExtUtils::Embed -e ccopts`
> > $ export LIBS CFLAGS
> >
> > $ ./configure \
> > --activate-module=src/modules/perl/libperl.a \
> > --activate-module=src/modules/php4/libphp4.a \
> > --enable-module=rewrite \
> > --enable-module=status \
> > --enable-module=expires \
> > --enable-module=perl
> > $ make
> > # make install
> > # cd ../php-4.0.6
> > # cp php.ini-dist /usr/local/lib/php.ini
> > # /usr/local/apache/bin/apachectl start
> >
> > This all seems to work with no error messages, and when I start the web
> > server, I get:
> >
> > [Tue Aug 14 16:19:19 2001] [notice] Apache/1.3.20 (Unix) PHP/4.0.6
> > mod_perl/1.26 configured -- resuming normal operations
> >
> > in my installed apache error log. Also:
> >
> > $ /usr/local/apache/bin/httpd -l
> >
> > shows me that mod_perl.c and mod_php4.c (but not mod_so.c) are compiled
> in.
> >
> > However, when I try to load a PHP page which worked fine before the
> > 'upgrade', I get the error:
> >
> > "Fatal error: Failed opening required 'class.DBI'
> > (include_path='.:/usr/local/lib/php') in
> > /usr/local/apache/htdocs/irm/include/irm.inc on line 77"
> >
> > There is a class.DBI file in /usr/local/apache/htdocs/irm/include/DBI
but
> it
> > doesn't look like it's finding this. Is there something wrong with my
PHP
> > installation? Also, how do I get it to recognise mod_so?
> >
> > Thanks in advance,
> >
> > Alex
> > --
> > Alex Page, IT Department, Solid State Logic
> > E-Mail: [EMAIL PROTECTED]
> > Phone: +44 (0) 1865 842 300
> > Web: http://www.solid-state-logic.com
> >
> >
Hi All,
I am about to bang my head real hard against the wall:
I have successfully installed php 4.0.6 / mysql 3.23.40 / apache 1.3.20 /
openssl 0.9.6b / mod_ssl 2.8.4 -1.3.20
OK all good, I did my ./configure like so:
./configure --with-mysql=/usr/local/mysql --with-xml --with-zlib --with-gd=.
./gd-1.8.4 --with-png-dir=../libpng --with-jpeg-dir=../jpeg-6b --with-apache
=../apache_1.3.20 --enable-track-vars
No complaints/errors. libpng is installed as is gd and jpeg.
But I get this error message when trying to do my web image creations:
<br>
<b>Warning</b>: ImagePng: No PNG support in this PHP build in
<b>/usr/local/apache/htdocs/gd.php</b> on line <b>6</b><br>
My phpinfo(); shows that GD has
GD Support enabled
GD Version 1.6.2 or higher
WBMP Support enabled
But no sign of jpeg or png.
Any ideas where I may have failed?
TIA
Vince
Hi Jonathon,
Thanks for your response ,
locate libpng
/usr/lib/libpng.so.2.1.0.8
/usr/lib/libpng.so.2
/usr/lib/libpng.a
/usr/lib/libpng.so
/usr/share/doc/libpng-1.0.8
/usr/share/doc/libpng-1.0.8/CHANGES
/usr/share/doc/libpng-1.0.8/README
/usr/share/doc/libpng-1.0.8/TODO
/usr/share/doc/libpng-1.0.8/example.c
/usr/share/doc/libpng-1.0.8/libpng.txt
/usr/share/man/man3/libpng.3.gz
/usr/share/man/man3/libpngpf.3.gz
locate gd-1.8.4
returns nothing, however:
locate gd
/usr/bin/gdb
/usr/include/gd.h
/usr/include/gd_io.h
/usr/include/gdcache.h
/usr/include/gdfontg.h
/usr/include/gdfontl.h
/usr/include/gdfontmb.h
/usr/include/gdfonts.h
/usr/include/gdfontt.h
/usr/include/gdbm
/usr/include/gdbm/dbm.h
/usr/include/gdbm/gdbm.h
/usr/include/gdbm/ndbm.h
/usr/include/gdbm.h
/usr/lib/libgd.so.1.8.3
/usr/lib/libgd.so.1.8
/usr/lib/libgd.a
/usr/lib/libgd.so
/usr/lib/libgdbm.so.2
/usr/lib/libgdbm.so.2.0.0
/usr/lib/libgdbm.a
/usr/lib/libgdbm.la
/usr/lib/libgdbm.so
Hmm perhaps I can see a problem -- what do you suggest?
Thanks
Vince
----- Original Message -----
From: "Jonathan Hilgeman" <[EMAIL PROTECTED]>
To: "'hide'" <[EMAIL PROTECTED]>
Sent: Tuesday, August 14, 2001 6:04 PM
Subject: RE: [PHP-INST] libpng jpeg & gd - what a pain..........!
> Run the following 2 commands:
> locate gd-1.8.4
> locate libpng
>
> Attach the output...
>
> - Jonathan
>
> -----Original Message-----
> From: hide [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 14, 2001 9:58 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-INST] libpng jpeg & gd - what a pain..........!
>
>
> Hi All,
>
> I am about to bang my head real hard against the wall:
>
> I have successfully installed php 4.0.6 / mysql 3.23.40 / apache 1.3.20 /
> openssl 0.9.6b / mod_ssl 2.8.4 -1.3.20
>
> OK all good, I did my ./configure like so:
>
>
./configure --with-mysql=/usr/local/mysql --with-xml --with-zlib --with-gd=.
>
./gd-1.8.4 --with-png-dir=../libpng --with-jpeg-dir=../jpeg-6b --with-apache
> =../apache_1.3.20 --enable-track-vars
>
> No complaints/errors. libpng is installed as is gd and jpeg.
>
> But I get this error message when trying to do my web image creations:
>
> <br>
> <b>Warning</b>: ImagePng: No PNG support in this PHP build in
> <b>/usr/local/apache/htdocs/gd.php</b> on line <b>6</b><br>
>
> My phpinfo(); shows that GD has
>
> GD Support enabled
> GD Version 1.6.2 or higher
> WBMP Support enabled
>
> But no sign of jpeg or png.
>
> Any ideas where I may have failed?
>
> TIA
> Vince
>
>
>
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
Hi Jonathon,
Here is the output - that worked ok
locate gd-1.8.4
/usr/local/gd-1.8.4
/usr/local/gd-1.8.4/bdftogd
/usr/local/gd-1.8.4/gd.c
/usr/local/gd-1.8.4/gd.h
/usr/local/gd-1.8.4/gd2copypal.c
/usr/local/gd-1.8.4/gd2time.c
/usr/local/gd-1.8.4/gd_gd.c
/usr/local/gd-1.8.4/gd_gd2.c
/usr/local/gd-1.8.4/gddemo.c
/usr/local/gd-1.8.4/gdfontg.c
/usr/local/gd-1.8.4/gdfontg.h
/usr/local/gd-1.8.4/gdfontl.c
/usr/local/gd-1.8.4/gdfontl.h
/usr/local/gd-1.8.4/gdfontmb.c
/usr/local/gd-1.8.4/gdfontmb.h
/usr/local/gd-1.8.4/gdfonts.c
/usr/local/gd-1.8.4/gdfonts.h
/usr/local/gd-1.8.4/gdfontt.c
/usr/local/gd-1.8.4/gdfontt.h
/usr/local/gd-1.8.4/gdtopng.c
/usr/local/gd-1.8.4/gdtest.c
/usr/local/gd-1.8.4/pngtogd.c
/usr/local/gd-1.8.4/pngtogd2.c
/usr/local/gd-1.8.4/webpng.c
/usr/local/gd-1.8.4/index.html
/usr/local/gd-1.8.4/gdparttopng.c
/usr/local/gd-1.8.4/mathmake.c
/usr/local/gd-1.8.4/Makefile
/usr/local/gd-1.8.4/test
/usr/local/gd-1.8.4/test/gdtest_200_300_150_100.png
/usr/local/gd-1.8.4/test/gdtest.gd2
/usr/local/gd-1.8.4/test/gdtest_merge.png
/usr/local/gd-1.8.4/test/fttest.png
/usr/local/gd-1.8.4/test/gdtest_wbmp_to_png.png
/usr/local/gd-1.8.4/gd_io_file.c
/usr/local/gd-1.8.4/gd_io.c
/usr/local/gd-1.8.4/gd_io.h
/usr/local/gd-1.8.4/gd_io_dp.c
/usr/local/gd-1.8.4/gd_io_ss.c
/usr/local/gd-1.8.4/gd_ss.c
/usr/local/gd-1.8.4/gd_png.c
/usr/local/gd-1.8.4/gd2topng.c
/usr/local/gd-1.8.4/demoin.png
/usr/local/gd-1.8.4/gdtables.c
/usr/local/gd-1.8.4/gdkanji.c
/usr/local/gd-1.8.4/jisx0208.h
/usr/local/gd-1.8.4/gdcache.c
/usr/local/gd-1.8.4/gdcache.h
/usr/local/gd-1.8.4/gdxpm.c
/usr/local/gd-1.8.4/demoout.png
/usr/local/gd-1.8.4/readme.txt
/usr/local/gd-1.8.4/gd_wbmp.c
/usr/local/gd-1.8.4/Makefile.nt
/usr/local/gd-1.8.4/gd_jpeg.c
/usr/local/gd-1.8.4/gdft.c
/usr/local/gd-1.8.4/gdtestft.c
/usr/local/gd-1.8.4/wbmp.c
/usr/local/gd-1.8.4/wbmp.h
/usr/local/gd-1.8.4/gdttf.c
/usr/local/gd-1.8.4/gdhelpers.c
/usr/local/gd-1.8.4/gdtestttf.c
/usr/local/gd-1.8.4/install-item
/usr/local/gd-1.8.4/gdhelpers.h
/usr/local/gd-1.8.4/gd.o
/usr/local/gd-1.8.4/gd_gd.o
/usr/local/gd-1.8.4/gd_gd2.o
/usr/local/gd-1.8.4/gd_io.o
/usr/local/gd-1.8.4/gd_io_dp.o
/usr/local/gd-1.8.4/gd_io_file.o
/usr/local/gd-1.8.4/gd_ss.o
/usr/local/gd-1.8.4/gd_io_ss.o
/usr/local/gd-1.8.4/gd_png.o
/usr/local/gd-1.8.4/gd_jpeg.o
/usr/local/gd-1.8.4/gdxpm.o
/usr/local/gd-1.8.4/gdfontt.o
/usr/local/gd-1.8.4/gdfonts.o
/usr/local/gd-1.8.4/gdfontmb.o
/usr/local/gd-1.8.4/gdfontl.o
/usr/local/gd-1.8.4/gdfontg.o
/usr/local/gd-1.8.4/gdtables.o
/usr/local/gd-1.8.4/gdft.o
/usr/local/gd-1.8.4/gdttf.o
/usr/local/gd-1.8.4/gdcache.o
/usr/local/gd-1.8.4/gdkanji.o
/usr/local/gd-1.8.4/wbmp.o
/usr/local/gd-1.8.4/gd_wbmp.o
/usr/local/gd-1.8.4/gdhelpers.o
/usr/local/gd-1.8.4/libgd.a
/usr/local/gd-1.8.4/pngtogd.o
/usr/local/gd-1.8.4/pngtogd
/usr/local/gd-1.8.4/pngtogd2.o
/usr/local/gd-1.8.4/pngtogd2
/usr/local/gd-1.8.4/gdtopng.o
/usr/local/gd-1.8.4/gdtopng
/usr/local/gd-1.8.4/gd2topng.o
/usr/local/gd-1.8.4/gd2topng
/usr/local/gd-1.8.4/gd2copypal.o
/usr/local/gd-1.8.4/gd2copypal
/usr/local/gd-1.8.4/gdparttopng.o
/usr/local/gd-1.8.4/gdparttopng
/usr/local/gd-1.8.4/webpng.o
/usr/local/gd-1.8.4/webpng
/usr/local/gd-1.8.4/gdtest.o
/usr/local/gd-1.8.4/gdtest
/usr/local/gd-1.8.4/gddemo.o
/usr/local/gd-1.8.4/gddemo
/usr/local/gd-1.8.4/gd2time.o
/usr/local/gd-1.8.4/gd2time
/usr/local/gd-1.8.4/gdtestft.o
/usr/local/gd-1.8.4/gdtestft
/usr/local/gd-1.8.4/gdtestttf.o
/usr/local/gd-1.8.4/gdtestttf
/usr/local/gd-1.8.4.tar.gz
######### libpng
locate libpng
/usr/lib/libpng.so.2.1.0.8
/usr/lib/libpng.so.2
/usr/lib/libpng.a
/usr/lib/libpng.so
/usr/local/lib/libpng.a
/usr/local/libpng
/usr/local/libpng/ANNOUNCE
/usr/local/libpng/CHANGES
/usr/local/libpng/INSTALL
/usr/local/libpng/KNOWNBUG
/usr/local/libpng/LICENSE
/usr/local/libpng/README
/usr/local/libpng/TODO
/usr/local/libpng/Y2KINFO
/usr/local/libpng/configure
/usr/local/libpng/contrib
/usr/local/libpng/contrib/gregbook
/usr/local/libpng/contrib/gregbook/LICENSE
/usr/local/libpng/contrib/gregbook/Makefile.sgi
/usr/local/libpng/contrib/gregbook/Makefile.unx
/usr/local/libpng/contrib/gregbook/Makefile.w32
/usr/local/libpng/contrib/gregbook/README
/usr/local/libpng/contrib/gregbook/README.w32
/usr/local/libpng/contrib/gregbook/makevms.com
/usr/local/libpng/contrib/gregbook/readpng.c
/usr/local/libpng/contrib/gregbook/readpng.h
/usr/local/libpng/contrib/gregbook/readpng2.c
/usr/local/libpng/contrib/gregbook/readpng2.h
/usr/local/libpng/contrib/gregbook/rpng-win.c
/usr/local/libpng/contrib/gregbook/rpng-x.c
/usr/local/libpng/contrib/gregbook/rpng2-win.c
/usr/local/libpng/contrib/gregbook/rpng2-x.c
/usr/local/libpng/contrib/gregbook/toucan.png
/usr/local/libpng/contrib/gregbook/wpng.c
/usr/local/libpng/contrib/gregbook/writepng.c
/usr/local/libpng/contrib/gregbook/writepng.h
/usr/local/libpng/contrib/msvctest
/usr/local/libpng/contrib/msvctest/README.txt
/usr/local/libpng/contrib/msvctest/msvctest.dsp
/usr/local/libpng/contrib/msvctest/msvctest.dsw
/usr/local/libpng/contrib/pngminus
/usr/local/libpng/contrib/pngminus/README
/usr/local/libpng/contrib/pngminus/makefile.std
/usr/local/libpng/contrib/pngminus/makefile.tc3
/usr/local/libpng/contrib/pngminus/makevms.com
/usr/local/libpng/contrib/pngminus/png2pnm.bat
/usr/local/libpng/contrib/pngminus/png2pnm.c
/usr/local/libpng/contrib/pngminus/png2pnm.sh
/usr/local/libpng/contrib/pngminus/pngminus.bat
/usr/local/libpng/contrib/pngminus/pngminus.sh
/usr/local/libpng/contrib/pngminus/pnm2png.bat
/usr/local/libpng/contrib/pngminus/pnm2png.c
/usr/local/libpng/contrib/pngminus/pnm2png.sh
/usr/local/libpng/contrib/pngsuite
/usr/local/libpng/contrib/pngsuite/README
/usr/local/libpng/contrib/pngsuite/basn0g01.png
/usr/local/libpng/contrib/pngsuite/basn0g02.png
/usr/local/libpng/contrib/pngsuite/basn0g04.png
/usr/local/libpng/contrib/pngsuite/basn0g08.png
/usr/local/libpng/contrib/pngsuite/basn0g16.png
/usr/local/libpng/contrib/pngsuite/basn2c08.png
/usr/local/libpng/contrib/pngsuite/basn2c16.png
/usr/local/libpng/contrib/pngsuite/basn3p01.png
/usr/local/libpng/contrib/pngsuite/basn3p02.png
/usr/local/libpng/contrib/pngsuite/basn3p04.png
/usr/local/libpng/contrib/pngsuite/basn3p08.png
/usr/local/libpng/contrib/pngsuite/basn4a08.png
/usr/local/libpng/contrib/pngsuite/basn4a16.png
/usr/local/libpng/contrib/pngsuite/basn6a08.png
/usr/local/libpng/contrib/pngsuite/basn6a16.png
/usr/local/libpng/contrib/visupng
/usr/local/libpng/contrib/visupng/PngFile.c
/usr/local/libpng/contrib/visupng/PngFile.h
/usr/local/libpng/contrib/visupng/README.txt
/usr/local/libpng/contrib/visupng/VisualPng.c
/usr/local/libpng/contrib/visupng/VisualPng.dsp
/usr/local/libpng/contrib/visupng/VisualPng.dsw
/usr/local/libpng/contrib/visupng/VisualPng.ico
/usr/local/libpng/contrib/visupng/VisualPng.png
/usr/local/libpng/contrib/visupng/VisualPng.rc
/usr/local/libpng/contrib/visupng/cexcept.h
/usr/local/libpng/contrib/visupng/resource.h
/usr/local/libpng/example.c
/usr/local/libpng/libpng.3
/usr/local/libpng/libpng.txt
/usr/local/libpng/libpngpf.3
/usr/local/libpng/png.5
/usr/local/libpng/png.c
/usr/local/libpng/png.h
/usr/local/libpng/pngasmrd.h
/usr/local/libpng/pngbar.jpg
/usr/local/libpng/pngbar.png
/usr/local/libpng/pngconf.h
/usr/local/libpng/pngerror.c
/usr/local/libpng/pnggccrd.c
/usr/local/libpng/pngget.c
/usr/local/libpng/pngmem.c
/usr/local/libpng/pngnow.png
/usr/local/libpng/pngpread.c
/usr/local/libpng/pngread.c
/usr/local/libpng/pngrio.c
/usr/local/libpng/pngrtran.c
/usr/local/libpng/pngrutil.c
/usr/local/libpng/pngset.c
/usr/local/libpng/pngtest.c
/usr/local/libpng/pngtest.png
/usr/local/libpng/pngtrans.c
/usr/local/libpng/pngvcrd.c
/usr/local/libpng/pngwio.c
/usr/local/libpng/pngwrite.c
/usr/local/libpng/pngwtran.c
/usr/local/libpng/pngwutil.c
/usr/local/libpng/projects
/usr/local/libpng/projects/beos
/usr/local/libpng/projects/beos/x86-shared.proj
/usr/local/libpng/projects/beos/x86-shared.txt
/usr/local/libpng/projects/beos/x86-static.proj
/usr/local/libpng/projects/beos/x86-static.txt
/usr/local/libpng/projects/borland
/usr/local/libpng/projects/borland/libpng.bpf
/usr/local/libpng/projects/borland/libpng.bpg
/usr/local/libpng/projects/borland/libpng.bpr
/usr/local/libpng/projects/borland/libpng.cpp
/usr/local/libpng/projects/borland/libpng.readme.txt
/usr/local/libpng/projects/borland/libpngstat.bpf
/usr/local/libpng/projects/borland/libpngstat.bpr
/usr/local/libpng/projects/borland/zlib+libpng.bpg
/usr/local/libpng/projects/borland/zlib.bpf
/usr/local/libpng/projects/borland/zlib.bpg
/usr/local/libpng/projects/borland/zlib.bpr
/usr/local/libpng/projects/borland/zlib.cpp
/usr/local/libpng/projects/borland/zlibstat.bpf
/usr/local/libpng/projects/borland/zlibstat.bpr
/usr/local/libpng/projects/msvc
/usr/local/libpng/projects/msvc/README.txt
/usr/local/libpng/projects/msvc/libpng.dsp
/usr/local/libpng/projects/msvc/libpng.dsw
/usr/local/libpng/projects/msvc/png.rc
/usr/local/libpng/projects/msvc/png32ms.def
/usr/local/libpng/projects/msvc/zlib.def
/usr/local/libpng/projects/msvc/zlib.dsp
/usr/local/libpng/projects/netware.txt
/usr/local/libpng/projects/wince.txt
/usr/local/libpng/scripts
/usr/local/libpng/scripts/SCOPTIONS.ppc
/usr/local/libpng/scripts/descrip.mms
/usr/local/libpng/scripts/libpng.icc
/usr/local/libpng/scripts/makefile.acorn
/usr/local/libpng/scripts/makefile.aix
/usr/local/libpng/scripts/makefile.amiga
/usr/local/libpng/scripts/makefile.atari
/usr/local/libpng/scripts/makefile.bc32
/usr/local/libpng/scripts/makefile.bd32
/usr/local/libpng/scripts/makefile.beos
/usr/local/libpng/scripts/makefile.bor
/usr/local/libpng/scripts/makefile.cygwin
/usr/local/libpng/scripts/makefile.dec
/usr/local/libpng/scripts/makefile.dj2
/usr/local/libpng/scripts/makefile.gcc
/usr/local/libpng/scripts/makefile.gcmmx
/usr/local/libpng/scripts/makefile.hpgcc
/usr/local/libpng/scripts/makefile.hpux
/usr/local/libpng/scripts/makefile.ibmc
/usr/local/libpng/scripts/makefile.intel
/usr/local/libpng/scripts/makefile.knr
/usr/local/libpng/scripts/makefile.linux
/usr/local/libpng/scripts/makefile.macosx
/usr/local/libpng/scripts/makefile.mips
/usr/local/libpng/scripts/makefile.msc
/usr/local/libpng/scripts/makefile.netbsd
/usr/local/libpng/scripts/makefile.os2
/usr/local/libpng/scripts/makefile.sco
/usr/local/libpng/scripts/makefile.sggcc
/usr/local/libpng/scripts/makefile.sgi
/usr/local/libpng/scripts/makefile.solaris
/usr/local/libpng/scripts/makefile.std
/usr/local/libpng/scripts/makefile.sunos
/usr/local/libpng/scripts/makefile.tc3
/usr/local/libpng/scripts/makefile.vcawin32
/usr/local/libpng/scripts/makefile.vcwin32
/usr/local/libpng/scripts/makefile.watcom
/usr/local/libpng/scripts/makevms.com
/usr/local/libpng/scripts/pngdef.pas
/usr/local/libpng/scripts/pngos2.def
/usr/local/libpng/scripts/smakefile.ppc
/usr/local/libpng/makefile
/usr/local/libpng/png.o
/usr/local/libpng/pngset.o
/usr/local/libpng/pngget.o
/usr/local/libpng/pngrutil.o
/usr/local/libpng/pngtrans.o
/usr/local/libpng/pngwutil.o
/usr/local/libpng/pngread.o
/usr/local/libpng/pngrio.o
/usr/local/libpng/pngwio.o
/usr/local/libpng/pngwrite.o
/usr/local/libpng/pngrtran.o
/usr/local/libpng/pngwtran.o
/usr/local/libpng/pngmem.o
/usr/local/libpng/pngerror.o
/usr/local/libpng/pngpread.o
/usr/local/libpng/libpng.a
/usr/local/libpng/pngtest.o
/usr/local/libpng/pngtest
/usr/local/libpng-1.0.12.tar.gz
/usr/share/doc/libpng-1.0.8
/usr/share/doc/libpng-1.0.8/CHANGES
/usr/share/doc/libpng-1.0.8/README
/usr/share/doc/libpng-1.0.8/TODO
/usr/share/doc/libpng-1.0.8/example.c
/usr/share/doc/libpng-1.0.8/libpng.txt
/usr/share/man/man3/libpng.3.gz
/usr/share/man/man3/libpngpf.3.gz
Thanks,
Vince
----- Original Message -----
From: "Jonathan Hilgeman" <[EMAIL PROTECTED]>
To: "'hide'" <[EMAIL PROTECTED]>
Sent: Tuesday, August 14, 2001 6:15 PM
Subject: RE: [PHP-INST] libpng jpeg & gd - what a pain..........!
> Ah - try updating the locate database first - sorry. Try running
> /usr/libexec/locate.updatedb
>
> If that doesn't work, do a locate on updatedb. This is the location on my
> FreeBSD 4 box.
>
> Once it's done indexing the drive, run those two locate commands again.
You
> should be able to get something out of gd-1.8.4 (just by looking at your
> configure statement)
>
> - Jonathan
>
>
> -----Original Message-----
> From: hide [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 14, 2001 10:06 AM
> To: Jonathan Hilgeman; [EMAIL PROTECTED]
> Subject: Re: [PHP-INST] libpng jpeg & gd - what a pain..........!
>
>
> Hi Jonathon,
>
> Thanks for your response ,
>
> locate libpng
> /usr/lib/libpng.so.2.1.0.8
> /usr/lib/libpng.so.2
> /usr/lib/libpng.a
> /usr/lib/libpng.so
> /usr/share/doc/libpng-1.0.8
> /usr/share/doc/libpng-1.0.8/CHANGES
> /usr/share/doc/libpng-1.0.8/README
> /usr/share/doc/libpng-1.0.8/TODO
> /usr/share/doc/libpng-1.0.8/example.c
> /usr/share/doc/libpng-1.0.8/libpng.txt
> /usr/share/man/man3/libpng.3.gz
> /usr/share/man/man3/libpngpf.3.gz
>
> locate gd-1.8.4
>
> returns nothing, however:
>
> locate gd
> /usr/bin/gdb
> /usr/include/gd.h
> /usr/include/gd_io.h
> /usr/include/gdcache.h
> /usr/include/gdfontg.h
> /usr/include/gdfontl.h
> /usr/include/gdfontmb.h
> /usr/include/gdfonts.h
> /usr/include/gdfontt.h
> /usr/include/gdbm
> /usr/include/gdbm/dbm.h
> /usr/include/gdbm/gdbm.h
> /usr/include/gdbm/ndbm.h
> /usr/include/gdbm.h
> /usr/lib/libgd.so.1.8.3
> /usr/lib/libgd.so.1.8
> /usr/lib/libgd.a
> /usr/lib/libgd.so
> /usr/lib/libgdbm.so.2
> /usr/lib/libgdbm.so.2.0.0
> /usr/lib/libgdbm.a
> /usr/lib/libgdbm.la
> /usr/lib/libgdbm.so
>
> Hmm perhaps I can see a problem -- what do you suggest?
>
> Thanks
> Vince
>
> ----- Original Message -----
> From: "Jonathan Hilgeman" <[EMAIL PROTECTED]>
> To: "'hide'" <[EMAIL PROTECTED]>
> Sent: Tuesday, August 14, 2001 6:04 PM
> Subject: RE: [PHP-INST] libpng jpeg & gd - what a pain..........!
>
>
> > Run the following 2 commands:
> > locate gd-1.8.4
> > locate libpng
> >
> > Attach the output...
> >
> > - Jonathan
> >
> > -----Original Message-----
> > From: hide [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, August 14, 2001 9:58 AM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-INST] libpng jpeg & gd - what a pain..........!
> >
> >
> > Hi All,
> >
> > I am about to bang my head real hard against the wall:
> >
> > I have successfully installed php 4.0.6 / mysql 3.23.40 / apache 1.3.20
/
> > openssl 0.9.6b / mod_ssl 2.8.4 -1.3.20
> >
> > OK all good, I did my ./configure like so:
> >
> >
>
./configure --with-mysql=/usr/local/mysql --with-xml --with-zlib --with-gd=.
> >
>
./gd-1.8.4 --with-png-dir=../libpng --with-jpeg-dir=../jpeg-6b --with-apache
> > =../apache_1.3.20 --enable-track-vars
> >
> > No complaints/errors. libpng is installed as is gd and jpeg.
> >
> > But I get this error message when trying to do my web image creations:
> >
> > <br>
> > <b>Warning</b>: ImagePng: No PNG support in this PHP build in
> > <b>/usr/local/apache/htdocs/gd.php</b> on line <b>6</b><br>
> >
> > My phpinfo(); shows that GD has
> >
> > GD Support enabled
> > GD Version 1.6.2 or higher
> > WBMP Support enabled
> >
> > But no sign of jpeg or png.
> >
> > Any ideas where I may have failed?
> >
> > TIA
> > Vince
> >
> >
> >
> >
> > --
> > PHP Install Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
>
Hello and excuse me for my english, I'm italian!
Is my first time in this newsgroup.
My question is... how can I configure php with --enable-trans-sid with
.htaccess?
Is it possible?
Thanks,
--
Domenico
Redazione MpA
website: http://www.musicapuntoamici.com
[EMAIL PROTECTED]
Hi,
I have installed php4.06 tonight.
I have an win2000 system with xitami webserver.
after the installation of 4.06 my site is giving errors.
This is the error:
Warning: Use of undefined constant REMOTE_ADDR - assumed 'REMOTE_ADDR' in
e:/webpages/fotoserver/fotos.php on line 524
You can see for yourself at www.geo.nl/vacatures
What went wrong?
Please HELP !!!
[EMAIL PROTECTED]
On Tuesday 14 August 2001 23:08, Maurice Schalker wrote:
> This is the error:
> Warning: Use of undefined constant REMOTE_ADDR - assumed 'REMOTE_ADDR' in
> e:/webpages/fotoserver/fotos.php on line 524
It just means that you forgot to put quotes around REMOTE_ADDR
On line 524 of your script replace [REMOTE_ADDR] with ['REMOTE_ADDR']
Cheers
--
Phil Driscoll
I'm trying to compile the latest CVS for use with PHP-GTK CVS. ./configure is
fine, but here is the last few lines of make
expat -I/usr/local/cvs/php4/TSRM -g -O2 -c basic_functions.c && touch
basic_functions.lo
basic_functions.c: In function `zif_is_numeric':
basic_functions.c:1476: too many arguments to function `is_numeric_string'
make[3]: *** [basic_functions.lo] Error 1
make[3]: Leaving directory `/usr/local/cvs/php4/ext/standard'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/cvs/php4/ext/standard'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/cvs/php4/ext'
make: *** [all-recursive] Error 1
I don't have any options on ./configure.
Please send any replies to [EMAIL PROTECTED] I don't subscribe to this
list, only php-general
Thanks in advance