5 common problems when hosting a CGI-BIN (Perl) script!
MS-style new lines
If you are using MS Windows (DOS style) to write/edit your scripts, make sure that the scripts new lines are free from \n\r (CR+LF) we are a Linux (Unix) host, and each new line should end only with \n (LF). Generally, using a text editor is the simplest and most convenient way of converting a text file between different new line formats; most modern editors can read and write files using at least the different ASCII CR/LF conventions. Unfortunately, the standard Windows editor Notepad is not one of them, though Wordpad is. In addition, you can use the following tools to convert your files before uploading to our service from CR+LF to LF-only new lines. Command line tool: GUI Editor: For example, if you want to execute cgi from the /var/www/html/cgi directory, just create and upload the .htaccess file in the /var/www/html/cgi directory. Below, you will see how the .htaccess file must appear: AddHandler cgi-script .cgiOptions +ExecCGI For more information about apache configuration directives, please visit:

