• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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