home | Manual index
CHECK !! : User's personal homepage
 

Dynamic web pages make your web site interactive and more attractive, for example, running a web forum system or web mail system require you to have dynamic web page platform, RaidenHTTPD is exactly designed for dynamic web pages.

RaidenHTTPD supports the most popular dynamic web page programming langauge which is called PHP, millions of programmers are using PHP to develope dynamic web sites around the globe and you can easily find lots of dynamic web site packages made in PHP for free. ( see: http://www.php.net/ )

RaidenHTTPD also supports CGI and PERL (requires installation of ActivePerl) to ensure that CGI programs can be executed. ( see: http://www.activestate.com/ )

 

Basic requirements: RaidenHTTPD 1.1.49+

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.

 

© 2002-2009, RaidenHTTPD TEAM

ftp server web server dns server mail server streaming server

© http://www.raidenhttpd.com/, 2002-2012 all rights reserved. The copyrighted works contained in this information service shall not be copied, reproduced, varied, altered, modified, adapted, distributed, performed and displayed in any form without the written permission of the copyright owner. All trademarks belong to their respective owners.