{"id":7580,"date":"2021-01-09T12:47:44","date_gmt":"2021-01-09T09:47:44","guid":{"rendered":"https:\/\/kifarunix.com\/?p=7580"},"modified":"2024-03-19T21:00:42","modified_gmt":"2024-03-19T18:00:42","slug":"easily-install-joomla-on-ubuntu","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/easily-install-joomla-on-ubuntu\/","title":{"rendered":"Easily Install Joomla on Ubuntu 20.04|Ubuntu 18.04"},"content":{"rendered":"\n<p>In this tutorial, you will learn how to quickly and easily install Joomla on Ubuntu 20.04|Ubuntu 18.04 systems. <a aria-label=\"Joomla (opens in a new tab)\" href=\"https:\/\/www.joomla.org\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Joomla<\/a> also spelled as Joomla!, is&nbsp;free and Open Source software, Content Management System&nbsp;(CMS) which enables you to build websites and powerful online applications.<\/p>\n\n\n\n<p>You can read more about Joomla! benefits and core features on <a aria-label=\"Joomla! benefits and core features page (opens in a new tab)\" href=\"https:\/\/www.joomla.org\/core-features.html\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Joomla! benefits and core features page<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Joomla on Ubuntu 20.04\/18.04<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>Joomla is PHP based and as  always, you definitely need a LAMP\/LEMP stack installed on your Ubuntu 20.04 or Ubuntu 18.04 before you can run Joomla! software. Follow any of the guides below to install either LAMP or LEMP stack.<\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-lamp-stack-on-ubuntu-20-04\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Install LAMP Stack on Ubuntu 20.04<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-install-lamp-stack-apachemariadb-php-7-2-on-ubuntu-18-04-lts\/\" target=\"_blank\" aria-label=\" (opens in a new tab)\" rel=\"noreferrer noopener\" class=\"rank-math-link\">How to Install LAMP Stack on Ubuntu 18.04 LTS<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-and-setup-lemp-stack-on-ubuntu-20-04\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Install and Setup LEMP Stack on Ubuntu 20.04<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/how-to-setup-lemp-stack-nginx-mariadb-php-7-2-on-ubuntu-18-04\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">How To Setup LEMP Stack on Ubuntu 18.04<\/a><\/p>\n\n\n\n<p>Read more on the <a aria-label=\"Joomla! Technical requirements page (opens in a new tab)\" href=\"https:\/\/downloads.joomla.org\/technical-requirements\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Joomla! Technical requirements page<\/a>.<\/p>\n\n\n\n<p>Note, if you want to install PHP 7.4 on Ubuntu 18.04 (default repos provide PHP 7.2), simply install Ondrej third-party PHP PPA repos;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt install software-properties-common<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>add-apt-repository ppa:ondrej\/php --yes<\/code><\/pre>\n\n\n\n<p>Once you install this repo, then you can be able install PHP 7.3 or PHP 7.4 on Ubuntu 18.04.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install Joomla<\/h3>\n\n\n\n<p>Assuming you have already setup LAMP\/LEMP stack depending on your setup preferences, proceed to install Joomla! on Ubuntu 20.04|Ubuntu 18.04.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Create Joomla Database and Database User<\/h4>\n\n\n\n<p>Joomla! CMS requires a database requires a database for storing data such as articles, menus, categories, and users. If you are using MariaDB or MySQL database, proceed as follows;<\/p>\n\n\n\n<p>Login to MySQL\/MariaDB;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql<\/code><\/pre>\n\n\n\n<p>Or<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Next, create a database and database user. Grant the database user all the rights on the specific Joomla! database. (<strong>Be sure to replace the database name, the database user name and the password appropriately<\/strong>).<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>create database joomladb;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>create user joomlaadmin@localhost identified by 'changeme';<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>grant all on joomladb.* to joomlaadmin@localhost with grant option;<\/code><\/pre>\n\n\n\n<p>Reload privilege tables and exit;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>flush privileges;\nquit<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Configure PHP for Joomla! CMS<\/h4>\n\n\n\n<p>Install other required PHP extensions.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt install php-gmp php-xml php-gd php-mbstring php-imagick php-zip php-xmlrpc<\/code><\/pre>\n\n\n\n<p>Next, update the following PHP.ini settings with suggested\/recommended values;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>memory_limit = 256M\nupload_max_filesize = 128M\npost_max_size = 128M\nmax_execution_time = 300\noutput_buffering = Off<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Downloading Joomla! Package Files<\/h4>\n\n\n\n<p>Next, download the current Joomla! 3.x release package files from the <a aria-label=\"Joomla! 3.x downloads page (opens in a new tab)\" href=\"https:\/\/downloads.joomla.org\/cms\/joomla3\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Joomla! 3.x downloads page<\/a>. As of this writing, Joomla_3.9.23 is the current stable release.<\/p>\n\n\n\n<p>You can simply run the wget command below to pull the Joomla! 3.9.23 package file. Be sure to replace the link for other versions;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget -P \/tmp https:\/\/downloads.joomla.org\/cms\/joomla3\/3-9-23\/Joomla_3-9-23-Stable-Full_Package.tar.gz<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Extract Joomla! Package File to Web Root Directory<\/h4>\n\n\n\n<p>Once the download completes, extract Joomla! package file to your respective web root directory, <code><strong>\/var\/www\/html\/joomla<\/strong><\/code>, in our setup;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mkdir \/var\/www\/html\/joomla<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>tar xzf \/tmp\/Joomla_3-9-23-Stable-Full_Package.tar.gz -C \/var\/www\/html\/joomla --strip-components=1<\/code><\/pre>\n\n\n\n<p>Once the files are in place, set the proper ownership for the Joomla! directory;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>chown -R www-data: \/var\/www\/html\/joomla<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Configure Apache\/Nginx site configuration for Joomla!<\/h4>\n\n\n\n<p>Next, you need to create a site configuration for Joomla! depending on whether you are running Apache or Nginx web server.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">For Apache<\/h5>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/apache2\/sites-available\/joomla.conf<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80&gt;\n     ServerAdmin admin@kifarunix-demo.com\n     DocumentRoot \/var\/www\/html\/joomla\/\n     ServerName kifarunix-demo.com\n\n     ErrorLog ${APACHE_LOG_DIR}\/joomla-error.log\n     CustomLog ${APACHE_LOG_DIR}\/joomla-access.log combined\n\n     &lt;Directory \/var\/www\/html\/joomla\/&gt;\n            Options FollowSymlinks\n            AllowOverride All\n            Require all granted\n     &lt;\/Directory&gt;\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<p>Save and exit the configuration.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">For Nginx<\/h5>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/nginx\/sites-enabled\/joomla<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\n    listen 80;\n    listen &#91;::]:80;\n    root \/var\/www\/joomla;\n    index  index.php index.html index.htm;\n    server_name  kifarunix-demo.com;\n\n    client_max_body_size 100M;\n    autoindex off;\n\n    location ~* \/(images|cache|media|logs|tmp)\/.*.(php|pl|py|jsp|asp|sh|cgi)$ {\n      return 403;\n      error_page 403 \/403_error.html;\n    }\n\n    location \/ {\n        try_files $uri $uri\/ \/index.php?$args;\n    }\n\n    location ~ .php$ {\n        include snippets\/fastcgi-php.conf;\n        fastcgi_pass unix:\/run\/php\/php7.4-fpm.sock;\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\n        include fastcgi_params;\n        fastcgi_read_timeout 600;\n        fastcgi_send_timeout 600;\n        fastcgi_connect_timeout 600;\n    }\n}<\/code><\/pre>\n\n\n\n<p>Save and exit the configuration file.<\/p>\n\n\n\n<p>Check for syntax on Apache;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apachectl -t<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Syntax OK<\/code><\/pre>\n\n\n\n<p>Check for syntax on Nginx;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>nginx -t<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>nginx: the configuration file \/etc\/nginx\/nginx.conf syntax is ok\nnginx: configuration file \/etc\/nginx\/nginx.conf test is successful<\/code><\/pre>\n\n\n\n<p>Disable the default sites;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>unlink \/etc\/nginx\/sites-enabled\/default<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>a2dissite 000-default.conf<\/code><\/pre>\n\n\n\n<p>Enable the Joomla! sites;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ln -s \/etc\/nginx\/sites-available\/joomla \/etc\/nginx\/sites-enabled\/joomla<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>a2ensite joomla.conf<\/code><\/pre>\n\n\n\n<p>Restart Nginx (if you are using Nginx)<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart nginx<\/code><\/pre>\n\n\n\n<p>Restart Apache (if you are using Apache)<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart apache2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Accessing Joomla! Site on Browser<\/h3>\n\n\n\n<p>You can now access Joomla! from browser to finalize your site setup. Based on our setup, our URL is <code><strong>http:\/\/kifarunix-demo.com<\/strong><\/code>.<\/p>\n\n\n\n<p>Be sure to allow external access to the site on firewall, if UFW is running.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ufw allow \"Apache Full\"<\/code><\/pre>\n\n\n\n<p>The navigate to and access Joomla site from browser.<\/p>\n\n\n\n<p>On the first page, you are welcomed by the Joomla site configuration wizard. Set the name of the site and administrator details.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"953\" height=\"877\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration.png\" alt=\"Install Joomla on Ubuntu 20.04|Ubuntu 18.04\" class=\"wp-image-7584\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration.png?v=1610181923 953w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration-768x707.png?v=1610181923 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration-150x138.png?v=1610181923 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration-300x276.png?v=1610181923 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration-696x640.png?v=1610181923 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-configuration-456x420.png?v=1610181923 456w\" sizes=\"(max-width: 953px) 100vw, 953px\" \/><\/figure><\/div>\n\n\n<p>Click <strong>Next<\/strong> to configure database connection settings;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"934\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx.png\" alt=\"\" class=\"wp-image-7585\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx.png?v=1610181957 940w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx-768x763.png?v=1610181957 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx-150x149.png?v=1610181957 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx-300x298.png?v=1610181957 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx-696x692.png?v=1610181957 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-db-connectionx-423x420.png?v=1610181957 423w\" sizes=\"(max-width: 940px) 100vw, 940px\" \/><\/figure><\/div>\n\n\n<p>Click Next and go through the setup overview and ensure that everything is fine.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"875\" height=\"888\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview.png\" alt=\"\" class=\"wp-image-7586\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview.png?v=1610181981 875w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview-768x779.png?v=1610181981 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview-150x152.png?v=1610181981 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview-300x304.png?v=1610181981 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview-696x706.png?v=1610181981 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-overview-414x420.png?v=1610181981 414w\" sizes=\"(max-width: 875px) 100vw, 875px\" \/><\/figure><\/div>\n\n\n<p>Click <strong>Install <\/strong>to Install Joomla!.<\/p>\n\n\n\n<p>Once the installation is done, you should see such a page;<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1031\" height=\"748\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed.png\" alt=\"\" class=\"wp-image-7588\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed.png?v=1610185181 1031w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-768x557.png?v=1610185181 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-150x109.png?v=1610185181 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-300x218.png?v=1610185181 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-696x505.png?v=1610185181 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-579x420.png?v=1610185181 579w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-installed-324x235.png?v=1610185181 324w\" sizes=\"(max-width: 1031px) 100vw, 1031px\" \/><\/figure><\/div>\n\n\n<p>Next, remove installation folder by clicking <strong>Remove &#8220;installation&#8221; folder<\/strong>.<\/p>\n\n\n\n<p>Access your site by clicking on <strong>site<\/strong> with an eye icon.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1285\" height=\"696\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site.png\" alt=\"\" class=\"wp-image-7589\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site.png?v=1610185201 1285w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-768x416.png?v=1610185201 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-150x81.png?v=1610185201 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-300x162.png?v=1610185201 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-696x377.png?v=1610185201 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-1068x578.png?v=1610185201 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2021\/01\/joomla-site-775x420.png?v=1610185201 775w\" sizes=\"(max-width: 1285px) 100vw, 1285px\" \/><\/figure>\n\n\n\n<p>And there you go. You can now proceed to develop your site. That marks the end of our guide on how to install Joomla.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Reference and Further Reading<\/h3>\n\n\n\n<p><a aria-label=\"Installing Joomla (opens in a new tab)\" href=\"https:\/\/docs.joomla.org\/Special:MyLanguage\/J3.x:Installing_Joomla\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Installing Joomla<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/docs.joomla.org\/Special:MyLanguage\/Main_Page\" target=\"_blank\" aria-label=\"Joomla! Documentation (opens in a new tab)\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Joomla! Documentation<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Other tutorials<\/h3>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-automad-cms-on-debian-10-ubuntu-18-04\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Install Automad CMS on Debian 10\/Ubuntu 18.04<\/a><\/p>\n\n\n\n<p><a aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-wondercms-with-nginx-on-debian-10\/\" target=\"_blank\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Install WonderCMS with Nginx on Debian 10<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-latest-wordpress-with-lamp-stack-on-ubuntu-20-04\/\" target=\"_blank\" aria-label=\" (opens in a new tab)\" rel=\"noreferrer noopener\" class=\"rank-math-link\">Install latest WordPress with LAMP Stack on Ubuntu 20.04<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you will learn how to quickly and easily install Joomla on Ubuntu 20.04|Ubuntu 18.04 systems. Joomla also spelled as Joomla!, is&nbsp;free and<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[1087,121],"tags":[2998,2995,3000,2999,2997,2996,67,1200],"class_list":["post-7580","post","type-post","status-publish","format-standard","hentry","category-cms","category-howtos","tag-cms","tag-install-joomla-ubuntu","tag-install-joomla-ubuntu-18-04","tag-install-joomla-ubuntu-20-04","tag-joomla","tag-joomla-ubuntu-installation","tag-ubuntu-18-04","tag-ubuntu-20-04","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/7580"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=7580"}],"version-history":[{"count":4,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/7580\/revisions"}],"predecessor-version":[{"id":21977,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/7580\/revisions\/21977"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=7580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=7580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=7580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}