php-install Digest 8 Jul 2001 12:33:56 -0000 Issue 351 Topics (messages 3433 through 3437): Want to save on your Gas bill and earn extra income doing it??? 3433 by: Eric_1Feliciano.yahoo.com [php-inst] php output not passed back to browser 3434 by: Victoria Zhou Re: PHP AND MYSQL 3435 by: Andrew Apold mod_php and Apache 2.0.16 Need help please? 3436 by: Sagittarius installing php on apache 3437 by: Michael Duxbury 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] ----------------------------------------------------------------------
HI, I am interested in extra income, are You? I found a program with a system even I can do. Here's the deal.purchase one of the products for $24.95. All the products have a money back guarantee. So there is no Risk! I chose the gas pellets, guaranteed to increase my gas mileage by 15%, this will save me approx. $4.00 per tank. When you get 4 other people who purchase any one of the products. You receive your product at no out of pocket expense. Any questions or if you want the Web Page email Me
Hi, I used the Windows installer to install a CGI version of php4 on IIS4/NT4. I was able to run .php files from my web browser, but the .php output could not be passed back to my browser. It displayed on the command mode and then disappeared. The App mappings at the IIS MMC was set correctly. My FTP engine may not work properly, does this affect php? Also, how do you set permissions for IUSR_machinename to access files/dirs? Thanks, Victor zhou Southwest Research Institute 522-4759
At 10:56 AM 7/7/01 -0600, Jimmy Rodríguez M. wrote: >Hello i have a problem !! > >I install PHP and MYSQL and both of them are working fine, the problem >is that i installed PHP from a RPM file (i´m using Red Hat 7.0) and it >doesn´t activate me the option --with-mysql=/usr/local/mysql, what can i >do ? >1. Perl is not installed; >2. Apache was not compiled with DSO support (--enable-module=so); >3. 'apxs' is not in your path. >configure: error: ; > Either install both from RPMs or install both from source (preferrable). If you go the latter route, just use the -e option and remove the php you have completely (I had best luck doing this with apache, mysql and php, in that order). >SO THIS IS THE REASON CAUSE I USED A RPM FILE. > >WHAT CAN I DO ??? If you do go the all-rpm route (probably the easiest if you just want to get it working but, eh, not what I prefer to do..) try looking at Arvin's site assuming you're on a pentium or equivalent server, at http://rpms.arvin.dk/php/ (quick check) hrm. arvin's site appears down. Haven't visited it in about 3 months, don't know if this is just a temporary thing). There are others out there, his was nice 'cause it had all 3 ready to work together, which was useful back when I used to go the RPM route... ============================= "To dwell within Samsara, however, is to be subject to the works of those mighty among dreamers." - Mahasamatman, in Zelazny's "Lord of Light" Andrew Apold
I have RedHat 7.1 that have PHP preinstalled I have upgraded Apache to version 2.0.16 and the apache server is working well. But I have not been able to get any php module installed or enabled or configured. Could someone please tell me exactly how to make php work as a module in Apache 2.0.16, or point me to some documentation that describe this in details? I am a linuxnewbie, so if you are able to help, and are willing to take the time to write down some helping guidlines, please do it as if you are trying to learn a 10 year old boy. ;-) If you help me as if I am a linuxengineer that only lack knowledge of php I dont think I will come out with this thing working. So...any help from you fellows? Regards Sagittarius
I am trying in vain to get php running. I have win98 and apache1.3.6 server running. I unzipped the php-4.0.6-Win32 into c:\php I then downloaded php406-installer and I ran that, did a standard install. I was told that the installer hadn't edited my httpd.conf file for apache and i would have to do this with accordance with the php\install.txt file. Which has the following instructions:- If you unzipped the PHP package to C:\PHP\ as desribed above, you need to insert these lines to your Apache conf file to set up the CGI binary: ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php.exe" So this I did, so my httpd.conf file within apache looks like this:- # For example, the PHP3 module (not part of the Apache distribution) # will typically use: # #AddType application/x-httpd-php3 .phtml #AddType application/x-httpd-php3-source .phps ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php Action application/x-httpd-php "c:/php/php.exe" But I shutdown and restart apache and try to run load a .html file in my browser <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <?php echo "Hello World<p>"; ?> </body> </html> But nothing happens. I have tried to be as verbose as possible in the hope that someone can help me out here. Thankyou.