How to setup:
PHP: PHP environment is pre-installed by RaidenHTTPD, there are 2 series of PHP at this moment, they are PHP4 and PHP5, PHP4 and PHP5 are different in various ways and unless you are developing your own applications and plan to use MySQL5 series, PHP5 is not recommended, PHP4 version is the one that is compatible with most of the PHP software packages that you can find in the internet.
note: when installing RaidenHTTPD, plese close other web server softwares that may be using PHP.
PERL: If you want to setup RaidenHTTPD to run PERL programs, please read this
How to test:
To test PHP, simply generate a text file by notepad called test.php, the content of it should be as the following
<?
phpinfo(); // this will show some php information
?> |
and save this file into your web's document root directory, and open your browser and access http://YOURDOMAIN/test.php and you should see php information page.
To test PERL,
simply generate a text file by notepad called test.pl, the content of it should be as the following
use strict;
use warnings;
$|=1;
print "Content-type:text/html\n\n";
foreach my $var (sort keys %ENV) {
print $var . "=" . $ENV{$var} . "<br>\n";
}
|
and save this file into your web's document root directory, and open your browser and access http://YOURDOMAIN/test.pl and you should see perl environment variables page.
|