{"id":7465,"date":"2023-12-28T12:04:57","date_gmt":"2023-12-28T12:04:57","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=7465"},"modified":"2023-12-28T12:04:59","modified_gmt":"2023-12-28T12:04:59","slug":"setup-configure-cpanel-on-ubuntu-almalinux","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/","title":{"rendered":"How to install cPanel on Ubuntu and AlmaLinux"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en.jpg\" alt=\"Installing and configuring cPanel on Ubuntu and AlmaLinux\" class=\"wp-image-7491\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"introduction\">Introduction<\/h2>\n\n\n\n<p><strong>cPanel<\/strong> is one of the most widely used and industry-leading web hosting control panels available today. With over 70,000 server installations powering over 11 million domains, cPanel provides an intuitive graphical interface and robust toolset to easily manage every aspect of a hosting environment.<\/p>\n\n\n\n<p>First launched in 1996, cPanel has been under continual enhancement ever since by CEO Nick Koston and web hosting provider cPanel Inc. The platform aims to provide system administrators, web hosts and other IT professionals with simplified server, site and account management capabilities through an easy-to-use click-based dashboard.<\/p>\n\n\n\n<p>Some of the key features and benefits provided by cPanel include:<\/p>\n\n\n\n<ul>\n<li>Automated deployment of web apps like WordPress<\/li>\n\n\n\n<li>One-click installation of over 100 other web apps via Softaculous<\/li>\n\n\n\n<li>Complete control over files, databases, emails and DNS<\/li>\n\n\n\n<li>Domain and subdomain management<\/li>\n\n\n\n<li>User and resource usage tracking -Security tools like mod_security firewall<\/li>\n\n\n\n<li>Server monitoring and analytics<\/li>\n\n\n\n<li>Powerful automation and scripting<\/li>\n<\/ul>\n\n\n\n<p>With integrated support for features like PHP, Perl, Apache, Exim, DNS and more &#8211; plus the ability to quickly add functionality through cPanel plugins &#8211; it\u2019s a very full-featured hosting platform.<\/p>\n\n\n\n<p>Now let\u2019s jump in to the steps for getting cPanel fully installed and configured on your own Linux server!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"system-requirements-and-prerequisites\">System Requirements and Prerequisites<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-system-requirements-for-ubuntu\">1. System Requirements for Ubuntu:<\/h3>\n\n\n\n<ul>\n<li><strong>Firewall Configuration<\/strong>: Before installing cPanel &amp; WHM, it&#8217;s recommended to disable the OS firewall. Ubuntu distributions allow you to deactivate the firewall during installation using the following commands:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ iptables-save &gt; ~\/firewall.rules\n$ systemctl stop ufw.service\n$ systemctl disable ufw.service<\/code><\/pre>\n\n\n\n<p>After installation, you can configure a firewall using third-party clients like APF or CSF.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-system-requirements-for-almalinux-os\">2. System Requirements for AlmaLinux OS:<\/h3>\n\n\n\n<ul>\n<li><strong>Disable SELinux<\/strong>: For compatibility with cPanel &amp; WHM, SELinux must be disabled. You can do this either via the graphical interface or by editing the&nbsp;<code>\/etc\/selinux\/config<\/code>&nbsp;file:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"properties\" class=\"language-properties\">SELINUX=disabled\nSELINUXTYPE=targeted<\/code><\/pre>\n\n\n\n<p>Ensure that there&#8217;s no&nbsp;<code>#<\/code>&nbsp;preceding the&nbsp;<code>SELINUX=disabled<\/code>&nbsp;option.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing-cpanel--whm\">Installing cPanel &amp; WHM<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-1-update-and-prepare\">Step 1: Update and Prepare<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"for-ubuntu\">For Ubuntu:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"for-almalinux\">For AlmaLinux:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo dnf update -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-2-set-hostname\">Step 2: Set Hostname<\/h3>\n\n\n\n<p>For both Ubuntu and AlmaLinux, set your server&#8217;s hostname to a Fully Qualified Domain Name (FQDN):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo hostnamectl set-hostname server.yourdomain.com<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-3-install-cpanel-dependencies\">Step 3: Install cPanel Dependencies<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"for-both\">For Both:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install -y curl  <em># For Ubuntu<\/em><em># OR<\/em>\n$ sudo dnf install -y curl  <em># For AlmaLinux<\/em><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-4-fetch-and-run-the-installation-script\">Step 4: Fetch and Run the Installation Script<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\"># cd \/home &amp;&amp; curl -o latest -L https:\/\/securedownloads.cpanel.net\/latest &amp;&amp; sh latest<\/code><\/pre>\n\n\n\n<p>This command fetches the latest cPanel &amp; WHM installation script and initiates the installation process. The installation may take some time, so be patient.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"customizing-your-installation\">Customizing Your Installation<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"overview\">Overview:<\/h3>\n\n\n\n<p>Before initiating the installation, you can customize various aspects of cPanel &amp; WHM.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installation-methods\">Installation Methods:<\/h3>\n\n\n\n<ul>\n<li><strong>Fast Installation<\/strong>: This method uses tarballs to download specific cPanel &amp; WHM files and utilizes system RPMs or .deb packages, depending on the distribution.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installation-options\">Installation Options:<\/h3>\n\n\n\n<p>You can customize the installation using various options:<\/p>\n\n\n\n<ul>\n<li><code>--confirm<\/code>: Require confirmation before running the installation script.<\/li>\n\n\n\n<li><code>--force<\/code>: Force installation on an unrecommended configuration.<\/li>\n\n\n\n<li><code>--keep<\/code>: Retain the target directory post-installation.<\/li>\n\n\n\n<li><code>--nochown<\/code>: Skip permission assignments for extracted files.<\/li>\n\n\n\n<li><code>--noexec<\/code>: Avoid running the installation script.<\/li>\n\n\n\n<li><code>--nox11<\/code>: Prevent spawning an X terminal input terminal.<\/li>\n\n\n\n<li><code>--skip-cloudlinux<\/code>: Bypass automatic CloudLinux conversion.<\/li>\n\n\n\n<li><code>--skip-wptoolkit<\/code>: Avoid WP Toolkit installation.<\/li>\n\n\n\n<li><code>--skip-imunifyav<\/code>: Skip ImunifyAV installation.<\/li>\n\n\n\n<li><code>--target NewDirectory<\/code>: Extract installation files to a specific directory.<\/li>\n\n\n\n<li><code>--tar arg1 [arg2 ...]<\/code>: Access the contents of an archive using the&nbsp;<code>tar<\/code>&nbsp;command.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"important\">Important:<\/h3>\n\n\n\n<p>If you have a CloudLinux license and don&#8217;t want automatic conversion, use the&nbsp;<code>--skip-cloudlinux<\/code>&nbsp;option.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>Installing cPanel &amp; WHM on Ubuntu and AlmaLinux involves a structured approach, addressing specific system requirements and customization options. By carefully following this guide, you&#8217;ll successfully set up a cPanel &amp; WHM environment tailored to your preferences. Remember always to prioritize security, keep your systems updated, and periodically review configurations for optimal performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction cPanel is one of the most widely used and industry-leading web hosting control panels available today. With over 70,000 server installations powering over 11 million domains, cPanel provides an intuitive graphical interface and robust toolset to easily manage every aspect of a hosting environment. First launched in 1996, cPanel has been under continual enhancement ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[69,198],"tags":[],"yoast_head":"\n<title>How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.\" \/>\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.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-28T12:04:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-28T12:04:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to install cPanel on Ubuntu and AlmaLinux\",\"datePublished\":\"2023-12-28T12:04:57+00:00\",\"dateModified\":\"2023-12-28T12:04:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\"},\"wordCount\":559,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Linux system administration\",\"Web hosting Panels\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\",\"name\":\"How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-12-28T12:04:57+00:00\",\"dateModified\":\"2023-12-28T12:04:59+00:00\",\"description\":\"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install cPanel on Ubuntu and AlmaLinux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations","description":"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.","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.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/","og_locale":"en_US","og_type":"article","og_title":"How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations","og_description":"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.","og_url":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-12-28T12:04:57+00:00","article_modified_time":"2023-12-28T12:04:59+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/12\/cpanel_install_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to install cPanel on Ubuntu and AlmaLinux","datePublished":"2023-12-28T12:04:57+00:00","dateModified":"2023-12-28T12:04:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/"},"wordCount":559,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Linux system administration","Web hosting Panels"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/","url":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/","name":"How to install cPanel on Ubuntu and AlmaLinux - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-12-28T12:04:57+00:00","dateModified":"2023-12-28T12:04:59+00:00","description":"A comprehensive guide to installing and configuring the cPanel control panel on Ubuntu and AlmaLinux servers, including system requirements, installation steps, customization options, and configuration best practices.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/setup-configure-cpanel-on-ubuntu-almalinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to install cPanel on Ubuntu and AlmaLinux"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1780005063","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7465"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=7465"}],"version-history":[{"count":5,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7465\/revisions"}],"predecessor-version":[{"id":7499,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/7465\/revisions\/7499"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=7465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=7465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=7465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}