• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Bug in FCGI support via web panel?

A

ash113

Guest
When you enable FCGI support via the panel in Plesk 8.3, it sets up the following in the site's apache conf:

Code:
        <IfModule mod_fcgid.c>
                AddHandler fcgid-script .fcgi
                Options +FollowSymLinks +ExecCGI
        </IfModule>
                Options -Includes -ExecCGI

The problem being that the line at the end, which is presumably the default, immediately turns off ExecCGI that had been turned on one line earlier. Leaving .fcgi files giving 403 errors. This can be fixed by adding a .htaccess that turns it back on, but that seems an unnecessary hoop to jump through. I'd think the right fix is for Plesk to set the default line at the top of the VirtualHost block, not the bottom, so that the various overides that might get turns on work properly.
 
I have tested this functionality on Plesk 8.3.0 with January 31st update installed and noted following configuration change:

<IfModule mod_fcgid.c>
AddHandler fcgid-script .fcgi
Options +FollowSymLinks +ExecCGI
</IfModule>

No line with disabling the option.
 
Back
Top