{"id":457,"date":"2021-07-01T06:14:08","date_gmt":"2021-07-01T11:14:08","guid":{"rendered":"https:\/\/www.knownhost.com\/kb\/?p=457"},"modified":"2021-10-26T07:01:11","modified_gmt":"2021-10-26T12:01:11","slug":"preventing-updates-to-websites","status":"publish","type":"post","link":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/","title":{"rendered":"Preventing Updates to Websites"},"content":{"rendered":"\n<p>If you wish to ensure no changes are being made to websites during a migration, it is best to consider preventing updates on your website and setup some form of maintenance or offline mode. Many\u00a0<a href=\"https:\/\/www.knownhost.com\/cms-hosting\">CMS\u00a0applications<\/a> offer this functionality through use of plugins or a .maintenance file in the document root. By placing the website in maintenance mode prior to a migration, this helps to ensure there will not be any changes made while the data is being copied, or in the time between the data copy and\u00a0DNS\u00a0updates. This can be very helpful when dealing with busy forums, blogs, and ecommerce websites. Included below are some general guidelines for placing common\u00a0CMS\u00a0applications into maintenance mode for a migration. For specific questions about various applications, we recommend consulting the documentation for the apps or with a developer who is familiar with the application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Manual or Generic Maintenance Mode<\/h2>\n\n\n\n<p>The following instructions can be used for most applications, but if there are specific guidelines for the application in the list of applications further below on the page, we recommend using the method that is easiest for you or your users. For applications that do not publish documentation on enabling maintenance mode, it is possible to configure maintenance mode manually with some simple .htaccess rules and html or php pages. The .htaccess file can be set up to rewrite all requests to a specific maintenance page, with a 503 response code. Specific IP addresses can be added to bypass the redirect rule.<\/p>\n\n\n\n<p>First, create a maintenance page. For the purposes of this example we will use a file called &#8220;maintenancepage.html&#8221;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;body&gt;\n&lt;h1&gt;Under Maintenance&lt;\/h1&gt;\n&lt;p&gt;This website is undergoing temporary maintenance. Please try visiting again later.&lt;\/p&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p>We place the file in the document root of the website, then add a block to the top of the website&#8217;s .htaccess file. If the .htaccess file does not exist, it can be created. The following code will redirect all visitors who do not have an IP address of 123.123.123.123 to the maintenance page. You can replace this IP with your public-facing IP address to allow your devices to bypass the maintenance page.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Enable maintenance mode\n ErrorDocument 503 \/maintenancepage.html\n &lt;IfModule mod_rewrite.c&gt;\n RewriteEngine On\n RewriteCond %{REQUEST_URI} !=\/maintenancepage.html\n RewriteCond %{REMOTE_ADDR} !=123.123.123.123\n RewriteRule ^.*$ - &#91;R=503,L]\n &lt;\/IfModule&gt;\n# End Enable maintenance mode<\/code><\/pre>\n\n\n\n<div id=\"block-aa3149-46e2-49\" class=\"wp-block-gutenbee-accordion block-aa3149-46e2-49\" data-collapse-others=\"true\"><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">WordPress<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\">WordPress offers several\u00a0<a href=\"https:\/\/wordpress.org\/plugins\/search\/maintenance\/\">plugins<\/a>\u00a0which can provide options for deploying a &#8220;maintenance&#8221; or &#8220;coming soon&#8221; page. WordPress core code does define a .maintenance file that can be placed in the document root of the website, but the core code generally will ignore this file if it is older than 10 minutes. There is a\u00a0<a href=\"https:\/\/developer.wordpress.org\/cli\/commands\/maintenance-mode\/activate\/\">wp-cli command<\/a>\u00a0that can be used to enable maintenance mode via the .maintenance file. This will display a simple maintenance message to anyone visiting the site, and a 503 &#8220;Service Temporarily Unavailable&#8221; response code, instead of displaying website content.<br><br><code>Briefly unavailable for scheduled maintenance. Check back in a minute.<\/code><br><br>A typical .maintenance file might have contents similar to the example below, where the value in the upgrading variable is listed in epoch time.<br><br><code>&lt;?php $upgrading = 1609459200; ?><\/code><br><br>If the .maintenance file is intended to be used for longer than 10 minutes, then it is possible to use a workaround to keep the website in maintenance indefinitely.<br><br><code>&lt;?php $upgrading = time(); ?><\/code><br><br>This is a workaround and not an officially supported or recommended procedure however. After the migration is complete, the .maintenance file or the maintenance mode plugin can be removed on the destination server.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Xenforo<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Xenforo offers an option to close the forums which is detailed in their\u00a0<a href=\"https:\/\/xenforo.com\/docs\/xf2\/options\/#closing-the-forums\">official manual<\/a>. To close the forums, use the &#8220;Board Active&#8221; option in the admin area, under Setup \u2192 Options. Visitors will not be able to view or post any content while the board is not active. The board can be reopened on the destination server once the migration is complete.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">WHMCS<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Within the General Settings of the administration portal (Configuration \u2192 System Settings \u2192 General Settings) it is possible to enable\u00a0<a href=\"https:\/\/docs.whmcs.com\/General_Tab#Maintenance_Mode\">Maintenance Mode<\/a>\u00a0as well as a\u00a0<a href=\"https:\/\/docs.whmcs.com\/General_Tab#Maintenance_Mode_Message\">Maintenance Mode Message<\/a>. While this is configured, customers are prevented from accessing the Client Area and the Maintenance Message will be displayed. This can be disabled on the destination server after the migration is complete.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Magento<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Magento 1.X installations can be placed into maintenance mode with an empty .maintenance file in the document root where Magento is installed. Magento 2 can use a .maintenance file inside the\u00a0<em>var<\/em>\/ directory, or can use\u00a0<code>bin\/magento maintenance:enable<\/code>\u00a0over CLI (please ensure commands are run using the user account containing the installation, and not as root). This can be disabled by removing the file or running\u00a0<code>bin\/magento maintenance:disable<\/code>\u00a0over CLI. More details can be found in the\u00a0<a href=\"https:\/\/devdocs.magento.com\/guides\/v2.4\/install-gde\/install\/cli\/install-cli-subcommands-maint.html\">Magento documentation<\/a>.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Moodle<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Maintenance mode can be enabled or disabled in the admin area under Administration \u2192 Site administration \u2192 Server \u2192 Maintenance. Maintenance mode will prevent any users other than administrators from using the site while maintenance is taking place. More information can be found in the\u00a0<a href=\"https:\/\/docs.moodle.org\/310\/en\/Maintenance_mode\">Moodle documentation<\/a>.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Prestashop<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Prestashop has a toggle in the admin portal under Configure \u2192 Site Parameters \u2192 General titled &#8220;Enable Shop&#8221; which will place the site in maintenance mode if set to No. Optionally it is possible to allow certain IP addresses to bypass the maintenance mode, or enter maintenance text to display to visitors while the website is under maintenance. More details can be found in the\u00a0<a href=\"https:\/\/doc.prestashop.com\/display\/PS17\/Maintenance#space-menu-link-content\">Prestashop documentation<\/a>.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">vBulletin<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Maintenance mode can be enabled in vBulletin&#8217;s admin portal and is located under Settings \u2192 Options. The &#8220;Forum Active&#8221; setting can be found in the &#8220;Turn your vBulletin On and Off&#8221; section as outlined in the\u00a0<a href=\"https:\/\/www.vbulletin.com\/docs\/html\/main\/acp_settings_options_onoff\">vBulletin documentation<\/a>.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Joomla<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Joomla&#8217;s maintenance mode can be toggled on or off either in the Admin \u2192 Site \u2192 Global Configuration menu for Joomla 2.5, or Admin \u2192 System \u2192 Global Configuration menu in Joomla 3.X. There are additional optional settings, such as\u00a0<em>Offline Message<\/em>, which are detailed in the\u00a0<a href=\"https:\/\/docs.joomla.org\/Taking_the_website_temporarily_offline\">Joomla documentation<\/a>.<\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Drupal<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">In the admin interface under the Manage menu, Mantenance Mode as well as a maintenance message can be togggled at Configuration \u2192 Development \u2192 Maintenance mode (admin\/config\/development\/maintenance). For more details, see the\u00a0<a href=\"https:\/\/www.drupal.org\/docs\/user_guide\/en\/extend-maintenance.html\">Drupal documentation<\/a><\/p><\/div><\/div><\/div><div class=\"wp-block-gutenbee-accordion-item\"><div class=\"wp-block-gutenbee-accordion-item-title\">Laravel<\/div><div class=\"wp-block-gutenbee-accordion-item-content-wrap\"><div class=\"wp-block-gutenbee-accordion-item-content\"><p class=\"wp-block-gutenbee-accordion-item-text\"><meta http-equiv=\"content-type\" content=\"text\/html; charset=utf-8\">Maintenance mode can be enabled for Laravel applications by executing the following command:\u00a0<code>php artisan down<\/code>\u00a0(please ensure commands are run using the user account containing the installation, and not as root). Maintenance mode can be disabled by running the comand\u00a0<code>php artisan up<\/code>. For more information, see the\u00a0<a href=\"https:\/\/laravel.com\/docs\/8.x\/configuration#maintenance-mode\">Laravel documentation<\/a>.<\/p><\/div><\/div><\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you wish to ensure no changes are being made to websites during a migration, it is best to consider preventing updates on your website and setup some form of maintenance or offline mode. Many\u00a0CMS\u00a0applications offer this functionality through use of plugins or a .maintenance file in the document root. By placing the website in [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[207,208,204,210,205,206,137,106,209],"class_list":["post-457","post","type-post","status-publish","format-standard","hentry","category-getting-started","tag-drupal","tag-laravel","tag-migrations","tag-moodle","tag-preventing-updates","tag-website-software","tag-whmcs","tag-wordpress","tag-xenforo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Preventing Updates to Websites - KnownHost<\/title>\n<meta name=\"description\" content=\"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Preventing Updates to Websites - KnownHost\" \/>\n<meta property=\"og:description\" content=\"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/\" \/>\n<meta property=\"og:site_name\" content=\"KnownHost\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-01T11:14:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-26T12:01:11+00:00\" \/>\n<meta name=\"author\" content=\"Jonathan K. W.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan K. W.\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/\"},\"author\":{\"name\":\"Jonathan K. W.\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\"},\"headline\":\"Preventing Updates to Websites\",\"datePublished\":\"2021-07-01T11:14:08+00:00\",\"dateModified\":\"2021-10-26T12:01:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/\"},\"wordCount\":998,\"keywords\":[\"drupal\",\"laravel\",\"migrations\",\"moodle\",\"preventing updates\",\"website software\",\"whmcs\",\"wordpress\",\"xenforo\"],\"articleSection\":[\"Getting Started\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/\",\"url\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/\",\"name\":\"Preventing Updates to Websites - KnownHost\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2021-07-01T11:14:08+00:00\",\"dateModified\":\"2021-10-26T12:01:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\"},\"description\":\"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/preventing-updates-to-websites\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Preventing Updates to Websites\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/\",\"name\":\"KnownHost\",\"description\":\"KnownHost provides a comprehensive webhosting knowledge base to help answer many of your common webhosting and linux questions.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.knownhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/3db6e20d1f33519cd68fe0ba1230a48b\",\"name\":\"Jonathan K. W.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g\",\"caption\":\"Jonathan K. W.\"},\"sameAs\":[\"https:\\\/\\\/www.knownhost.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Preventing Updates to Websites - KnownHost","description":"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/","og_locale":"en_US","og_type":"article","og_title":"Preventing Updates to Websites - KnownHost","og_description":"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.","og_url":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/","og_site_name":"KnownHost","article_published_time":"2021-07-01T11:14:08+00:00","article_modified_time":"2021-10-26T12:01:11+00:00","author":"Jonathan K. W.","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan K. W.","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/#article","isPartOf":{"@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/"},"author":{"name":"Jonathan K. W.","@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b"},"headline":"Preventing Updates to Websites","datePublished":"2021-07-01T11:14:08+00:00","dateModified":"2021-10-26T12:01:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/"},"wordCount":998,"keywords":["drupal","laravel","migrations","moodle","preventing updates","website software","whmcs","wordpress","xenforo"],"articleSection":["Getting Started"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/","url":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/","name":"Preventing Updates to Websites - KnownHost","isPartOf":{"@id":"https:\/\/www.knownhost.com\/kb\/#website"},"datePublished":"2021-07-01T11:14:08+00:00","dateModified":"2021-10-26T12:01:11+00:00","author":{"@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b"},"description":"Looking for a way to start preventing updates on your website? In this guide, we will show you how to set it up on KnownHost server.","breadcrumb":{"@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.knownhost.com\/kb\/preventing-updates-to-websites\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.knownhost.com\/kb\/"},{"@type":"ListItem","position":2,"name":"Preventing Updates to Websites"}]},{"@type":"WebSite","@id":"https:\/\/www.knownhost.com\/kb\/#website","url":"https:\/\/www.knownhost.com\/kb\/","name":"KnownHost","description":"KnownHost provides a comprehensive webhosting knowledge base to help answer many of your common webhosting and linux questions.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.knownhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.knownhost.com\/kb\/#\/schema\/person\/3db6e20d1f33519cd68fe0ba1230a48b","name":"Jonathan K. W.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f432b99e6651fe8d1deb57a285bd84e806f1c9ae8b4c6c585d7e3a0b33789ad9?s=96&d=mm&r=g","caption":"Jonathan K. W."},"sameAs":["https:\/\/www.knownhost.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts\/457","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/comments?post=457"}],"version-history":[{"count":0,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/posts\/457\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/media?parent=457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/categories?post=457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.knownhost.com\/kb\/wp-json\/wp\/v2\/tags?post=457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}