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.
We value your experience with Plesk during 2025 Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025. Please take this short survey: https://survey.webpros.com/
On Plesk for Linux mod_status is disabled on upgrades to improve Apache security. This is a one-time operation that occurs during an upgrade. You can manually enable mod_status later if needed.
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.