#!/usr/bin/perl -w # # ERROR / FEHLER !! # +++++++++++++++++ # If you can read this line Perl is not executed. # Ask your hoster how to activate Perl. # # Wenn Du diese Zeile hier siehst, dann wird Perl nicht ausgefuehrt. # Frage Deinen Hoster, ob und wie Du Perl aktivieren kannst. # # Sample Apache-Config: # # Options ExecCGI # AddHandler cgi-script cgi pl # # # This file is part of MySQLDumper released under the GNU/GPL 2 license # http://www.mysqldumper.net # @package MySQLDumper # @version $Rev$ # @author $Author$ # @lastmodified $Date$ # @filesource $URL$ use strict; use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use CGI; warningsToBrowser(1); my $cgi = new CGI; print $cgi->header(-type => 'text/html; charset=utf-8', -cache_control => 'no-cache, no-store, must-revalidate'); print "\n"; print "MySQLDumper - simple Perl test\n"; print ''; print "\n\n"; print "

If you see this perl works fine on your system !

"; print "Wenn Du das siehst, funktioniert Perl auf Deinem System !

"; print "\n";