{"id":2206,"date":"2014-11-02T18:46:31","date_gmt":"2014-11-02T18:46:31","guid":{"rendered":"http:\/\/www.andrewhope.co.uk\/Blog\/?p=2206"},"modified":"2022-05-14T20:12:48","modified_gmt":"2022-05-14T19:12:48","slug":"repair-a-broken-wordpress-with-shared-hosting","status":"publish","type":"post","link":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/","title":{"rendered":"Repair a broken wordpress with shared hosting"},"content":{"rendered":"<p>Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that it broken all of the links to my MySQL databases<\/p>\n<p>When I moved the directories and files, all I was consistently receiving was database connection not available.<\/p>\n<p>The problem you have with shared hosting is that all the MySQL databases must be separated. So to do this, all hosting providers give your MySQL database a leading connection.<\/p>\n<p>In the form of myself, my host gives all my database names andrewho_ (then the database name)<br \/>\nFor my databases, they were called wordpress and zencart.<\/p>\n<p>My new MySQL databases are called andrewho_wordpress and andrewho_zencart. The problem is you need to repair the connection when migrating to shared hosting connection with wordpress and it&#8217;s actually really easy<\/p>\n<p>Here is how to fix the SQL database problems<\/p>\n<p>1) Carry out an SQL dump of the entire database<br \/>\nYou need to back up your entire existing database, for me it was hosted on my home PC. I had the MySQL Workbench installed, so it&#8217;s just a case of selecting the &#8220;Export&#8221; option, ticking your database. Giving it a name to identify it (ending in .sql) and saving to your computer<\/p>\n<p>2) Create a new database from your hosting provider for the directory where you want to install it<br \/>\nYour wordpress needs to be reimported with phpmyadmin to recreate all the tables and data<\/p>\n<p>3) Modify your .SQL file (so it doesn&#8217;t create a new database)<br \/>\nOne of the major problems I encountered was every time I uploaded the file, it failed. This was because my user account didn&#8217;t have permissions to create databases with the names given by the SQL files. This is because you need to reimport the data with a modified SQL file using the new details<\/p>\n<p>The quick way of doing this is to open your SQL file with Notepad++ or any text editor and comment out the lines and change the database names. I have given an example of this below so it&#8217;s easier to explain.<\/p>\n<p><strong> MY EXISTING SQL FILE INFORMATION <\/strong><br \/>\nCREATE DATABASE IF NOT EXISTS `wordpress` \/*!40100 DEFAULT CHARACTER SET latin1 *\/;<br \/>\nUSE `wordpress`;<\/p>\n<p><strong>MY NEW SQL FILE INFORMATION <\/strong><br \/>\nNote the highlighted entries, you need to comment out (&#8211;) the option to &#8220;create&#8221; the database&#8230; in this example it wants to create a database called &#8220;wordpress&#8221; (it&#8217;s already created)<br \/>\n<strong>&#8212; <\/strong>CREATE DATABASE IF NOT EXISTS `wordpress` \/*!40100 DEFAULT CHARACTER SET latin1 *\/;<\/p>\n<p>Originally it was called &#8220;wordpress&#8221;, you need to change the database name so it knows where to import the data<br \/>\nUSE `<strong>andrewho_<\/strong>wordpress`;<\/p>\n<p>I had to modify both my files when uploading the data other wise it break the database.<\/p>\n<p>4) Once you have uploaded the files, you need to modify the wp-config.php file otherwise it will just try fail to connect to the database. This is in the following directory<\/p>\n<p>domain.com\/wpress-folder\/wp-admin\/wp-config.php<\/p>\n<p>Here is an example of the details on my directory&#8230;..<br \/>\n\/\/ ** MySQL settings &#8211; You can get this info from your web host ** \/\/<br \/>\n\/** The name of the database for WordPress *\/<br \/>\ndefine(&#8216;DB_NAME&#8217;, &#8216;<strong>andrewho_wordpress<\/strong>&#8216;);<\/p>\n<p>\/** MySQL database username *\/<br \/>\ndefine(&#8216;DB_USER&#8217;, &#8216;<strong>andrewho_myusername (eg root, admin)<\/strong>&#8216;);<\/p>\n<p>\/** MySQL database password *\/<br \/>\ndefine(&#8216;DB_PASSWORD&#8217;, &#8216;<strong>My secret password<\/strong>&#8216;);<\/p>\n<p>\/** MySQL hostname *\/<br \/>\ndefine(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;);<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"wprm-recipe-roundup-name":"","wprm-recipe-roundup-description":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":"","_links_to":"","_links_to_target":""},"categories":[4],"tags":[591,587,588,589,590,104,586],"class_list":["post-2206","post","type-post","status-publish","format-standard","hentry","category-it","tag-access-denied","tag-broken-links","tag-database-links","tag-different-database-names","tag-local-host","tag-mysql","tag-shared-hosting"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that it broken all of the links to my MySQL databases When I moved the directories and files, all I was consistently receiving was database connection not available. The problem you have with shared hosting is\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"admin\"\/>\n\t<meta name=\"msvalidate.01\" content=\"95C2F67592576EDF87B6C4B9774D0014\" \/>\n\t<meta name=\"keywords\" content=\"access denied,broken links,database links,different database names,local host,mysql,shared hosting,it\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#article\",\"name\":\"Repair a broken wordpress with shared hosting | Andrew Hope\",\"headline\":\"Repair a broken wordpress with shared hosting\",\"author\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/#person\"},\"datePublished\":\"2014-11-02T18:46:31+00:00\",\"dateModified\":\"2022-05-14T20:12:48+01:00\",\"inLanguage\":\"en-GB\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#webpage\"},\"articleSection\":\"IT, access denied, broken links, database links, different database names, local host, mysql, shared hosting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/category\\\/it\\\/#listItem\",\"name\":\"IT\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/category\\\/it\\\/#listItem\",\"position\":2,\"name\":\"IT\",\"item\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/category\\\/it\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#listItem\",\"name\":\"Repair a broken wordpress with shared hosting\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#listItem\",\"position\":3,\"name\":\"Repair a broken wordpress with shared hosting\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/category\\\/it\\\/#listItem\",\"name\":\"IT\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/#person\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/author\\\/admin\\\/\",\"name\":\"admin\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#webpage\",\"url\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/\",\"name\":\"Repair a broken wordpress with shared hosting | Andrew Hope\",\"description\":\"Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that it broken all of the links to my MySQL databases When I moved the directories and files, all I was consistently receiving was database connection not available. The problem you have with shared hosting is\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/repair-a-broken-wordpress-with-shared-hosting\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2014-11-02T18:46:31+00:00\",\"dateModified\":\"2022-05-14T20:12:48+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/#website\",\"url\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/\",\"name\":\"Andrew Hope\",\"description\":\"DIY, Gaming, Automotive Chat and Invention\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.andrewhope.co.uk\\\/Blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Repair a broken wordpress with shared hosting | Andrew Hope","description":"Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that it broken all of the links to my MySQL databases When I moved the directories and files, all I was consistently receiving was database connection not available. The problem you have with shared hosting is","canonical_url":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/","robots":"max-image-preview:large","keywords":"access denied,broken links,database links,different database names,local host,mysql,shared hosting,it","webmasterTools":{"msvalidate.01":"95C2F67592576EDF87B6C4B9774D0014","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#article","name":"Repair a broken wordpress with shared hosting | Andrew Hope","headline":"Repair a broken wordpress with shared hosting","author":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/#person"},"datePublished":"2014-11-02T18:46:31+00:00","dateModified":"2022-05-14T20:12:48+01:00","inLanguage":"en-GB","mainEntityOfPage":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#webpage"},"isPartOf":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#webpage"},"articleSection":"IT, access denied, broken links, database links, different database names, local host, mysql, shared hosting"},{"@type":"BreadcrumbList","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog#listItem","position":1,"name":"Home","item":"https:\/\/www.andrewhope.co.uk\/Blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/#listItem","name":"IT"}},{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/#listItem","position":2,"name":"IT","item":"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#listItem","name":"Repair a broken wordpress with shared hosting"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#listItem","position":3,"name":"Repair a broken wordpress with shared hosting","previousItem":{"@type":"ListItem","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/#listItem","name":"IT"}}]},{"@type":"Person","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/#person"},{"@type":"Person","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/author\/admin\/#author","url":"https:\/\/www.andrewhope.co.uk\/Blog\/author\/admin\/","name":"admin"},{"@type":"WebPage","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#webpage","url":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/","name":"Repair a broken wordpress with shared hosting | Andrew Hope","description":"Recently I migrated to a shared hosting connection for my entire website, one of the problems I encountered was that it broken all of the links to my MySQL databases When I moved the directories and files, all I was consistently receiving was database connection not available. The problem you have with shared hosting is","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/#breadcrumblist"},"author":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/author\/admin\/#author"},"datePublished":"2014-11-02T18:46:31+00:00","dateModified":"2022-05-14T20:12:48+01:00"},{"@type":"WebSite","@id":"https:\/\/www.andrewhope.co.uk\/Blog\/#website","url":"https:\/\/www.andrewhope.co.uk\/Blog\/","name":"Andrew Hope","description":"DIY, Gaming, Automotive Chat and Invention","inLanguage":"en-GB","publisher":{"@id":"https:\/\/www.andrewhope.co.uk\/Blog\/#person"}}]}},"aioseo_meta_data":{"post_id":"2206","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"Article","defaultPostTypeGraph":""},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 13:50:36","updated":"2025-06-04 21:32:02","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.andrewhope.co.uk\/Blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/\" title=\"IT\">IT<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tRepair a broken wordpress with shared hosting\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.andrewhope.co.uk\/Blog"},{"label":"IT","link":"https:\/\/www.andrewhope.co.uk\/Blog\/category\/it\/"},{"label":"Repair a broken wordpress with shared hosting","link":"https:\/\/www.andrewhope.co.uk\/Blog\/repair-a-broken-wordpress-with-shared-hosting\/"}],"views":147,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/posts\/2206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/comments?post=2206"}],"version-history":[{"count":0,"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/posts\/2206\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/media?parent=2206"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/categories?post=2206"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.andrewhope.co.uk\/Blog\/wp-json\/wp\/v2\/tags?post=2206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}