{"id":4629,"date":"2019-10-21T06:46:08","date_gmt":"2019-10-21T06:46:08","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=4629"},"modified":"2020-01-09T07:16:32","modified_gmt":"2020-01-09T07:16:32","slug":"install-wordpress-with-lamp-on-ubuntu-18","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/","title":{"rendered":"Install WordPress with LAMP on Ubuntu 18"},"content":{"rendered":"<h2 class=\"western\"><strong>Introduction<\/strong><\/h2>\n<p>&nbsp;<\/p>\n<p>Here, in this blog, we will discuss about installing WordPress with LAMP on Ubuntu 18.04<\/p>\n<p><b>LAMP<\/b>\u00a0is an open source Web development platform that uses Linux as the operating system, Apache as the Web\u00a0server, MySQL as the relational database management system and PHP as the object-oriented scripting language.<\/p>\n<p><strong>WordPress<\/strong>\u00a0is a content management system based on PHP and MySQL usually used with the MySQL or MariaDB database servers but can also use the SQLite database engine.<\/p>\n<p>&nbsp;<\/p>\n<h3><\/h3>\n<h2 class=\"western\" style=\"text-align: left\"><strong>Setup LAMP Server:<\/strong><\/h2>\n<p>&nbsp;<\/p>\n<p>The following configurations is used to setup LAMP server on ubuntu for installing wordpress:<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li>OS: Ubuntu 18.04<\/li>\n<li>Web Server: Apache2<\/li>\n<li>Database: MySQL 5.6<\/li>\n<li>PHP: php7.3<\/li>\n<li>WordPress 5.2.4<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><strong>Step 1: Installing Apache\u00a0<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>Install Apache using Ubuntu\u2019s package manager, <code>apt:<\/code><\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo apt install -y apache2<\/pre>\n<p>&nbsp;<\/p>\n<p>Visit your system&#8217;s IP address in your web browser<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">http:\/\/your_system_ip<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 2: Installing MySQL<\/strong><\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo apt install -y mysql-server\r\nsudo mysql_secure_installation<\/pre>\n<p>&nbsp;<\/p>\n<p>This will ask if you want to configure the validate password plugin. Answer Y for yes, or anything else to continue without enabling. If you answer \u201cyes\u201d, you\u2019ll be asked to select a level of password validation. Select level 1 for the mediun level. You\u2019ll be shown the password strength for the root password you just entered and your server will ask if you want to change that password. If you don&#8217;t want to change your current password then enter N for &#8216;no&#8217; at the prompt.<\/p>\n<p>&nbsp;<\/p>\n<h4>\u00a0<strong>i) Login to mysql and follow the below steps<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true  \">mysql -u root -p\r\nCREATE DATABASE wordpress\r\nCREATE USER 'user_name'@'%' IDENTIFIED BY 'password';\r\nGRANT ALL ON wordpress.* to 'user_name'@'%' IDENTIFIED BY 'password';\r\nFLUSH PRIVILEGES;\r\nEXIT;<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 3: Installing PHP<\/strong><\/p>\n<p>&nbsp;<\/p>\n<h4><strong>i) Install PHP<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p>PHP is the component of your setup that will process code to display dynamic content. It can run scripts, connect to your MySQL databases to get information, and hand the processed content over to your web server to display.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo apt install -y php7.3\r\nsudo apt install php libapache2-mod-php php-mysql\r\nsudo apt install php-curl php-gd php-mbstring php-xml php-xmlrpc php-soap php-intl php-zip\r\nsudo systemctl restart apache2\r\nsudo systemctl status apache2<\/pre>\n<p>&nbsp;<\/p>\n<h4><strong>\u00a0ii) Create a PHP script<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p>In order to test that your system has correct php version and is configured properly for PHP, create a very basic PHP script called phpversion.php. In order for Apache to find this file and serve it correctly, it must be saved to your apache document root directory.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">nano phpversion.php<\/pre>\n<pre class=\"lang:default decode:true\">&lt;?php\r\n\r\nphpinfo();<\/pre>\n<p>&nbsp;<\/p>\n<p>save and close the file.<\/p>\n<p>&nbsp;<\/p>\n<h4><strong>iii) Navigate to your system ip on web browser<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p>Now you can test whether your web server is able to correctly display content generated by this PHP script. To try this out, visit the page in your web browser.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">http:\/\/your_system_ip\/phpversion.php<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 4: Adjusting Apache&#8217;s Configuration<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>i) Environment Variables<\/p>\n<p>&nbsp;<\/p>\n<p>The Apache2 environment variables are set in the \/etc\/apache2\/envvars file. The\u00a0<strong>\/<\/strong>etc\/apache2\/envvars file holds variable definitions such as Apache_Log_Dir (the location of Apache log files), Apache_Pid_File (the Apache process ID), Apache_Run_Users (the user that run Apache, by default www-data), etc.<\/p>\n<p>&nbsp;<\/p>\n<p>ii) Currently, the use of <code>.htaccess<\/code>\u00a0files is disabled. WordPress and many WordPress plugins use these files extensively for in-directory tweaks to the web server\u2019s behavior.<\/p>\n<p>Open the Apache configuration file for your website:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo nano \/etc\/apache2\/sites-enabled\/wordpress.conf<\/pre>\n<p>&nbsp;<\/p>\n<p>iii) Allowoverride ALL in\u00a0 apache&#8217;s configuration file<\/p>\n<p>To allow .htaccess files, we need to set the Allowoverride directive within a Directory block pointing to our document root. Add the following block of text inside the VirtualHost block in your configuration file, being sure to use the correct web root directory:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">&lt;Directory \/var\/www\/wordpress\/&gt;\r\n    AllowOverride All\r\n&lt;\/Directory&gt;\r\n\r\na2enmod rewrite\r\nservice apache2 restart<\/pre>\n<p>&nbsp;<\/p>\n<p>save and close the file.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Steps 5: Downloading WordPress and adjusting the ownership<\/strong><\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">cd \/var\/www\/wordpress\r\ncurl -O https:\/\/wordpress.org\/latest.tar.gz\r\ntar xzvf latest.tar.gz<\/pre>\n<p>&nbsp;<\/p>\n<p>One of the most important things we need to accomplish is setting up reasonable file permissions and ownership.<\/p>\n<p>We\u2019ll start by giving ownership of all the files to the www-data user and group. This is the user that the Apache webserver runs as, and Apache will need to be able to read and write WordPress files in order to serve the website and perform automatic updates.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo chown -R www-data:www-data \/var\/www\/wordpress\r\ncp \/var\/www\/wordpress\/wp-config-sample.php \/var\/www\/wordpress\/wp-config.php<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 6: Setting up the wordpress configuration file<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>Now, we need to make some changes to the main WordPress configuration file. We need to modify some of the database connection settings at the beginning of the file. Therefore, you need to adjust the database name, the database user, and the associated password that we configured within MySQL.<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">sudo nano \/var\/www\/wordpress\/wp-config.php\r\n\r\ndefine('DB_NAME', 'wordpress');\r\n\r\n\/** MySQL database username *\/\r\ndefine('DB_USER', 'wordpressuser');\r\n\r\n\/** MySQL database password *\/\r\ndefine('DB_PASSWORD', 'password');<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Step 7: Completing the Installation Through the Web Interface<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>In your web browser, navigate to your system domain name or IP address:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"lang:default decode:true\">https:\/\/system_domain_or_IP<\/pre>\n<p>&nbsp;<\/p>\n<h4><strong>i) Select the language you would like to use:<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<h4><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp1.png\"><br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-4649 size-full\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp1.png\" alt=\"\" width=\"441\" height=\"583\" \/> <\/a><\/h4>\n<h4><\/h4>\n<p>&nbsp;<\/p>\n<h4 style=\"text-align: left\"><strong>\u00a0ii) Next, you will come to the main setup page<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p style=\"text-align: left\">Select a name for your WordPress site and choose a username. Either generate a strong password and save or select an alternative strong password. Enter your email address and select whether you want to discourage search engines from indexing your site:<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/oie_94W6uGPzIcXj.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-4688 aligncenter\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/oie_94W6uGPzIcXj.png\" alt=\"\" width=\"735\" height=\"775\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h4><strong>iii) When you click on Install WordPress, it will open the page that prompts you to log in:<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-4653 \" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp3.png\" alt=\"\" width=\"620\" height=\"447\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<h4><strong>iv) When you click on log in, it will open the WordPress administration dashboard:<\/strong><\/h4>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp4.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-4654 size-full\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp4.png\" alt=\"\" width=\"767\" height=\"484\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p><strong><em>In case of any help or query, please <a href=\"https:\/\/cloudkul.com\/contact\/\">contact<\/a> us <\/em><em>or raise a <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">ticket<\/a>.<\/em><\/strong><!--more--><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction &nbsp; Here, in this blog, we will discuss about installing WordPress with LAMP on <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[32,2,87,86,21],"tags":[65,234,235,237,236],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Install Wordpress with LAMP on Ubuntu 18 - Cloudkul<\/title>\n<meta name=\"description\" content=\"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Wordpress with LAMP on Ubuntu 18 - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-21T06:46:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-09T07:16:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp1.png\" \/>\n<meta name=\"author\" content=\"Shubhangi Priyadarshini\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\",\"name\":\"Install Wordpress with LAMP on Ubuntu 18 - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2019-10-21T06:46:08+00:00\",\"dateModified\":\"2020-01-09T07:16:32+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/d28de492418b09a7015ef4f742f5d2ad\"},\"description\":\"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install WordPress with LAMP on Ubuntu 18\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/d28de492418b09a7015ef4f742f5d2ad\",\"name\":\"Shubhangi Priyadarshini\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/079a268ffe2d3b318f1484ef9736eab8?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/079a268ffe2d3b318f1484ef9736eab8?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"Shubhangi Priyadarshini\"},\"url\":\"https:\/\/cloudkul.com\/blog\/author\/shubhangi-priyadarshini350\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install Wordpress with LAMP on Ubuntu 18 - Cloudkul","description":"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.","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:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/","og_locale":"en_US","og_type":"article","og_title":"Install Wordpress with LAMP on Ubuntu 18 - Cloudkul","og_description":"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.","og_url":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/","og_site_name":"Cloudkul","article_published_time":"2019-10-21T06:46:08+00:00","article_modified_time":"2020-01-09T07:16:32+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2019\/10\/wp1.png"}],"author":"Shubhangi Priyadarshini","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/","url":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/","name":"Install Wordpress with LAMP on Ubuntu 18 - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2019-10-21T06:46:08+00:00","dateModified":"2020-01-09T07:16:32+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/d28de492418b09a7015ef4f742f5d2ad"},"description":"Here, in this blog, we will discuss about installing Wordpress with LAMP on Ubuntu 18. LAMP\u00a0is an open source Web development platform that uses Linux as the operating system.","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/install-wordpress-with-lamp-on-ubuntu-18\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install WordPress with LAMP on Ubuntu 18"}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/d28de492418b09a7015ef4f742f5d2ad","name":"Shubhangi Priyadarshini","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/079a268ffe2d3b318f1484ef9736eab8?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/079a268ffe2d3b318f1484ef9736eab8?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"Shubhangi Priyadarshini"},"url":"https:\/\/cloudkul.com\/blog\/author\/shubhangi-priyadarshini350\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/4629"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=4629"}],"version-history":[{"count":73,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/4629\/revisions"}],"predecessor-version":[{"id":5278,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/4629\/revisions\/5278"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=4629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=4629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=4629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}