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

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