in reply to Re^2: A very severe Perl installation problem!!
in thread A very severe Perl installation problem!!

Have a look at WAMP which has Apache, Mysql and PHP5 by default and plugins for Perl or maybe Big Apache which has everything you want but uses PHP4 not 5. It should be trivial to change it from using 4 -> 5 simply edit these lines in your httpd.conf (in Apache /etc dir I expect) and restart apache.

#ScriptAlias /php4/ "C:/php4win/" ScriptAlias /php5/ "C:/php5win/" AddType application/x-httpd-php .php AddType application/x-httpd-php .php3 AddType application/x-httpd-php .php4 #Action application/x-httpd-php "/php4/php.exe" Action application/x-httpd-php "/php5/php.exe"

cheers

tachyon