HOW TO USE PHP UNDER MYSERVER
PHP (Hypertext Preprocessor) is the most used server-side scripting
language in the world. A server-side language is used to create web pages with
dynamic content. You can use PHP with MyServer as either a standard CGI
executable or as a FastCGI server. While using PHP like a CGI
executable, MyServer will create a new process for every page
requested. While using PHP in the FastCGI mode, MyServer does not
require a new process for every request and, therefore, the server
performs better. Please refer to the official FastCGI site for
more information about FastCGI.
In order to use PHP, you must first download the installer from:
www.php.net.
With the last versions of PHP you will also need to modify
the php.ini file to set the
cgi.force_redirect option to null. Find the line in the php
configuration file:
;cgi.force_redirect= 0
and remove the first semicolon.
The line will then read:
cgi.force_redirect = 0