ComputerUser
ComputerUser

Reputation: 4878

Enabled php5 on a windows server?

On a Linux server I need to add the following line to .htaccess file.

AddHandler application/x-httpd-php5 .php

Is there something similar for a windows server running php4?

Upvotes: 0

Views: 77

Answers (2)

Daniel Drummond
Daniel Drummond

Reputation: 1

I'm think is the same, windows webserver work like other webserver, so try use the same line in a .htaccess into the webserver folder. But i know have some packege u don't need those configuration, u can try intall other webserver like Apache, is better than windows webserver and more faster.

Apache Friends - Xampp

Works very well and u have more options to config PHP and other stuffs.

Upvotes: 0

Álvaro González
Álvaro González

Reputation: 146450

The official reference can be found here:

You'll notice that the chapter names begin with "Manually installing PHP". If you download the MSI installer version it's normally just a matter of Next, Next...

(Previously, you'll have to remove PHP 4.)

Upvotes: 1

Related Questions