For testing Perl in php I run this script: PHP: <?php print "Hello from PHP! "; $perl = new Perl(); $perl->eval('print "Hello from perl! "'); print "Bye! "; ?> For this site I enabled everything: SSI,Ruby,SuEXEC and PHP=CGI And than I get mod_fcgid: stderr: PHP Fatal error: Class 'Perl' not found in /var/www/clients/client0/web9/web/index.php on line 4 Could me someone give me a hint how to handle Perl with ispc3? Thank you.
That issue is not ISPConfig specific as you use a PHP class that is not defined or installed on your server. As far as I know, there is no class "Perl" in any sztandard PHP, so what you try to use there must be eiter a PHP addon module or any other custom class which needs to be installed on your server and included in your php script before you can use it.