Revision as of 21:28, 3 October 2024 by KazVee (talk | contribs) (Created page with "== Perl == Perl is one of the most established programming languages on the Internet. With its powerful string processing capabilities and the optional availability of almost every library imaginable, Perl is an excellent choice for somebody looking to allow flexibility and expandability. At HelioHost, we offer Perl configured with more than 100 basic libraries and can add additional modules upon request. If you're a Perl developer looking for free hosting, HelioHost is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Perl

Perl

Perl is one of the most established programming languages on the Internet. With its powerful string processing capabilities and the optional availability of almost every library imaginable, Perl is an excellent choice for somebody looking to allow flexibility and expandability. At HelioHost, we offer Perl configured with more than 100 basic libraries and can add additional modules upon request. If you're a Perl developer looking for free hosting, HelioHost is the place to be.

Details

If you need a different version of Perl, you'll need to get a VPS.

Server Path Version Loader
Johnny /usr/bin/perl 5.16.3 CGI
Tommy /usr/bin/perl 5.16.3 CGI

Enabled

Extensive set of default libraries

HelioHost offers more than 100 Perl libraries by default on all free hosting accounts.

Requesting additional Perl libraries

To request additional libraries, please raise a request in the [Customer Service forum](https://helionet.org/index/forum/45-customer-service/?do=add), making sure to provide your username, your server, and the libraries you need including any relevant version numbers for them.

Disabled

Root-level Access

As a security restriction, we force each Perl script to run as its HelioHost user through suEXEC. This prevents any actions that require root-level access. This shouldn't be a problem for legitimate uses.

Getting Started

Perl scripts are easy to configure and run. To test it out with a simple example, follow the steps below:

Navigate to your main domain

If you were transferred from the old cPanel, your main domain will be parked on the `public_html` directory.

If you created a new account on Plesk, your directory will be `httpdocs`.

Create a `perl.pl` file inside the `cgi-bin` directory with these contents:

#!/usr/bin/perl

print "Content-type: text/html\r\n\r\n";
print "Perl as CGI is working...";

Edit file permissions

Edit the `perl.pl` file's CHMOD permissions to `755` (`rwx r-x r-x`).

Open file in your browser

Navigate to `domain.heliohost.us/cgi-bin/perl.pl` in your browser.

If everything is working you should see `Perl as CGI is working...` displayed in your browser.

Guidance for editing `perl.pl`

Leave the first line as the shebang (`#!/usr/bin/perl`).

Below the shebang, you may write Perl code.

Ensure you output a `Content-type` header before anything else.

Making Perl executable inside `httpdocs`

If you prefer to make Perl executable directly inside the `httpdocs` folder, you can do this by using an `.htaccess` file with these contents:

Options +ExecCGI
AddHandler cgi-script .pl

You can then navigate to `domain.heliohost.us/perl.pl` and view the `Perl as CGI is working...` success message.

Further Learning

A good tutorial can be found here.


This page was last edited on 3 October 2024, at 21:28.