php-install Digest 20 Sep 2001 13:16:28 -0000 Issue 467 Topics (messages 4348 through 4352): Re: Install problems, re libphp4.so and libpq.so.2 on RH 7.0 4348 by: Rasmus Lerdorf Re: PHP on WinNT + IIS4 4349 by: Greg Re: Simple .php page redirect 4350 by: Dave Hess Missing DLLs (PHP 4.0.6 - Apache 1.3.20 - Windows 95) 4351 by: Geoff Lane Missing functions? 4352 by: Phillip van Studinski 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] ----------------------------------------------------------------------
Install that library. Probably in postgresql-devel rpm somewhere. -Rasmus On Wed, 19 Sep 2001, Eric D Nielsen wrote: > I've been setting up a new RH 7.0 Linux machine. I installed the current > Apache, got it to work for static pages. Tried to install PHP 4.0.6, got > through configure (--with-apxs --with-pgsql=blah --enable-trans-sis) / > make/make install with no problems. checked out the httpd.conf file, nothing > required manual changes. apachectl restart however gives the following error > message (sorry its not exactly verbatim, work currently had no network access) > syntax error in httpd.conf on line 205 (line involving libphp4.so) > can not open libpq.so.2 > > find . libpq.so.2 as root at / yields no matches. > > Can anyone give me any advice/tell me where to look for a FM to read? > > Thanks > > eric > > > >
Hey, I know this was awhile ago, but I managed to break it again. I'm getting the "cgi error" that says there is no output from the program. I've set it as "script engine" and "check file exists" for ".php" and the exe name is correct (it gives a different error otherwise). I tried doing php.exe -i and also typing : <?php phpinfo(); ?> into the program on the command line and it looks good. Any suggestions would be helpful, Greg "Phil Driscoll" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Sunday 12 August 2001 8:46 pm, Greg wrote: > > I had a similar problem. I installed PHP 4.0.6 on Windows 2000 Server and > > IIS 5.0. I got the same error. I checked the command line and the output > > looks good to me. > > > > does the PHP.exe need to be in the cgi-bin directory? currently it is not > > in a web-shared directory. > No it doesn't. > > Have you tried following the instructions in install.txt to tick the 'check > file exists' box in the script mapping dialog? If not, try it - your error > may then turn into a 404 implying that your script is not where you think it > is, or has a silly hidden file extension on the end or similar. > > Cheers > -- > Phil Driscoll
You can also use a meta tag inside the <head></head> tags of your page. Put the following lines in your code: <head> <meta http-equiv="refresh" content="0; url=/mypage.php"> </head> /mypage.php becomes the page you want to redirect your users to. The number after 'content=' is the number of seconds the page will wait before moving to the next page. Using '0' for that value makes it happen immediately. "Stefanos I. Dimitriou" <[EMAIL PROTECTED]> wrote in message 007801c13f4b$5dbab9e0$[EMAIL PROTECTED]">news:007801c13f4b$5dbab9e0$[EMAIL PROTECTED]... > > > hello, > > it is very possible to redirect with just some html code... > <body onload="use java code to open page"> > i.e. the location might work, onload="location='../folder/file'" > > i hope this can help you > > ----- Original Message ----- > From: "Steve B" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, September 17, 2001 9:48 AM > Subject: [PHP-INST] Simple .php page redirect > > > > 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] > >
I'm trying to set up an old Windows 95 box to test PHP scripts before uploading to my ISP. I'm successfully running Apache 1.3.20 and I've installed PHP4.0.6 from the zipped binaries to the same machine. When I try <? phpinfo() ?>, I get a server error in my browser and a Windows error message that tells me that MSVCRT40.DLL is missing. Searching my hard drive shows that this file is nowhere to be seen. In desparation, I tried copying msvcrt40.dll from another machine to the the \windows\system directory. Restarted Apache then tried again. This time I got an error that MSVCIRT.DLL is missing. I copied that file to \windows\system; restarted Apache; tried again and got a "missing export in OLE32.DLL". Can anyone help? TIA, Geoff
Hi, I just installed PHP4.0.6 om my Apache server. I'm using Windows2k Professional. It works fine, but some functions seem to be missing. In fact all functions related to imageprocessing doesn't work - e.g. imagecopy(), createimagefrompng() etc. Every time I try to use them I get a "call to undefined function". What should I do? - Phillip.