Disabling update check

On intranet/internal WordPress installations it might be required to block external requests, including the plugin feature to check for updates.

To do that, use either the WP_HTTP_BLOCK_EXTERNAL constant in your wp-config.php file, that blocks all external requests globally on the whole WordPress installation:

define( 'WP_HTTP_BLOCK_EXTERNAL', true );

..or, if you wish blocking requests only from Ajax Search Pro, then use the ASP_BLOCK_EXTERNAL constant:

define( 'ASP_BLOCK_EXTERNAL', true );

Last updated

Copyright Ernest Marcinko