{"id":768,"date":"2011-12-21T14:47:03","date_gmt":"2011-12-21T14:47:03","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2011\/12\/21\/rate-limit-phplist\/"},"modified":"2021-08-16T23:48:45","modified_gmt":"2021-08-17T03:48:45","slug":"rate-limit-phplist","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/","title":{"rendered":"How to rate limit emails sent in phpList"},"content":{"rendered":"<p>In our previous article, we<a href=\"\/support\/edu\/phplist\/install-php-list\/\"> installed phpList<\/a>. Before we continue with <a href=\"\/support\/email\/create-mailing-list-in-phplist\/\">creating a mailing list that users can subscribe to<\/a>, there are some default settings that we must change within the phpList configuration.<\/p>\n<p>By default, phpList will attempt to send out as many emails as fast as possible. To prevent possible issues with spam, accounts on our shared servers have a limit set to the maximum number of emails that can be sent per hour. That limit is set to 250 per domain per hour. What this means is that if you have 700 people in your mailing list and you try to send all of the emails at once with phpList, 250 emails will be sent and the other 450 will fail. To resolve this issue, we need to tell phpList to only send 250 emails per hour.<\/p>\n<p>Please note that we do on a case by case basis increase this number for our users. If you\u2019re interested in being able to send more than 250 emails per hour per domain, please see our <a href=\"\/support\/\">Bulk Mailing Request<\/a> article.<\/p>\n<p>Please also keep in mind that if you normally send 10 emails per hour during your daily routine, then you may need to set phpList to only send 240 emails per hour. In the example below, we will walk you through the steps to configure phpList to send 204 emails per hour at a rate of 17 emails every 5 minutes.<\/p>\n<h2>How to edit batch settings in phpList<\/h2>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\">Log into your cPanel<\/a><\/li>\n<li>Access your File Manager by clicking the \u201cFile Manager\u201d icon.<\/li>\n<li>Navigate to the directory you installed phplist into. Then navigate to the config directory within that. From there, right click on config.php and click edit. If you\u2019re prompted with a \u201cText-Editor\u201d window, ensure \u201cutf-8\u201d is selected in the drop down and then click \u201cEdit\u201d<\/li>\n<li>You are now looking at the phpList configuration file. There is quite a bit of content in this file, your focus is on finding these two lines:\n<pre>define(\"MAILQUEUE_BATCH_SIZE\",0);\ndefine(\"MAILQUEUE_BATCH_PERIOD\",100);\nChange these values to what we have below:\ndefine(\"MAILQUEUE_BATCH_SIZE\",17);\ndefine(\"MAILQUEUE_BATCH_PERIOD\",300);\n<\/pre>\n<p>The changes that we made told phpList to send 17 emails every 300 seconds (5 minutes).<\/p><\/li>\n<li>Click \u201cSave Changes\u201d.<\/li>\n<\/ol>\n<p>Please be aware that you will see the above lines several places in the config file. Please be sure to edit the lines that do not start with a pound sign. There is only one line for each setting that does not begin with #.\u00a0 In the example below, the green lines are where we made the edit, and the red lines are where we DID NOT make any edits due to the line starting with #.<\/p>\n<div class=\"code_block\">\n<p># batch processing<br>\n# if you are on a shared host, it will probably be appreciated if you don\u2019t send<br>\n# out loads of emails in one go. To do this, you can configure batch processing.<br>\n# Please note, the following two values can be overridden by your ISP by using<br>\n# a server wide configuration. So if you notice these values to be different<br>\n# in reality, that may be the case<\/p>\n<p>## if you send the queue using your browser, you may want to consider settings like this<br>\n## which will send 10 messages and then reload the browser to send the next 10. However, this<br>\n## will not restrict the sending to any limits, so there\u2019s a good chance you will<br>\n## go over the limits of your ISP<br>\n<em><span style=\"color: #ff0000;\"># define(\u201cMAILQUEUE_BATCH_SIZE\u201d,10);<\/span><\/em><br>\n<em><span style=\"color: #ff0000;\"># define(\u201cMAILQUEUE_BATCH_PERIOD\u201d,1);<\/span><\/em><\/p>\n<p>## if you send the queue using commandline, you can set it to something that complies with the<br>\n## limits of your ISP, eg 300 messages an hour would be<br>\n<span style=\"color: #ff0000;\"><em># define(\u201cMAILQUEUE_BATCH_SIZE\u201d,300);<\/em><\/span><br>\n<span style=\"color: #ff0000;\"><em># define(\u201cMAILQUEUE_BATCH_PERIOD\u201d,3600);<\/em><\/span><br>\n# and then you need to set the cron to run every 5 minutes<\/p>\n<p># define the amount of emails you want to send per period. If 0, batch processing<br>\n# is disabled and messages are sent out as fast as possible<br>\n<span style=\"color: #008000;\"><strong>define(\u201cMAILQUEUE_BATCH_SIZE\u201d,17);<\/strong><\/span><\/p>\n<p># define the length of one batch processing period, in seconds (3600 is an hour)<br>\n# Please note: this setting has two consequences:<br>\n# 1. it will enforce that the amount of emails sent in the period identified here does not exceed the amount<br>\n#\u00a0 set in MAILQUEUE_BATCH_SIZE<br>\n# 2. there will be a delay of MAILQUEUE_BATCH_PERIOD when running the queue.<br>\n#<br>\n# number 1 is mostly when using commandline queue processing (strongly recommended)<br>\n# number 2 is when using browser queue processing. The browser will reload to send the next<br>\n# batch after the amount of seconds set here<\/p>\n<p><strong><span style=\"color: #008000;\">define(\u201cMAILQUEUE_BATCH_PERIOD\u201d,300);<\/span><\/strong><\/p>\n<\/div>\n<h2>How does rate limiting work in phpList?<\/h2>\n<p>Later in our tutorial series, we\u2019ll show you <a href=\"\/support\/email\/how-to-send-a-message-to-your-phplist-mailing-list\/\">how to send a message to a mailing list in phpList<\/a>. Because we\u2019re talking about rate limiting right now, we\u2019d like to give you a sneak peak at what it will look like when you send to 400+ users with the above options set.<\/p>\n<p>We initiall sent a message to our list at 9:20 am. The confirmation message below mentions that phpList sent 17 emails, and then will wait 300 seconds (5 minutes) before sending more.<\/p>\n<div class=\"code_block\">Started<br>\nSending in batches of 17 emails<br>\nProcessing has started, 1 message(s) to process.<br>\nPlease leave this window open. You have batch processing enabled, so it will reload several times to send the messages. Reports will be sent by email to listreports@phplist.inmotiontesting.com<br>\nProcessing message 7<br>\nLooking for users<br>\nFound them: 403 to process<br>\nbatch limit reached: 17 (17)<br>\nScript stage: 5<br>\n17 messages sent in 4.38 seconds (13961 msgs\/hr)<br>\nFinished this run<br>\nWaiting for 300 seconds before reloading<\/div>\n<p>After 5 minutes (it is now 9:25 am), your browser will reload, and you will see another message similar to the below. This message states that in the last run 17 messages were sent, and another 17 messages have been sent now:<\/p>\n<div class=\"code_block\">Started<br>\nSending in batches of 17 emails<br>\nSent in last run: 17<br>\nSkipped in last run: 0<br>\nProcessing has started, 1 message(s) to process.<br>\nPlease leave this window open. You have batch processing enabled, so it will reload several times to send the messages. Reports will be sent by email to listreports@phplist.inmotiontesting.com<br>\nProcessing message 7<br>\nLooking for users<br>\nFound them: 386 to process<br>\nbatch limit reached: 17 (17)<br>\nScript stage: 5<br>\n17 messages sent in 0.51 seconds (119386 msgs\/hr)<br>\nFinished this run<br>\nWaiting for 300 seconds before reloading<\/div>\n<p>At this point, you simply need to leave your browser open. Every 5 minutes, your browser will reload and another 17 emails will be sent.<\/p>\n<h2>What happens if my browser closes during sending of my messages?<\/h2>\n<p>We had the same question. Right now we\u2019re in the middle of sending 400+ emails at a rate of 17 emails every 5 minutes. We\u2019ve already sent about 51 emails, and we just closed our browser. With the browser closed, phpList will not be able to process the rest of the messages we need sent.<\/p>\n<p>To continue sending your list, simply log back into you phpList admin and click the \u201cprocess queue\u201d link in the right sidebar:<br>\n<a href=\"\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"803\" height=\"654\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\" class=\"optimized-lcp-image\" alt=\"in-phplist-click-process-queue\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a><\/p>\n<div style=\"clear:both;\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In our previous article, we installed phpList. Before we continue with creating a mailing list that users can subscribe to, there are some default settings that we must change within the phpList configuration. By default, phpList will attempt to send out as many emails as fast as possible. To prevent possible issues with spam, accounts<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"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":[4,102,4288],"tags":[],"class_list":["post-768","post","type-post","status-publish","format-standard","hentry","category-email","category-phplist","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>How to rate limit emails sent in phpList | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Because our shared servers have limits in place on the number of emails you can send per hour, you&#039;ll need to update the phpList configuration file to conform to these limits.\" \/>\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\/email\/rate-limit-phplist\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to rate limit emails sent in phpList | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Because our shared servers have limits in place on the number of emails you can send per hour, you&#039;ll need to update the phpList configuration file to conform to these limits.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\" \/>\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=\"2011-12-21T14:47:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:48:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"How to rate limit emails sent in phpList\",\"datePublished\":\"2011-12-21T14:47:03+00:00\",\"dateModified\":\"2021-08-17T03:48:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\"},\"wordCount\":1113,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\",\"articleSection\":[\"Email\",\"phpList\",\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\",\"name\":\"How to rate limit emails sent in phpList | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\",\"datePublished\":\"2011-12-21T14:47:03+00:00\",\"dateModified\":\"2021-08-17T03:48:45+00:00\",\"description\":\"Because our shared servers have limits in place on the number of emails you can send per hour, you'll need to update the phpList configuration file to conform to these limits.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif\",\"width\":803,\"height\":654,\"caption\":\"in-phplist-click-process-queue\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to rate limit emails sent in phpList\"}]},{\"@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\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to rate limit emails sent in phpList | InMotion Hosting","description":"Because our shared servers have limits in place on the number of emails you can send per hour, you'll need to update the phpList configuration file to conform to these limits.","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\/email\/rate-limit-phplist\/","og_locale":"en_US","og_type":"article","og_title":"How to rate limit emails sent in phpList | InMotion Hosting","og_description":"Because our shared servers have limits in place on the number of emails you can send per hour, you'll need to update the phpList configuration file to conform to these limits.","og_url":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2011-12-21T14:47:03+00:00","article_modified_time":"2021-08-17T03:48:45+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"How to rate limit emails sent in phpList","datePublished":"2011-12-21T14:47:03+00:00","dateModified":"2021-08-17T03:48:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/"},"wordCount":1113,"commentCount":8,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif","articleSection":["Email","phpList","Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/","url":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/","name":"How to rate limit emails sent in phpList | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif","datePublished":"2011-12-21T14:47:03+00:00","dateModified":"2021-08-17T03:48:45+00:00","description":"Because our shared servers have limits in place on the number of emails you can send per hour, you'll need to update the phpList configuration file to conform to these limits.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2011\/12\/phplist_in-phplist-click-process-queue.gif","width":803,"height":654,"caption":"in-phplist-click-process-queue"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/email\/rate-limit-phplist\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to rate limit emails sent in phpList"}]},{"@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\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/768","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=768"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/768\/revisions"}],"predecessor-version":[{"id":86418,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/768\/revisions\/86418"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=768"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=768"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}