Connecting Tech Pros Worldwide Help | Site Map

Problem installing PHP on Apache server

  #1  
Old July 17th, 2005, 02:30 PM
bissatch@yahoo.co.uk
Guest
 
Posts: n/a
Hi,

I am trying to install Apache and PHP. I have installed apache fine
where I can type in http://localhost and it displays the default Apache
page.

When trying to install PHP I have run the installer file which seemed
to go OK. It is when configure the Apache httpd.conf file that I get
the problem. I have updated the ScriptAlias to read:


ScriptAlias /php/ "C:/Program Files/PHP/"


And added the following lines:


Action application/x-httpd-php "/php/php.exe"
AddType application/x-httpd-php .php


...as instructed by the tutorial I was reading.

To test PHP, I have created a phpinfo() page called index.php inside
the htdocs folder in Apache. When I try to access the file it give the
following 404 error:


Not Found

The requested URL /php/php.exe/index.php was not found on this server.



Any ideas?

Cheers

  #2  
Old July 17th, 2005, 02:30 PM
Dmitry Lukashin
Guest
 
Posts: n/a

re: Problem installing PHP on Apache server


Yeah, install PHP as Apache module :-)

On 2005-06-08, bissatch@yahoo.co.uk <bissatch@yahoo.co.uk> wrote:[color=blue]
>
> ..as instructed by the tutorial I was reading.
>
> Not Found
>
> The requested URL /php/php.exe/index.php was not found on this server.
>
>
> Any ideas?
>[/color]

--
Шушпанчики питаются исключительно кошерными желудями.
WBR, Дмитрий Лукашин
  #3  
Old July 17th, 2005, 02:30 PM
bissatch@yahoo.co.uk
Guest
 
Posts: n/a

re: Problem installing PHP on Apache server


> Yeah, install PHP as Apache module :-)

Well, where have I gone wrong in doing this? When installing PHP I
selected Apache as the server software.

  #4  
Old July 17th, 2005, 02:30 PM
Markus L.
Guest
 
Posts: n/a

re: Problem installing PHP on Apache server


Am Wed, 08 Jun 2005 09:59:50 -0700 schrieb bissatch:
[color=blue]
> Hi,
>
> I am trying to install Apache and PHP. I have installed apache fine
> where I can type in http://localhost and it displays the default Apache
> page.
>
> When trying to install PHP I have run the installer file which seemed
> to go OK. It is when configure the Apache httpd.conf file that I get
> the problem. I have updated the ScriptAlias to read:
>
>
> ScriptAlias /php/ "C:/Program Files/PHP/"[/color]

You do not need this alias here.
[color=blue]
>
>
> And added the following lines:
>
>
> Action application/x-httpd-php "/php/php.exe"[/color]

Type here the real path to your php.exe i.e.:
Action application/x-httpd-php "C:/Program
Files/PHP/php.exe"
[color=blue]
> AddType application/x-httpd-php .php
>
>
> ..as instructed by the tutorial I was reading.
>
> To test PHP, I have created a phpinfo() page called index.php inside the
> htdocs folder in Apache. When I try to access the file it give the
> following 404 error:
>
>
> Not Found
>
> The requested URL /php/php.exe/index.php was not found on this server.
>
>
>
> Any ideas?
>
> Cheers[/color]

--
-------------------------------------------------------
Try this: SCA the Smart Class Archive for PHP
http://www.project-sca.org
-------------------------------------------------------

  #5  
Old July 17th, 2005, 02:30 PM
Dale
Guest
 
Posts: n/a

re: Problem installing PHP on Apache server


Unzip the php into a folder called c:\php5

add these lines to your httpd.conf

LoadModule php5_module "c:/php5/php5apache2.dll"
AddType application/x-httpd-php .php
PHPIniDir "C:/php5"

copy all the *.dll files form php5 into the directory where apache.exe
is located or into the system32 directory.

uncomment any of the ;extension=* in your php.ini like php_mysql

change the extension_dir = to extension_dir = "c:\php5\ext\"

restart apache.

  #6  
Old July 17th, 2005, 02:30 PM
Dale
Guest
 
Posts: n/a

re: Problem installing PHP on Apache server


oh yea, remove the Action ... from httpd.conf

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Installing PHP on Apache problem snapcount@gmail.com answers 6 June 16th, 2006 03:18 PM
Problem installing PHP Jeff B answers 8 December 19th, 2005 03:15 PM
PHP on RedHat 7.2 connecting to DB2 V6.1 database on Solaris Uthuras answers 4 November 12th, 2005 05:45 AM
Do not find envvars installing PHP Al-Coax answers 1 July 17th, 2005 01:28 PM