php-install Digest 1 Apr 2003 05:39:03 -0000 Issue 1316
Topics (messages 10461 through 10468):
Re: Oracle 8i with php 4.3.1 debug.log
10461 by: Thies C. Arntzen
Query String Help!
10462 by: Michael Scappa
10463 by: Matt Schroebel
10464 by: Michael Scappa
php 4.3.1 on Solaris 9 with Iplanet webserver 6.0
10465 by: Dave Gargan
Compiling against 64 bit Oracle
10466 by: Tom Tsongas
10467 by: Jim Thome
problem with the url query string--"Notice: Undefined variable"
10468 by: Isidro Hernandez Guillen
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 ---
what is your problem, you did not attach any log.
re,
tc
--- End Message ---
--- Begin Message ---
I just finished installing PHP 4.3.1, and for some reason when a page has a query
string, it won't read the first key/value pair of the string. All of the rest seem to
work fine, just not the first. It reads it as being blank (however it appearently is
setting the variable name).
For example:
results.php?term=023S&Program_Code=ART&Submit=Search
is my qs. The term=023S does not get set, although $term (or specifically $_GET[term])
does become a variable (just the value is not set). This works with any order,
whichever key/value pair comes first (so I know its not a problem with $term being
overwritten later).
Whats even more interesting, is after I'm onthe results.php page (And the $term
doesn't work), I can hit refresh and it does all of a sudden. Any thoughts? Anyone?
Please i'm lost on this, it worked before the upgrade which makes me thing possibly
its a configuration thing? Heck call me at the # below if you have any ideas :-) or
just email back.
Michael Scappa
Web Developer
Verve Internet Solutions
> for higher education
228 Krams Ave., Suite 300
Philadelphia, PA 19127
p: 215.508.4920
f: 215.508.4590
toll free: 1 866-672-2666
http://www.verveinternet.com
>Verve is a division of MRB Communications, Inc
--- End Message ---
--- Begin Message ---
> -----Original Message-----
> From: Michael Scappa [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 31, 2003 1:47 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-INST] Query String Help!
>
>
> I just finished installing PHP 4.3.1, and for some reason
> when a page has a query string, it won't read the first
> key/value pair of the string. All of the rest seem to work
> fine, just not the first. It reads it as being blank (however
> it appearently is setting the variable name).
Turn register_globals back on in php.ini
--- End Message ---
--- Begin Message ---
Matt,
It is. Like I said all other variables being posted via the query string
work fine, its only the first key/value pair.
-Mike
----- Original Message -----
From: "Matt Schroebel" <[EMAIL PROTECTED]>
To: "Michael Scappa" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, March 31, 2003 2:21 PM
Subject: RE: [PHP-INST] Query String Help!
>
> > -----Original Message-----
> > From: Michael Scappa [mailto:[EMAIL PROTECTED]
> > Sent: Monday, March 31, 2003 1:47 PM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-INST] Query String Help!
> >
> >
> > I just finished installing PHP 4.3.1, and for some reason
> > when a page has a query string, it won't read the first
> > key/value pair of the string. All of the rest seem to work
> > fine, just not the first. It reads it as being blank (however
> > it appearently is setting the variable name).
>
> Turn register_globals back on in php.ini
>
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Hello everyone. I'm trying to get php 4.3.1 installed and working with
Iplanet Webserver 6.0 on a Solaris 9 box. Here is the configure string I
am using:
../configure --with-mysql=/opt/sfw/mysql \
--with-nsapi=/usr/iplanet/iws \
--enable-track-vars \
--enable-libgcc
I had to hack the Makefile a little so that if finds the mysql libs
properly. I commented out the for loop where it attempts to find
libmysqlclient.* and hard coded MYSQL_LIB_DIR=/opt/sfw/mysql/lib/mysql
around line 47933. No biggie, it compiles without errors now.
However, though it will go through make and make install without errors,
the libphp4.so never gets created or installed. I tried version 4.3.0 of
php with the same problem, libphp4.so never gets built.
Has anyone else seen this before? I haven't found any fixes after some
google searches for this problem.
Dave
--- End Message ---
--- Begin Message ---
Hey gang.
I have successfully built PHP 4.3.1 against our older 32 bit Oracle
installation but my colleague has recently upgraded our new server to
the 64 bit version. But now if I attempt to recompile against the 64 bit
oracle libraries, the make fails.
Is there a configure switch to tell it I am building against the 64 bit
codebase of Oracle?
- Tom
--- End Message ---
--- Begin Message ---
What is your OS?
>>> Tom Tsongas <[EMAIL PROTECTED]> 03/31/03 16:44 PM >>>
Hey gang.
I have successfully built PHP 4.3.1 against our older 32 bit Oracle
installation but my colleague has recently upgraded our new server to
the 64 bit version. But now if I attempt to recompile against the 64 bit
oracle libraries, the make fails.
Is there a configure switch to tell it I am building against the 64 bit
codebase of Oracle?
- Tom
--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
hi, im new to phpand i have a problem when i click on this link:
<A HREF="welcome.php?name=Kevin"> Hi, I'm Kevin! </A>
the parser outputs this message "Notice: Undefined variable: name", im
runnig apache on a windows system:
welcome.php code:
<html>
<body>
<?php
echo( "Welcome to our Web site, $name !" );
?>
</body>
</html>
--- End Message ---