php-install Digest 18 Sep 2001 04:45:39 -0000 Issue 463

Topics (messages 4323 through 4326):

Re: corel linux
        4323 by: Jeremy Wadsack

php + informix
        4324 by: Adam Williams

Re: Simple .php page redirect
        4325 by: The_polymorph

Installing PHP-4.0.6 on AIX 4.3.3 using gcc
        4326 by: Jason Ellison

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]


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



Data Driven Design ([EMAIL PROTECTED]):

> I just set up my first linux machine using corel linux, and it seems to me
> that apache is in the wrong place. It's appears to be in etc instead of usr.
> Has anyone successfully compiled PHP for corel linux, or should I try
> another version of linux.

The Apache configuration on Corel Linux (like most linux) is
/etc/httpd/conf/* or maybe /etc/apache/conf/.

The binaries are in /usr/bin.

I have built older versions of PHP (4.0.1, or something) on Corel
linux.


-- 

Jeremy Wadsack
Wadsack-Allen Digital Group





Hello,

I am running Informix version 7.30.UC1 on Solaris 7 Intel.  I am trying 
to compile PHP 4.0.6 with informix support.  I am running:


./configure --with-informix --with-apache=../apache_1.3.19 
--enable-track-vars

but in the script it breaks on the esqlc check.  I went through my 
Informix SE and Informix SQL cds but I do not have any esql or esqlc 
files on it.  I also went to www.informix.com/evaluate and saw that the 
Client SDK 2.70.UC1r1 for SUN Microsystems Sparc Solaris 7 has esqlc in 
it.  But that package is for Sparc Solaris 7 and I am running Intel 
Solaris 7.  I tried it anyway but on the esqlc check it prints a couple 
of garbage chacters and then errors out.

Can someone tell me where to find esqlc?  Since its not on my Informix 
cds nor at www.informix.com/evaluate, do you know how I can find this 
file or if its in another downloadable package at informix's web site.

Thanks,
Adam Williams
[EMAIL PROTECTED]





Hi Steve.

 I believe that is accomplshed with the following function:

header("the_new_URL");

Since I am still learning PHP, I could also be wrong.

Hopefully this is of benefit.

-Caitlin.

--- Steve B <[EMAIL PROTECTED]> wrote:
> Hi folks
> 
> I'm sure this will seem like a stupid question to many, but I'm
> simply
> trying to do a simply php redirect to another php page.  How is this
> done?
> 
> In this example, my site had a php file in one directory and it has
> now
> moved elsewhere, how can I make a simple redirect so people are
> pointed to
> the right page?
> 
> Thanks
> 
> 
> 
> 
> -- 
> 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]
> 


=====


__________________________________________________
Terrorist Attacks on U.S. - How can you help?
Donate cash, emergency relief information
http://dailynews.yahoo.com/fc/US/Emergency_Information/




Hello all,
 I recently installed php 4.0.6 on AIX 4.3.3.0 using Phill's document
posted to this list on 05.08.2001 and would like to repost it with some
corrections. The corrections may be obvious to some but it kept me up for
a *long* time. The problems i found were in step 6 and 7 .

\${wl} -bI:/usr/local/apache/libexec/httpd.exp
      ^- there should be no space before "-bI:"

obj=`$echo "X$oldobj" | $Xsed -e "lo2o"`
 lo2o is defined earlier in the script and need to be "$lo2o"

REF: Re: [PHP-INST] AIX 4.3.3 PHP 4.0.5 HowTo compile using xlC
http://marc.theaimsgroup.com/?l=php-install&m=98932190132723&w=2

Installing PHP-4.0.6 on AIX 4.3.3 using gcc

1) Download PHP source.
2) gunzip -> tar ....
3) cd php-4.0.6
4) ./configure --with-apxs=/usr/local/apache/bin/apxs \
   --enable-trans-sid --disable-xml --disable-pear \
   --with-mysql=/usr/local/mysql --with-oci8=/u01/app/oracle/product/8.1.6
5) vi libtool
6) Hack away at these lines:

archive_cmds= .....
add this:
\${wl}-bI:/usr/local/apache/libexec/httpd.exp

do the same for:
archive_expsym_cmds= ......

7) Search for the following:
Do each command in the archive commands

At the bottom of the loop that starts with the line:
for oldobj in $oldobjs; do
.
.
.
.
done

insert this just before and after the "done" i.e.
  obj=`$echo "X$oldobj" | $Xsed -e "$lo2o"`
  eval "cp $oldobj $obj"
done
oldobjs=`$echo "X$oldobjs" | $Xsed -e 's/\.lo/\.o/g'`

8) make
9) make install




Reply via email to