Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
I installed perl via yum, fcgi from the domain dashboard/hosting is activated,
Options +ExecCGI
AddHandler cgi-script .cgi .pl
is addet to the Apache direcctives
I checked the permissions of the script files
and I get:
With my scripts I used a BEGIN block:
BEGIN {
$0 =~ m~(.*)/[^/]+~ || $0 =~ m~(.*)\\[^\\]+~;
$1 ? (unshift @INC, $1) : (@INC = reverse @INC);
}
An user of the perl-community.de told me that the perl version which is shipped with alma8, doesn't deliver $0 and so the code of the block can't work.
I replaced the code with use lib "." and everything works fine now.