php-install Digest 19 Apr 2001 11:23:41 -0000 Issue 268

Topics (messages 2812 through 2822):

Installing the pdf extensions
        2812 by: Taylor, Stewart
        2817 by: Panya Worawichawong

Best non-tackified grip enhancer for golfers...
        2813 by: 116DD4239.excite.com

PHP in selected directories?
        2814 by: Thomas 'Moreaulf' Gullgården
        2818 by: Victor Foitzik

Problem when I install PHP4 with MySQL in HP-UX 11
        2815 by: Paulo Azevedo - IEG

PHP 4 Non Root Install (Emergency)
        2816 by: gsxm.dcs.ed.ac.uk
        2819 by: Victor Foitzik

Re: Installing PHP 4.0 on Windows 2000
        2820 by: Peter Mosinskis

configure: error: libtool configure failed
        2821 by: Neil Andrews

installation problem
        2822 by: jean-worldtouch

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]


----------------------------------------------------------------------


Hello,
 
I'm having problems getting the pdf extensions working.
 
I've downloaded and installed all the required libraries zlib, tifflib,
pnglib, jpeglib, pdflib etc
 
But when I run configure with the --with parameters to add the libraries
etc they just get ignored.
 
 
Any suggestions
 
 
-Stewart




I'm not sure, but I think the latest working version of
pdflib for php4 is 3.0. Later versions didn't work for me.
Try that.

- panya

-----Original Message-----
From: Taylor, Stewart
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 8:38 AM
To: '[EMAIL PROTECTED]'
Subject: [PHP-INST] Installing the pdf extensions


Hello,

I'm having problems getting the pdf extensions working.

I've downloaded and installed all the required libraries
zlib, tifflib,
pnglib, jpeglib, pdflib etc

But when I run configure with the --with parameters to add
the libraries
etc they just get ignored.


Any suggestions


-Stewart

--
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]







NO SALES PITCH, NO PRESSURE, NO NOTHING. 

Just the best non-tackified grip enhancer you'll ever use for your golf game, 
GUARANTEED, or your money back.

 From football's #1 specialty product company, SUPAGRIP25 is now available to golf 
enthusiasts everywhere.
 
Click here 
http://www.creativefootball.com
 to see the product that is taking all sports (where a good grip is essential) by 
storm! 

While you're there be sure to check out our "who uses our products" page, what you see 
just might surprise you. 
You really didn't think they make those great catches on talent alone, did you? 


Transmissions to you by the sender of 'this' email will be stopped promptly by sending 
an e-mail with "unsubscribe" in the subject line. Simply hit reply and send and we 
will remove you from our database. Please Note-This is a one time mailing.Thank you.




Hi there.

I rather quick question for someone who knows hopefully.
I got a apache webserver running PHP (with other irrelevant stuff too) and I
want to be able to deny PHP-scripts to be served ("executed"). I know I can
use the doc_root option in php.ini but then I must use directories outside
that path.

Can I somehow make, for example, no php-scripts runable from the directory
/home/username/public_html/ ?
(What I want is that some users should be able to mess around with php and
some not :)

Thanks in advance,
/Thomas




Hi Thomas,

how about Files / FilesMatch directives in Apache put in your userdir
config section ? Consider this:

<FilesMatch "\.php3?$">
  Order deny,allow
  Deny from all
</FilesMatch>

this will prevent users to request php files, and they won't be
executed by php.

HTH
Victor

> Hi there.
> 
> I rather quick question for someone who knows hopefully.
> I got a apache webserver running PHP (with other irrelevant stuff too) and I
> want to be able to deny PHP-scripts to be served ("executed"). I know I can
> use the doc_root option in php.ini but then I must use directories outside
> that path.
> 
> Can I somehow make, for example, no php-scripts runable from the directory
> /home/username/public_html/ ?
> (What I want is that some users should be able to mess around with php and
> some not :)
> 
> Thanks in advance,
> /Thomas






Hi all

I need a Help 

I installed mysql 3.23 ( mysql-3.23.33-hp-hpux11.00-hppa2.0w.tar.gz ) in HP-UX 11.00 

and now I try install PHP4 ( 4.0.4pl1 ), but I have some problem's 

# cd /opt/php4
# ./configure --with-mysql=/opt/mysql
# make 

after make command occur the follow error message 

    >Reference from: /opt/mysql/lib/libmysqlclient.a(str2int.o)(0x6b8)

    >/usr/bin/ld: Data Linkage Table (+z) overflow in file 
/opt/mysql/lib/libmysqlclient.a(str2int.o) - use +Z option to recompile 



Help me please 

thanks a lot 




Hi,

I am in need of some urgent help. We have a computer design project in
progress for my university course and I wish to install PHP 4 onto an apache
(1.3.19) server. We are running RedHat 6.2.

