{"id":2659,"date":"2020-08-10T09:18:00","date_gmt":"2020-08-10T13:18:00","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/04\/24\/enable-zend-optimizer-or-zend-guard\/"},"modified":"2021-08-16T15:35:06","modified_gmt":"2021-08-16T19:35:06","slug":"enable-zend-optimizer-or-zend-guard","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/","title":{"rendered":"Enable Zend Optimizer or Zend Guard"},"content":{"rendered":"<p>In this article, I&#8217;ll show you about Zend Guard and Zend Optimizer for PHP, which is currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance-enhancing products out there.<\/p>\n<h2>What is Zend Optimizer?<\/h2>\n<p>The Zend Optimizer is a free runtime you can use with files encoded by Zend Guard, it can be simply added as a PHP extension into your current PHP <strong>php.ini<\/strong> configuration. Zend Optimizer can help speed up the performance and reduce the server demand of your PHP scripts which have been encoded by Zend Guard.<\/p>\n<p>You can read more about <a href=\"https:\/\/static.zend.com\/topics\/Zend-Optimizer-3.3.3-Release-Notes-V2.txt\" target=\"_blank\" rel=\"noopener noreferrer\">Zend Optimizer via the release notes on Zend.com<\/a><\/p>\n<h2>What is Zend Guard?<\/h2>\n<p class=\"alert alert-danger\">Zend Guard works with PHP up to version 5.6.  As of PHP version 7, Zend Guard was discontinued.  To learn more about Zen Guard, please see the <a href=\"https:\/\/www.zend.com\/blog\/zend-guard-and-php-7\" rel=\"noopener noreferrer\" title=\"unique\" target=\"_blank\">official blog posts from Zend<\/a>.<\/p>\n<p>Running Zend Guard on your PHP scripts will help encode your scripts to prevent reverse engineering and unauthorized edits to your code, it will also protect your code from unauthorized use, and you can run Zend Guard encoded scripts through Zend Optimizer (with <strong>PHP 5.2<\/strong> and older) to help enhance the performance of your PHP applications as well.<\/p>\n<p>You can find more information about <a href=\"https:\/\/www.zend.com\/en\/products\/guard\/\" target=\"_blank\" rel=\"noopener noreferrer\">Zend Guard direct from Zend.com<\/a> as well.<\/p>\n<h2>Am I already using Zend Optimizer or Zend Guard?<\/h2>\n<p>You can easily check if your website is already using Zend Optimizer or Zend Guard by <a href=\"\/support\/website\/how-to-create-a-phpinfo-page\/\" target=\"_blank\" rel=\"noopener noreferrer\">viewing your PHP settings using a <strong>phpinfo.php<\/strong> page<\/a>.<\/p>\n<h3>ZendOptimzer<\/h3>\n<p>If you are running <strong>PHP 5.2<\/strong> or older, you should already have <strong>Zend Optimzer<\/strong> enabled, and it should look like this:<\/p>\n<p class=\"code_block\" style=\"width: 600px;\">This program makes use of the Zend Scripting Language Engine:<br \/>\nZend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies<br \/>\nwith the ionCube PHP Loader v4.2.2, Copyright (c) 2002-2012, by ionCube Ltd., and<br \/>\nwith <strong style=\"color: red;\">Zend Optimizer v3.3.9<\/strong>, Copyright (c) 1998-2009, by Zend Technologies<\/p>\n<h3>ZendGuard<\/h3>\n<p>If you are running <strong>PHP 5.3<\/strong> or newer, you should more than likely already have <strong>Zend Guard<\/strong> enabled, and in your <strong>phpinfo.php<\/strong> page it should look like this:<\/p>\n<p class=\"code_block\">This program makes use of the Zend Scripting Language Engine:<br \/>\nZend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies<br \/>\nwith the ionCube PHP Loader v4.2.2, Copyright (c) 2002-2012, by ionCube Ltd., and<br \/>\nwith <strong style=\"color: red;\">Zend Guard Loader v3.3<\/strong>, Copyright (c) 1998-2010, by Zend Technologies<\/p>\n<h2>Enable Zend Optimizer<\/h2>\n<p>To use Zend Optimizer, you need to be running <strong>PHP 5.2<\/strong> or older. In a lot of cases you would want to <a href=\"\/support\/website\/multiple-php-versions\/\" target=\"_blank\" rel=\"noopener noreferrer\">use multiple PHP versions on one account<\/a> with the help of <strong>.htaccess<\/strong> rules, so that you can still use Zend Guard to encode your files. On a shared server you&#8217;d <a href=\"\/support\/website\/how-to-change-the-php-version-your-account-uses\/\" target=\"_blank\" rel=\"noopener noreferrer\">change the PHP version your account uses<\/a>. With a VPS or dedicated server you could follow the steps for <a href=\"\/support\/\" target=\"_blank\" rel=\"noopener noreferrer\">how to upgrade PHP using EasyApache<\/a>, and just choose to downgrade instead.<\/p>\n<p>Typically just switching your PHP version should load the proper Zend product, to be sure though, on your <strong>phpinfo.php<\/strong> page you should see this in about the 7th field down when you&#8217;re using <strong>PHP 5.2<\/strong> with <strong>Zend Optimizer<\/strong>:<\/p>\n<p class=\"code_block\" style=\"width: 550px;\">Loaded Configuration File: \/opt\/php52\/lib\/php.ini<\/p>\n<p>If you instead see something like:<\/p>\n<p class=\"code_block\" style=\"width: 550px;\">Loaded Configuration File: \/home\/userna5\/public_html\/php.ini<\/p>\n<p>Then you have probably at some point followed our steps for <a href=\"\/support\/website\/recursive-php-ini\/\" target=\"_blank\" rel=\"noopener noreferrer\">making your <strong>php.ini<\/strong> file recursive<\/a>. In which case, you need to make sure you&#8217;re editing your <strong>\/public_html\/php.ini<\/strong> file to include the Zend Optimizer includes of:<\/p>\n<p class=\"code_block\" style=\"width: 670px; max-width: 670px;\">[Zend]\nzend_extension=&#8221;\/opt\/php52\/lib\/php\/extensions\/no-debug-non-zts-20060613\/<strong style=\"color: red;\">ZendOptimizer.so<\/strong>&#8220;<\/p>\n<p>If you have any problems at all getting Zend Optimizer working on your account please <a href=\"\/support\/amp\/how-to-get-great-technical-support\/\" target=\"_blank\" rel=\"noopener noreferrer\">contact technical support<\/a> for further assistance.<\/p>\n<h2>Enable Zend Guard<\/h2>\n<p>In order to enable Zend Guard on your server, you first need to be sure you&#8217;re running <strong>PHP 5.3<\/strong> or newer. If you are on a shared server you can <a href=\"\/support\/website\/how-to-change-the-php-version-your-account-uses\/\" target=\"_blank\" rel=\"noopener noreferrer\">change the PHP version your account uses<\/a>. If you&#8217;re on a VPS or dedicated server with root access, you can <a href=\"\/support\/\" target=\"_blank\" rel=\"noopener noreferrer\">upgrade PHP using EasyApache<\/a> if all of your PHP applications can run without <strong>PHP 5.2<\/strong>, or simply <a href=\"\/support\/amp\/how-to-get-great-technical-support\/\" target=\"_blank\" rel=\"noopener noreferrer\">contact technical support<\/a> to also have the ability to switch between PHP versions on your server.<\/p>\n<p>Simply switching PHP versions should load the proper Zend product for you, your <strong>phpinfo.php<\/strong> page should read this in about the 7th field down when you&#8217;re using <strong>PHP 5.3+<\/strong> with <strong>Zend Guard<\/strong>:<\/p>\n<p class=\"code_block\" style=\"width: 550px;\">Loaded Configuration File: \/usr\/local\/lib\/php.ini<\/p>\n<p>If you instead see something like:<\/p>\n<p class=\"code_block\" style=\"width: 550px;\">Loaded Configuration File: \/home\/userna5\/public_html\/php.ini<\/p>\n<p>You probably at some point followed our steps for <a href=\"\/support\/website\/recursive-php-ini\/\" target=\"_blank\" rel=\"noopener noreferrer\">making your <strong>php.ini<\/strong> file recursive<\/a>. In which case, you need to make sure you&#8217;re editing your <strong>\/public_html\/php.ini<\/strong> file to include the Zend Guard includes of:<\/p>\n<p class=\"code_block\" style=\"width: 550px;\">[Zend]\nzend_extension=&#8221;\/usr\/local\/Zend\/lib\/Guard-5.5.0\/php-5.3.x\/<strong style=\"color: red;\">ZendGuardLoader.so<\/strong>&#8220;<\/p>\n<p>If you have any problems with Zend Guard working on your account please <a href=\"\/support\/amp\/how-to-get-great-technical-support\/\" target=\"_blank\" rel=\"noopener noreferrer\">contact technical support<\/a> for further assistance.<\/p>\n<p>You should now hopefully understand a bit more about Zend Optimizer and Zend Guard and how to get your account setup to be able to take advantage of them!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, I&#8217;ll show you about Zend Guard and Zend Optimizer for PHP, which is currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance-enhancing products out there. What is Zend Optimizer? The Zend Optimizer is a free runtime you can use with files encoded by Zend Guard, it can<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\"> Read More ><\/a><\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4366],"tags":[],"class_list":["post-2659","post","type-post","status-publish","format-standard","hentry","category-zend"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Enable Zend Optimizer or Zend Guard<\/title>\n<meta name=\"description\" content=\"In this article I&#039;ll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.\" \/>\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.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enable Zend Optimizer or Zend Guard\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;ll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-10T13:18:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-16T19:35:06+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b\"},\"headline\":\"Enable Zend Optimizer or Zend Guard\",\"datePublished\":\"2020-08-10T13:18:00+00:00\",\"dateModified\":\"2021-08-16T19:35:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\"},\"wordCount\":848,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Zend Framework\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\",\"name\":\"Enable Zend Optimizer or Zend Guard\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2020-08-10T13:18:00+00:00\",\"dateModified\":\"2021-08-16T19:35:06+00:00\",\"description\":\"In this article I'll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enable Zend Optimizer or Zend Guard\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/arn\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enable Zend Optimizer or Zend Guard","description":"In this article I'll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.","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.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/","og_locale":"en_US","og_type":"article","og_title":"Enable Zend Optimizer or Zend Guard","og_description":"In this article I'll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-08-10T13:18:00+00:00","article_modified_time":"2021-08-16T19:35:06+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b"},"headline":"Enable Zend Optimizer or Zend Guard","datePublished":"2020-08-10T13:18:00+00:00","dateModified":"2021-08-16T19:35:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/"},"wordCount":848,"commentCount":1,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Zend Framework"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/","name":"Enable Zend Optimizer or Zend Guard","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2020-08-10T13:18:00+00:00","dateModified":"2021-08-16T19:35:06+00:00","description":"In this article I'll show you about Zend Guard and Zend Optimizer for PHP, which are currently one of the most widely accepted PHP encoding and obfuscation, and PHP performance enhancing products out there.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/zend\/enable-zend-optimizer-or-zend-guard\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Enable Zend Optimizer or Zend Guard"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/8d626175dd3b70ee90a172bdb09a460b","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/arn\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2659","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2659"}],"version-history":[{"count":7,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2659\/revisions"}],"predecessor-version":[{"id":82846,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2659\/revisions\/82846"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2659"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2659"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2659"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}