{"id":614,"date":"2013-03-06T21:33:25","date_gmt":"2013-03-07T02:33:25","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/03\/06\/create-stat-parsing-script-to-review-website-visits\/"},"modified":"2021-08-16T23:19:51","modified_gmt":"2021-08-17T03:19:51","slug":"create-stat-parsing-script-to-review-website-visits","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/","title":{"rendered":"Create stat parsing script to review website visits"},"content":{"rendered":"<p>In this article I\u2019m going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website\u2019s daily visitor statistics.<\/p>\n<p>Sometimes it\u2019s nice to be able to see at a glance the overall level of traffic that your website receives. This can help you see if an average increase in your level of traffic might be the cause of recent resource usage problems you\u2019ve been having.<\/p>\n<h2>Create bash stat parsing script<\/h2>\n<p>Using the steps below I\u2019ll show you how to create a bash stat parsing script that will go through the Webalizer logs stored on your account and put all of the information into a single HTML report for you.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\" target=\"_blank\" rel=\"noopener\">Login to your cPanel<\/a>.<\/li>\n<li>Under the <strong>Files<\/strong> section, click on <strong>File Manager<\/strong>, then select <strong>Home Directory<\/strong> and click on <strong>Go<\/strong>.<\/li>\n<li>At the top-left, click on <strong>+ New File<\/strong>, name the file <strong>genSTATS<\/strong> and click on <strong>Create New File<\/strong>.<\/li>\n<li>Now right-click on the <strong>genSTATS<\/strong> file and click on <strong>Edit<\/strong>. Now enter in the following code, making sure to edit <strong>user=userna5<\/strong> with your own cPanel username:\n<p class=\"code_block\" style=\"width: 500px;\">#!\/bin\/bash<\/p>\n<p> <strong style=\"color: red;\">user=userna5<\/strong><br> logPath=\/home\/$user\/tmp\/webalizer\/<\/p>\n<p> rm -rf \/home\/$user\/STATS.htm<\/p>\n<p> for log in `find $logPath -type f -name \u201cusage*\u201d -exec grep \u201cdaily_usage_\u201d {} ; | sed \u2018s#_# #g\u2019 | awk \u2018{print substr($4,1,6)}\u2019 | sort -n`; do awk \/\u201dDaily usage for \u201c\/,\/\\\/TABLE\/ $logPath\u201dusage_\u201d$log\u201d.html\u201d | grep -v \u201cIMG SRC\u201d &gt;&gt; \/home\/$user\/STATS.htm; done<\/p>\n<p>Then click on <strong>Save Changes<\/strong> at the top-right.<\/p>\n<\/li>\n<\/ol>\n<h2>Create PHP script to run stat script<\/h2>\n<p>Now that you\u2019ve already created a bash script to compile your stats into a single HTML report, we can also create a PHP script that will allow you to run the bash script after providing a username and password, and view the compiled HTML report.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\" target=\"_blank\" rel=\"noopener\">Login to your cPanel<\/a>.<\/li>\n<li>Under the <strong>Files<\/strong> section, click on <strong>File Manager<\/strong>, then select <strong>Web Root<\/strong> and click on <strong>Go<\/strong>.<\/li>\n<li>At the top-left, click on <strong>+ New File<\/strong>, name the file <strong>genSTATS.php<\/strong> and click on <strong>Create New File<\/strong>.<\/li>\n<li>Now right-click on the <strong>genSTATS.php<\/strong> file and click on <strong>Edit<\/strong>. Enter in the following code, making sure to edit the <strong>\/home\/userna5\/genSTATS<\/strong> section with your own username.\n<p class=\"code_block\" style=\"width: 500px;\">&lt;?php<br> $user = $_POST[\u2018user\u2019];<br> $pass = $_POST[\u2018pass\u2019];<\/p>\n<p> if($user == \u201cadmin\u201d<br> &amp;&amp; $pass == \u201cpass\u201d)<br> {<br> exec (\u201c\/bin\/bash \/home\/<strong style=\"color: red;\">userna5<\/strong>\/genSTATS\u201d);<br> include(\u201c..\/STATS.htm\u201d);<\/p>\n<p> }<br> if(isset($_POST))<br> {?&gt;<\/p>\n<p> &lt;form method=\u201dPOST\u201d action=\u201dgenSTATS.php\u201d&gt;<br> User &lt;input type=\u201dTEXT\u201d name=\u201duser\u201d&gt;&lt;\/input&gt;<br> Pass &lt;input type=\u201dTEXT\u201d name=\u201dpass\u201d&gt;&lt;\/input&gt;<br> &lt;input type=\u201dsubmit\u201d name=\u201dsubmit\u201d&gt;&lt;\/input&gt;<br> &lt;\/form&gt;<br> &lt;?}<br> ?&gt;<\/p>\n<\/li>\n<li>Now when you access the PHP script on your website <strong>https:\/\/example.com\/genSTATS.php<\/strong>, you\u2019ll be prompted with a username and password prompt, these need to match what is set in the PHP script for <strong>$user == \u201cadmin\u201d<\/strong>, and <strong>$pass = \u201cpass\u201d<\/strong>. After filling in these credentials, click on <strong>Submit<\/strong> and you should then see the full stats report.<br><a href=\"\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"467\" height=\"181\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\" class=\"optimized-lcp-image\" alt=\"gen stats fill in credentials click on submit\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png 467w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit-300x116.png 300w\"><\/a>\n<div style=\"clear:both;\"><\/div>\n<p><a href=\"\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-view-report.png\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" alt=\"gen stats view report\" class=\"std_ss\" height=\"319\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-view-report.png\" width=\"521\"><\/a><\/p>\n<div style=\"clear:both;\"><\/div>\n<\/li>\n<\/ol>\n<p>You should now know how to create a stat parsing script on your account, so that you can get a quick glance of your daily visits very easily.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I\u2019m going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website\u2019s daily visitor statistics. Sometimes it\u2019s nice to be able to see at a glance the overall level of traffic that your website receives. This can help you<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\"> 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-614","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>Create stat parsing script to review website visits | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website&#039;s daily visitor statistics.\" \/>\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\/create-stat-parsing-script-to-review-website-visits\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create stat parsing script to review website visits | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website&#039;s daily visitor statistics.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\" \/>\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=\"2013-03-07T02:33:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:19:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.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\/create-stat-parsing-script-to-review-website-visits\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Create stat parsing script to review website visits\",\"datePublished\":\"2013-03-07T02:33:25+00:00\",\"dateModified\":\"2021-08-17T03:19:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\"},\"wordCount\":543,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\",\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\",\"name\":\"Create stat parsing script to review website visits | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\",\"datePublished\":\"2013-03-07T02:33:25+00:00\",\"dateModified\":\"2021-08-17T03:19:51+00:00\",\"description\":\"In this article I'm going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website's daily visitor statistics.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png\",\"width\":467,\"height\":181,\"caption\":\"gen stats fill in credentials click on submit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create stat parsing script to review website visits\"}]},{\"@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":"Create stat parsing script to review website visits | InMotion Hosting","description":"In this article I'm going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website's daily visitor statistics.","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\/create-stat-parsing-script-to-review-website-visits\/","og_locale":"en_US","og_type":"article","og_title":"Create stat parsing script to review website visits | InMotion Hosting","og_description":"In this article I'm going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website's daily visitor statistics.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-03-07T02:33:25+00:00","article_modified_time":"2021-08-17T03:19:51+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.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\/create-stat-parsing-script-to-review-website-visits\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Create stat parsing script to review website visits","datePublished":"2013-03-07T02:33:25+00:00","dateModified":"2021-08-17T03:19:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/"},"wordCount":543,"commentCount":4,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png","articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/","name":"Create stat parsing script to review website visits | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png","datePublished":"2013-03-07T02:33:25+00:00","dateModified":"2021-08-17T03:19:51+00:00","description":"In this article I'm going to show you how to create a stat parsing script, which will allow you to get a quick historical view of your website's daily visitor statistics.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/03\/stats_gen-stats-fill-in-credentials-click-on-submit.png","width":467,"height":181,"caption":"gen stats fill in credentials click on submit"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/create-stat-parsing-script-to-review-website-visits\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Create stat parsing script to review website visits"}]},{"@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":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/614","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=614"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/614\/revisions"}],"predecessor-version":[{"id":84873,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/614\/revisions\/84873"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=614"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=614"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=614"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}