The so module appears to be installed (says so when I run httpd -l) in
apache. I cannot figure out how to install php 4 without root access. The
problem is the only directory I can write to is my home directory which is
home/sysd. I can obviously can create files and directories in this and have
managed to install Apache. However when I follow the instructions to install
PHP it attempts to write to the usr directory which I do not have permission
to(and will never have). I need to install PHP 4 with MySQL support (and
preferably everything else that would be included if I was installing it on
Windows). Does anyone know the options I should give ./configure? I tried
some settings including prefix but this didn't seem to help. Please help.
Thanks.

Graeme






Hi Graeme,

you're on the right way, --prefix is the answer. You should try this:

./configure --prefix=/home/yourloginname/apache ...

./configure --prefix=/home/yourloginname/php \
  --with-apxs=/home/yourloginname/apache/bin/apxs  ...

for both apache and php respectively (obviously you won't be able to
start/restart apache, if it is not yours ...). php and apache will
install their stuff into your home directory. note that you must
specify your own apxs if building php as a module.

HTH
Vic

> I am in need of some urgent help. We have a computer design project in
> progress for my university course and I wish to install PHP 4 onto an apache
> (1.3.19) server. We are running RedHat 6.2.
> 
> The so module appears to be installed (says so when I run httpd -l) in
> apache. I cannot figure out how to install php 4 without root access. The
> problem is the only directory I can write to is my home directory which is
> home/sysd. I can obviously can create files and directories in this and have
> managed to install Apache. However when I follow the instructions to install
> PHP it attempts to write to the usr directory which I do not have permission
> to(and will never have). I need to install PHP 4 with MySQL support (and
> preferably everything else that would be included if I was installing it on
> Windows). Does anyone know the options I should give ./configure? I tried
> some settings including prefix but this didn't seem to help. Please help.
> Thanks.
> 
> Graeme






Mike,

Did you install the InstallShield version or did you manually install? I
tried the manual install on W2K and it isn't working for me. In my browser
(IE) when I try to pull up a "hello world" PHP script I get an error:
"CGI Error
The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are"
Any ideas?

--Peter

>List:     php-install
>Subject:  Re: [PHP-INST] Installing PHP 4.0 on Windows 2000
>From:     "Michael C" <[EMAIL PROTECTED]>
>Date:     2001-04-18 2:53:48
>[Download message RAW]
>
>Ricardo:
>I just downloaded and installed PHP on Windows 2000 with IIS 5.0.  It works
>great!
>Here is the URL: http://www.php.net/manual/en/install-windows.php
>Let me know if that helps
>Thanks
>Mike

""Ricardo Granja"" <[EMAIL PROTECTED]> wrote in message
9bitbp$t4c$[EMAIL PROTECTED]">news:9bitbp$t4c$[EMAIL PROTECTED]...
> I need to know all the instructions for installing PHP 4 on IIS in Windows
> 2000. I try  the instructions that came with the product but when I try
> execute a script the browser only display the code of the script:
> <?php
>     phpinfo();
> ?>
>
> Regards,
> Ricardo Granja
> [EMAIL PROTECTED]





Can anyone help with thias please?

I am trying to build on cobalt RAQ4 using.

./configure --with-apxs=/usr/sbin/apxs --with-mysql=/usr --enable-
track vars --enable-trans-sid --enable-ftp

I get the following error.

Configuring libtool
checking build system type... Invalid configuration `vars': machine
`vars' not r
ecognized

checking for ld used by GCC... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for BSD-compatible nm... (cached) /usr/bin/nm -B
loading cache ./config.cache within ltconfig
ltconfig: you must specify a host type if you use `--no-verify'
Try `ltconfig --help' for more information.
configure: error: libtool configure failed

thanks, Neil








greeting,

I'm trying to use :
- apache_1.3.9   ---192.168.1. 88  ,apxs
/usr/apache/bin
- mysql-3.23.33  in linux 6.0 ( 192.16
8.1.15)  but will be linux 7.0 ( 192.1
68.1.99) in later stage.
- php-4.0.4pl1.  ---192.168.1.88  /php
4/php-4.0.4pl1

PHP4:

                ./configure     --wit
h-apache=../../apache/apache_1.3.9 \
                 --prefix=/usr/local/php4
\
                 --with-apxs=/usr/apac
he/bin        \
                 --with-xml         \
                 --with-mysql
\  ( but mysql is on 192.168.1.15, but
will be linux 7.0 ( 192.168.1.99) in later
stage.)
                 --enable-track-vars
\  ( this stmt, I do not understand even
it was not found in ./configure help )
                 --enable-satellite
????
        make
        make install

any one can tell me what to do?
henri




Reply via email to