• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved Can anyone tell me what this warning means?

David Jimenez

Basic Pleskian
My server log shows the following warning anytime someone selects index.shtml (home page).

mod_include: Options +Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed

I have tried adding a .htaccess file (Options + Includes) and also running without the .htaccess file, but it makes no difference. I do have .htaccess in various subdirectories that do not contain index.html files so that the directory listing shows up and that works. The only warning is when someone goes to our home page.

Any thoughts?
 
Hi David Jimenez,

mod_include: Options +Includes (or IncludesNoExec) wasn't set
=> not correctly configured for your needs!

Pls. add this example code in your "Additional directives for HTTP" "...HTTPS" textboxes at => HOME > Subscriptions > YOUR-DOMAIN.COM > Apache and nginx Settings > (textbox) Additional directives for HTTP AND Additional directives for HTTPS
Code:
<Directory /var/www/vhosts/YOUR-DOMAIN.COM/httpdocs>
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    Options +Includes
</Directory>
( Pls. change the example "YOUR-DOMAIN.COM" to your correct FQDN )


Consider to post your apache configuration files ( incl. possible files like "vhost.conf" AND "vhost_ssl.conf" ), located at "/var/www/vhosts/system/YOUR-DOMAIN.COM/conf", if you experience further issues, pls.
 
Last edited by a moderator:
Back
Top