• 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.

Question Domain suspedend, but still online?

Hoansu

New Pleskian
When a doman or subscription is suspended, it has no effect on the fly. The domains are still online. It takes a while until the command it has effect. What can i do to suspend domains or subscriptions immediately?
 
That is not possible. When you suspend a subsription, a rewrite-block is added to httpd.conf:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{ENV:REDIRECT_STATUS} !=503
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif|ico|css)$ [NC]
RewriteCond %{REQUEST_URI} !robots\.txt$ [NC]
RewriteRule ^ - [L,R=503]
</IfModule>

This leads to the 503 page. But this new block must be loaded into the Apache configuration. That is happening when a graceful or full restart is executed. That reload or restart is executed after the configured server restart interval has expired. For that reason you need to wait a while until the new setting is applied. However, if you reload/restart Apache manually, the setting will be read immediately and applied.

When you do not see a change in your browser it is probably for the reason that a cache is still delivering the previous page content. As you can see, there are some conditions ahead of the rewrite. It is only applied if the file does not end on an image extension and is not robots.txt. This shall ensure that the suspension is search engine friendly.
 
Back
Top