{"id":3236,"date":"2014-05-08T18:10:14","date_gmt":"2014-05-08T18:10:14","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2014\/05\/08\/install-apc-for-php\/"},"modified":"2021-08-16T23:01:40","modified_gmt":"2021-08-17T03:01:40","slug":"install-apc-for-php","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/","title":{"rendered":"Install APC for PHP"},"content":{"rendered":"<p class=\"alert alert-danger\">Of note, APC has been discontinued. Instead, check out the <a href=\"https:\/\/www.inmotionhosting.com\/support\/product-guides\/wordpress-hosting\/nginx-cache-manager\/\">NGINX Cache Manager<\/a> for your PHP caching needs.<\/p>\n<p>In this guide I\u2019ll cover how to install APC for PHP which is the Alternative PHP Cache that can help speed up your PHP powered website. You can read our <a href=\"\/support\/website\/speed-up-php-with-apc\/\" target=\"_blank\" rel=\"noopener\">speed up PHP with APC<\/a> guide for more info on how APC works.<\/p>\n<p>After you install APC, you will want to learn how to <a href=\"\/support\/website\/view-and-clear-php-apc-cache\/\" target=\"_blank\" rel=\"noopener\">view and clear the APC cache<\/a>. That way you can keep tabs on what APC is caching, and how effective it might be working for your website.<\/p>\n<h2>Installing APC for PHP<\/h2>\n<p>You\u2019ll need to have root access on either a VPS or dedicated server in order to install APC for PHP. You also will need to be running either the <strong>FastCGI<\/strong> or <strong>DSO<\/strong> <a href=\"\/support\/website\/choosing-the-best-php-handler\/\" target=\"_blank\" rel=\"noopener\">PHP handlers<\/a> for APC to function properly.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"_blank\" rel=\"noopener\">Login to your server via SSH<\/a> with your <a href=\"\/support\/server\/ssh\/standard-vs-root-access\/\" target=\"_blank\" rel=\"noopener\">root SSH access<\/a>.<\/li>\n<li>Change directories with the following command:\n<p class=\"cli\">cd \/usr\/local\/src<\/p>\n<\/li>\n<li>Get the source code for APC with the following code:\n<p class=\"cli\">wget https:\/\/pecl.php.net\/get\/APC-3.1.13.tgz<\/p>\n<\/li>\n<li>Now extract the APC archive with this command:\n<p class=\"cli\">tar xvzf APC-3.1.13.tgz<\/p>\n<\/li>\n<li>Navigate into the extracted folder:\n<p class=\"cli\">cd APC-3.1.13<\/p>\n<\/li>\n<li>Now run the following command to configure APC to your PHP environment:\n<p class=\"cli\">phpize<\/p>\n<p>You should get something like this back:<\/p>\n<p class=\"cli\">Configuring for:<br>\nPHP Api Version: 20090626<br>\nZend Module Api No: 20090626<br>\nZend Extension Api No: 220090626<\/p>\n<\/li>\n<li>Next configure the source code to run on your server with this command:\n<p class=\"cli\">.\/configure<\/p>\n<p>You\u2019ll see a lot of text scrolling by looking like this:<\/p>\n<p class=\"cli\">checking for grep that handles long lines and -e\u2026 \/bin\/grep<br>\nchecking for egrep\u2026 \/bin\/grep -E<br>\nchecking for a sed that does not truncate output\u2026 \/bin\/sed<br>\nchecking for cc\u2026 cc<br>\n\u2026\u2026\u2026.<br>\ncreating libtool<br>\nappending configuration tag \u201cCXX\u201d to libtool<br>\nconfigure: creating .\/config.status<br>\nconfig.status: creating config.h<\/p>\n<\/li>\n<li>Now you\u2019ll want to actually create the APC software with this command:\n<p class=\"cli\">make<\/p>\n<p>Again you\u2019ll see a lot of text scrolling by looking like:<\/p>\n<p class=\"cli\">\/bin\/sh \/usr\/local\/src\/APC-3.1.13\/libtool \u2013mode=compile cc -I. -I\/usr\/local\/src\/APC-3.1.13 -DPHP_ATOM_INC -I\/usr\/local\/src\/APC-3.1.13\/include -I\/usr\/local\/src\/APC-3.1.13\/main -I\/usr\/local\/src\/APC-3.1.13 -I\/usr\/local\/include\/php -I\/usr\/local\/include\/php\/main -I\/usr\/local\/include\/php\/TSRM -I\/usr\/local\/include\/php\/Zend -I\/usr\/local\/include\/php\/ext -I\/usr\/local\/include\/php\/ext\/date\/lib -DHAVE_CONFIG_H -g -O2 -c \/usr\/local\/src\/APC-3.1.13\/apc.c -o apc.lo mkdir .libs<br>\n\u2026\u2026\u2026<br>\n\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014-<br>\nLibraries have been installed in:<br>\n\/usr\/local\/src\/APC-3.1.13\/modules<br>\nBuild complete.<\/p>\n<\/li>\n<li>Locate the <span style=\"color: red;\">extension_dir<\/span> for PHP with this command:\n<p class=\"cli\">grep extension_dir \/usr\/local\/lib\/php.ini<\/p>\n<p>You should get back a path that looks something like:<\/p>\n<p class=\"cli\">extension_dir = \u201c\/usr\/local\/lib\/php\/extensions\/no-debug-non-zts-20090626\u201d<\/p>\n<\/li>\n<li>Run this command to copy the APC Apache module (<span style=\"color: red;\">apc.so<\/span>) to your PHP extension directory:\n<p class=\"cli\">cp -frp modules\/apc.so \/usr\/local\/lib\/php\/extensions\/no-debug-non-zts-20090626\/<\/p>\n<\/li>\n<li>Edit your <span style=\"color: red;\">php.ini<\/span> file with your favorite text editor after making a backup:\n<p class=\"cli\">cp -frp \/usr\/local\/lib\/php.ini \/usr\/local\/lib\/php.ini-BAK<br>\nvi \/usr\/local\/lib\/php.ini<\/p>\n<p>Add these APC settings to the very bottom and save the <span style=\"color: red;\">php.ini<\/span> file:<\/p>\n<p class=\"cli\">extension=apc.so<br>\napc.enabled=1<br>\napc.shm_size=128<br>\napc.cache_by_default=\u201d1\u2033<br>\napc.shm_segments=\u201d1\u2033<br>\napc.ttl=\u201d7200\u2033<br>\napc.user_ttl=\u201d7200\u2033<br>\napc.gc_ttl=\u201d1800\u2033<br>\napc.optimization = 0<br>\napc.num_files_hint=\u201d1024\u2033<br>\napc.use_request_time = 1<br>\napc.mmap_file_mask=\u201d\/tmp\/apc.XXXXXX\u201d<br>\napc.enable_cli=\u201d0\u2033<br>\napc.slam_defense=\u201d0\u2033<br>\napc.file_update_protection=\u201d2\u2033<br>\napc.max_file_size=\u201d1M\u201d<br>\napc.stat=\u201d1\u2033<br>\napc.write_lock=\u201d1\u2033<br>\napc.report_autofilter=\u201d0\u2033<br>\napc.include_once_override=\u201d0\u2033<br>\napc.rfc1867=\u201d0\u2033<br>\napc.rfc1867_prefix=\u201dupload_\u201d<br>\napc.rfc1867_name=\u201dAPC_UPLOAD_PROGRESS\u201d<br>\napc.rfc1867_freq=\u201d0\u2033<br>\napc.localcache=\u201d0\u2033<br>\napc.localcache.size=\u201d512\u2033<br>\napc.coredump_unmap=\u201d0\u2033<\/p>\n<\/li>\n<li>Place the following code inside a <span style=\"color: red;\">info.php<\/span> script on your site:\n<p class=\"cli\">&lt;?php<br>\nphpinfo();<br>\n?&gt;<\/p>\n<\/li>\n<li>Access that script on your site such as <span style=\"color: red;\">https:\/\/example.com\/info.php<\/span>. Look for the <span style=\"color: red;\">apc<\/span> section: <img decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\" alt=\"apc enabled in phpinfo\">\n<div class=\"alert alert-danger\" style=\"margin-top: 15px;\">\n<p>If you don\u2019t see an <strong>apc<\/strong> section yet you might need to restart Apache with this command:<\/p>\n<p class=\"cli\">service httpd restart<\/p>\n<\/div>\n<\/li>\n<\/ol>\n<p style=\"margin-top: 15px;\">Congratulations! You should now have successfully installed APC for PHP!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Of note, APC has been discontinued. Instead, check out the NGINX Cache Manager for your PHP caching needs. In this guide I\u2019ll cover how to install APC for PHP which is the Alternative PHP Cache that can help speed up your PHP powered website. You can read our speed up PHP with APC guide for<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"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":[4288],"tags":[],"class_list":["post-3236","post","type-post","status-publish","format-standard","hentry","category-website"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install APC for PHP | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.\" \/>\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\/website\/install-apc-for-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install APC for PHP | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\" \/>\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=\"2014-05-08T18:10:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:01:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Install APC for PHP\",\"datePublished\":\"2014-05-08T18:10:14+00:00\",\"dateModified\":\"2021-08-17T03:01:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\"},\"wordCount\":706,\"commentCount\":19,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\",\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\",\"name\":\"Install APC for PHP | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\",\"datePublished\":\"2014-05-08T18:10:14+00:00\",\"dateModified\":\"2021-08-17T03:01:40+00:00\",\"description\":\"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install APC for PHP\"}]},{\"@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\/f9a4fc454cd1df128ee8e898d30d4644\",\"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\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install APC for PHP | InMotion Hosting","description":"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.","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\/website\/install-apc-for-php\/","og_locale":"en_US","og_type":"article","og_title":"Install APC for PHP | InMotion Hosting","og_description":"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2014-05-08T18:10:14+00:00","article_modified_time":"2021-08-17T03:01:40+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png","type":"","width":"","height":""}],"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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Install APC for PHP","datePublished":"2014-05-08T18:10:14+00:00","dateModified":"2021-08-17T03:01:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/"},"wordCount":706,"commentCount":19,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png","articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/","name":"Install APC for PHP | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png","datePublished":"2014-05-08T18:10:14+00:00","dateModified":"2021-08-17T03:01:40+00:00","description":"The Advanced PHP Cache or APC, can help speed up PHP scripts by caching the opcode or operation code to speed up execution. This guide explains how to install APC for PHP.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/php\/apc\/apc-enabled-in-phpinfo.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/install-apc-for-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Install APC for PHP"}]},{"@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\/f9a4fc454cd1df128ee8e898d30d4644","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\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4288,"name":"Website","slug":"website","link":"https:\/\/www.inmotionhosting.com\/support\/website\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3236","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\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=3236"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3236\/revisions"}],"predecessor-version":[{"id":84272,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3236\/revisions\/84272"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=3236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=3236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=3236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}