php-install Digest 22 Feb 2003 23:06:30 -0000 Issue 1259
Topics (messages 10149 through 10155):
Re: values out of form variables
10149 by: TAchiwa
PHP INSTALL FILE MISSING
10150 by: Charlie Deckert
More MAC OS X PHP Intall Problems
10151 by: EOS Technologies
Re: two daemons running (apache and Apache-SSL) - php only works for one
10152 by: Henry
PHP & Apache - the inevitable problem
10153 by: rotsky
10154 by: rotsky
Re: PHP 4.3.0 and pdflib 4.0.3
10155 by: Jim Thome
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]
----------------------------------------------------------------------
--- Begin Message ---
Hello Mihir.
This is Takeo Achiwa from Tokyo,Japan.
"Mihir Dhond" <[EMAIL PROTECTED]> wrote
> I have the latest version of PHP 4.3.0-win32 (the latest stable version)
and
> version 1.3.27 of Apache installed. I have a windows XP operating system
The
> normal php scripts are working fine but when it comes to pulling out
> variable values out of a form, it just doesn't work..I worked very hard to
> get rid of this problem, but in vain. I run php as a server module.
> I also tried enabling the register_globals in the php.ini file but that
did
> not help. I also tried various browsers like internet explorer and
> Mozilla...but the problems remains...I would be very grateful if someone
> could help me as fast as possible on this, because without form variables
I
> am just not able to proceed...
>
> I am giving a very simple code that I used...
>
> A basic html file.. calling a php script:
>
> <form action="welcome.php" method="get">
> First Name: <input type="text" name="firstname" /><br />
> Last Name: <input type="text" name="lastname" /><br />
> <input type="submit" value="GO" />
> </form>
>
> code in welcome.php:
>
> <?php
> echo( "Welcome to my Website, $firstname $lastname!" );
> ?>
>
> I have already uninstalled and reinstalled both, the apache server and the
> PHP....
>
> Hope to get some help on this...
>
> Mihir Dhond
>
>
I hope the following php coding named welcome.php may help you.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>WELCOME_MESSAGE</title>
</head>
<body>
<form action="welcome.php" method="get">
First Name: <input type="text" name="firstname" /><br />
Last Name: <input type="text" name="lastname" /><br />
<input type="submit" value="GO" />
</form>
<?php
$firstname=$_GET[firstname];
$lastname=$_GET[lastname];
echo( "Welcome to my Website, $firstname $lastname!" );
?>
</body>
</html>
--- End Message ---
--- Begin Message ---
I am trying install PHP and I get all the way through the (make) but
when it comes to moving the php executable to my cgi dir, I can not find it
anywhere.
According to the docs it should get copied to the src dir. Any ideas?
My servers environment is :
FreeBSD 4.6-STABLE #13
Server API: Apache/1.3.27
I am trying to install my own instance of PHP on a Pair Networks server and
they will not assist.
Thanks for any help
--- End Message ---
--- Begin Message ---
Anyone knowledgeable about OS X?
Im trying to install PHP with -gettext and --axps but running intro
problems.
Im running the latest OS X and have installed the developer tools. But it
seems like im still missing somthing...
When I run ./configure I get somewhere.
About to here:
checking for the location of libXpm... no
checking for FreeType 1.x support... no
checking for FreeType 2... no
checking for T1lib support... no
checking whether to enable truetype string function in GD... no
checking for GNU gettext support... yes
configure: error: Cannot locate header file libintl.h
[Jezebel:/apps/php-4.3.0] root#
I was using the command line:
./configure --with-apxs --with-gettext
When I do the configure without add get text the configure runs smoothly but
I get this error on the Sudo Make Install
Installing PHP SAPI module
[activating module `php4' in /private/etc/httpd/httpd.conf]
cp libs/libphp4.so /usr/libexec/httpd/libphp4.so
cp: libs/libphp4.so: No such file or directory
apxs:Break: Command failed with rc=1
make: *** [install-sapi] Error 1
If anyone can help me out. Please remeber I am a complete begginer step by
step instructions!
Thanks
ian
--- End Message ---
--- Begin Message ---
maybe you can try to install 2 php for both apache's apxs
----- Original Message -----
From: "Wim Paulussen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 21, 2003 8:19 PM
Subject: [PHP-INST] two daemons running (apache and Apache-SSL) - php only
works for one
> LS,
>
> I have two daemons running :
> 1. httpd -> PHP works
> 2. httpsd -> PHP does not work : when I try to connect , I get an
> FTP-download-like screen . Does anyone have an idea why this might be ?
>
> Wim
>
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Okay, I know you've all heard this one before, but I'm really new to all
this, can't really claim to be a programmer and am on a steep learning
curve, so...
I've installed PHP 4.3.1 and Apache 2.0.44. I've made the various changes to
Apache's httpd.conf file, including the infamous line:
LoadModule php4_module "C:/php/sapi/php4apache2.dll"
(That's cut'n'pasted straight from the .conf file, so you can see I got the
slashes in the right direction). And, php4apache2.dll is very definitely in
that directory. I've installed in a couple of times from the downloaded zip
file in case something had corrupted it.
Now, I know PHP 4.3.1 is recent and that every time PHP or Apache is
updated, this problem crops up again. Anyone any thoughts?
I'm running WinXP HE version 2002 with SP1.
Am I being hopelessly optimistic and should install an earlier version of
Apache?
-- Steve
--- End Message ---
--- Begin Message ---
Oh hell, you can tell I'm frazzled by this ... I forgot to say what the
problem was. It's that during Apache start-up it tells me it can't find that
php4apache2.dll file ... but then, deep down, you all knew that.
"Rotsky" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Okay, I know you've all heard this one before, but I'm really new to all
> this, can't really claim to be a programmer and am on a steep learning
> curve, so...
>
> I've installed PHP 4.3.1 and Apache 2.0.44. I've made the various changes
to
> Apache's httpd.conf file, including the infamous line:
>
> LoadModule php4_module "C:/php/sapi/php4apache2.dll"
>
> (That's cut'n'pasted straight from the .conf file, so you can see I got
the
> slashes in the right direction). And, php4apache2.dll is very definitely
in
> that directory. I've installed in a couple of times from the downloaded
zip
> file in case something had corrupted it.
>
> Now, I know PHP 4.3.1 is recent and that every time PHP or Apache is
> updated, this problem crops up again. Anyone any thoughts?
>
> I'm running WinXP HE version 2002 with SP1.
>
> Am I being hopelessly optimistic and should install an earlier version of
> Apache?
>
> -- Steve
>
>
--- End Message ---
--- Begin Message ---
The PDFlib binding for PHP 4.2.1 (the latest PHP version when PDFlib
4.0.3 was released) is neither source nor binary compatible with PHP
4.3.0/4.3.1.
For more info:
http://www.pdflib.com/pdflib/faq.html#q2.3
--
Jim
>>> David Williams <[EMAIL PROTECTED]> 02/08/03 09:14PM >>>
Hello all,
I had a question about PHP 4.3.0 and pdflib 4.0.3 being compatible.
The pdflib faq says yes. However, I had the following problem when
doing
configure --with pdflib=PDFDIR
Checking whether to include PDFlib support... yes
/configure: line 1:phphome/ext/pdf/Makefile.in: No
such file or directory
configure: error: pdflib.h not found under
blah/pdflib/pdflib-4.0.3/include/
Why would it look for those files there? I read the configure file and
that is where it looks but those files are located elsewhere. It
seems
like the configure was written for a different version of php. I
tried
just copying the files to where they wanted, the program compiled,
but the program didn't work.
Anybody have any ideas?
Thanks,
David Williams
--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---