{"id":2759,"date":"2015-11-16T13:03:45","date_gmt":"2015-11-16T13:03:45","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=2759"},"modified":"2023-01-19T13:46:53","modified_gmt":"2023-01-19T10:46:53","slug":"cms-configuration-files","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/cms-configuration-files\/","title":{"rendered":"CMS configuration files"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif;\">When you change the web hosting platform or when you migrate website from your local computer to web hosting sometimes it is necessary to held the configuration files for the CMS. Here are the CMS settings and configure access to your website database. You may need to change the DB name, username of database and password of the database user, the name of the database server after the website transfer. <\/span><br \/>\n<!--more--><br \/>\n<span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>WordPress<\/strong>, file: <strong>wp-config.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory<\/strong><\/span><\/span><span style=\"font-family: Ubuntu, sans-serif;\"><br \/>\n<\/span><\/p>\n<pre lang=\"php\"> define('DB_NAME', 'database_name');\r\n define('DB_USER', 'user_name');\r\n define('DB_HOST', 'server');\r\n define('DB_PASSWORD', 'password');<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>Joomla<\/strong>, file: <strong>configuration.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> var $host = 'server';\r\n var $user = 'user_name';\r\n var $db = 'database_name';\r\n var $password = 'password';<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>Drupal<\/strong>, file: <strong>settings.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/sites\/default\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> 'database' =&gt; 'database_name',\r\n 'username' =&gt; 'user_name',\r\n 'password' =&gt; 'password',\r\n 'host' =&gt; 'server',<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>DLE<\/strong>, file: <strong>dbconfig.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/engine\/data\/<\/strong><\/span><strong><br \/>\n<\/strong><\/span><\/p>\n<pre lang=\"php\"> define (\"DBHOST\", \"server\");\r\n define (\"DBNAME\", \"database_name\");\r\n define (\"DBUSER\", \"user_name\");\r\n define (\"DBPASS\", \"password\");<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>Shop-script<\/strong>, file: <strong>connect.inc.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/cfg\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> define('DB_HOST', 'server');\r\n define('DB_USER', 'user_name');\r\n define('DB_PASS', 'password');\r\n define('DB_NAME', 'database_name');<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>ShopCMS<\/strong>, file: <strong>connect.inc.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/core\/config\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> define('DB_HOST', 'server');\r\n define('DB_USER', 'user_name');\r\n define('DB_PASS', 'password');\r\n define('DB_NAME', 'database_name');<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>WebAsyst<\/strong>, file: <strong>login.xml<\/strong>, <strong>wbs.xml<\/strong>, <strong>.settings.login<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory<\/strong><strong>\/dblist\/, Website root directory<strong>\/kernel\/, <strong>Website root directory<\/strong><strong>\/temp\/scdb\/<\/strong><\/strong><\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> SQLSERVER=\"server\"\r\n DB_NAME=\"database_name\"\r\n DB_PASSWORD=\"password\"\r\n DB_USER=\"user_name\"<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>PrestaShop<\/strong>, file: <strong>settings.inc.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/config\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> define('_DB_NAME_', 'database_name');\r\n define('_DB_SERVER_', 'server');\r\n define('_DB_USER_', 'user_name);\r\n define('_DB_PASSWD_', 'password');<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>MODx<\/strong>, file: <strong>config.inc.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/manager\/includes\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> $database_server = 'server';\r\n $database_user = 'database_user';\r\n $database_password = 'password';\r\n $dbase = 'database_name';<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>MODx Evo<\/strong>, file: <strong>config.inc.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/core\/config\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> $database_server = 'server';\r\n $database_user = 'user_name';\r\n $database_password = 'password';\r\n $dbase = '`database_name`';<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>Bitrix<\/strong>, file: <strong>dbconn.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/bitrix\/php_interface\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> $DBHost = \"server\";\r\n $DBLogin = \"user_name\";\r\n $DBPassword = \"password\";\r\n $DBName = \"database_name\";<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>CMS PHPShop<\/strong>, file: <strong>config.ini<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/phpshop\/inc\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> host = \"server\";\r\n user_db = \"user_name\";\r\n pass_db = \"password\";\r\n dbase = \"database_name\";<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>\u0421MS Opencart<\/strong>, file: <strong>config.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory<\/strong> and <strong>Website root directory<\/strong>\/<strong>admin\/<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> define('DB_HOSTNAME', 'server');\r\n define('DB_USERNAME', 'user_name');\r\n define('DB_PASSWORD', 'password');\r\n define('DB_DATABASE', 'database_name');<\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif;\">CMS <strong>vBulletin<\/strong>, file: <strong>config.php<\/strong>, placed: <span style=\"font-family: 'Ubuntu Mono', monospace;\"><strong>Website root directory \/includes\/config.php<\/strong><\/span><\/span><\/p>\n<pre lang=\"php\"> $config['MasterServer']['servername'] = 'server';\r\n $config['MasterServer']['username'] = 'user_name';\r\n $config['MasterServer']['password'] = 'password';\r\n $config['Database']['dbname'] = 'database_name';<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>When you change the web hosting platform or when you migrate website from your local computer to web hosting sometimes it is necessary to held the configuration files for the CMS. Here are the CMS settings and configure access to your website database. You may need to change the DB name, username of database and [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[15,422],"class_list":["post-2759","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-cms","tag-cms-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>CMS configuration files - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/cms-configuration-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CMS configuration files - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/cms-configuration-files\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-11-16T13:03:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:46:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"141\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"CMS configuration files\",\"datePublished\":\"2015-11-16T13:03:45+00:00\",\"dateModified\":\"2023-01-19T10:46:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/\"},\"wordCount\":246,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"keywords\":[\"CMS\",\"CMS\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/\",\"url\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/\",\"name\":\"CMS configuration files - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"datePublished\":\"2015-11-16T13:03:45+00:00\",\"dateModified\":\"2023-01-19T10:46:53+00:00\",\"description\":\"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/cms-configuration-files\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/cms-configuration-files\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CMS configuration files\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CMS configuration files - Unihost.FAQ","description":"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.","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:\/\/unihost.com\/help\/cms-configuration-files\/","og_locale":"en_US","og_type":"article","og_title":"CMS configuration files - Unihost.FAQ","og_description":"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.","og_url":"https:\/\/unihost.com\/help\/cms-configuration-files\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2015-11-16T13:03:45+00:00","article_modified_time":"2023-01-19T10:46:53+00:00","og_image":[{"width":250,"height":141,"url":"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png","type":"image\/png"}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"CMS configuration files","datePublished":"2015-11-16T13:03:45+00:00","dateModified":"2023-01-19T10:46:53+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/"},"wordCount":246,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"keywords":["CMS","CMS"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/","url":"https:\/\/unihost.com\/help\/cms-configuration-files\/","name":"CMS configuration files - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"datePublished":"2015-11-16T13:03:45+00:00","dateModified":"2023-01-19T10:46:53+00:00","description":"A list of settings for the popular CMS configuration files: WordPress, Joomla, Drupal, DLE, Shop-script, ShopCMS, WebAsyst, PrestaShop, MODx, Bitrix etc.","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/cms-configuration-files\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/cms-configuration-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"CMS configuration files"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/2759","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=2759"}],"version-history":[{"count":1,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/2759\/revisions"}],"predecessor-version":[{"id":2760,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/2759\/revisions\/2760"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=2759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=2759"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=2759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}