All Articles by Sangkrit

Register/transfer domain names at http://system.sangkrit.net and mail to system@sangkrit.net to get your web/app made/managed as per the budget allocated.

4507 Articles

How To Find & Remove Broken Links In WordPress?

Broken Link Checker is a popular WordPress plugin that lets you identify and fix broken links on your website. A broken link, also known as a dead link, can negatively impact both user experience and SEO rankings. This plugin scans your website content—posts, pages, comments, etc to detect any non-working URLs, images, or embedded media like YouTube videos that may have been removed or relocated.

To start removing broken links using the Broken Link Checker plugin on your WordPress site, simply follow these steps:

  1. Install & Activate the Plugin: Install Broken Link Checker from the Plugins -> Add New page and activate it.
  2. Scan for Broken Links: The plugin will automatically begin scanning your site for broken links. You can monitor the scan in your WordPress dashboard under the Link Checker page.
  3. Fix or Remove Links: Once broken links are detected, go to the Broken Links page. You can either: Update the broken link, remove it, or dismiss that it’s not an issue.
  4. Bulk Actions: The plugin allows you to fix multiple links at once using bulk actions for faster management.

By following these steps, you can keep your WordPress site free from broken links, ensuring a better user experience and preserving SEO rankings.

The plugin does real-time monitoring and also sends you email as it finds any dead links on your website. You can fix or remove the link from the plugin’s interface.

How To Add Product Videos In WordPress WooCommerce Website?

You can add videos to describe or promote your products at your WordPress eCommerce store. This enhances the shopping experience and helps showcase product features effectively.

Woocommerce allows anyone to build an online shop without technical skills. All you have to do is register your domain name, subscribe WordPress, and install the WooCommerce plugin. Then you can manage your website from its admin interface.

This lesson will guide you on adding single or multiple videos on any product to its linked featured image or product gallery.

WPC Product Videos for WooCommerce

To start you will need to install-activate a WordPress plugin called WPC Product Videos for WooCommerce. Upon activation, open the product you want the video to be added or you can do this while adding a new product.

The product admin page will show you a newly added field for the video URL, this is next below the featured image section. Simply paste your video URL there and update or publish your product. It boosts product presentation and can improve conversions.

The plugin works for YouTube and Vimeo videos. Alternatively, you can upload your video from your WordPress Media Library and use then its URL.

Product Video Gallery for WooCommerce

Product Video Gallery for WooCommerce is another plugin that allows you to enhance product pages by adding videos to the product gallery. It supports various video formats like YouTube, Vimeo, or self-hosted videos, making it easy for you to display your product through engaging visuals.

Simply install and activate it on your website and then navigate to Products -> WC Product Video, now tick the checkbox to configure a setting, and then save your changes. The plugin usage is quite simple, to add a video to your product: open the edit product page and insert your product YouTube video URL in {Product Video Url} field. That’s it.

This plugin lets users upload multiple videos alongside product images, creating a dynamic gallery. It also integrates smoothly with WooCommerce themes, providing a more interactive shopping experience for customers.

How To Clean Unnecessary Tables From MySQL Database?

Cleaning unnecessary database tables means deleting tables that were created before by some plugin and now are not in use on your website. Removing such tables lightens up your MySQL database. In this lesson, you will learn about cleaning up a database manually and with plugins’ help.

Before making any changes, always ensure and be careful when deleting database tables, as removing the wrong ones can break your WordPress site. Always keep a full WordPress database backup.

Step-1, access your hosting’s cPanel and locate the phpMyAdmin option under the Databases section. Click on it to access the database management interface.

Step-2 In phpMyAdmin, find your WordPress database on the left-hand side panel. Click on the name of the database to view the tables it contains.

Step-3 Now identify unnecessary tables. Unnecessary tables might come from uninstalled plugins or themes. Tables that don’t seem to match the standard WordPress table names like wp_posts, wp_users, or wp_options may be safe to delete. Some tables have a prefix based on the name of a plugin (e.g., wp_woocommerce_* for WooCommerce).

Step-4 Once you identify the tables you no longer need, select them by checking the box next to each table. Then, scroll down and choose Drop from the options in the dropdown menu. Confirm the deletion.

Automatically Identify & Clean MySQL Database Tables

Alternatively, You can clean your database with a plugin. Plugins such as WP-Optimize or Advanced Database Cleaner let you automatically identify and clean up unnecessary tables without manually going into phpMyAdmin.

These WordPress plugins provide you with an easy way to clean up unnecessary database tables from your WordPress site.

What Are the Standard WordPress Database Tables? A Breakdown Of Core WP Tables

A standard WordPress installation creates a set of database tables that store various types of data, such as posts, users, comments, and settings. Apart from this plugins create their tables and some themes may also do that, but deactivating such plugins and themes leaves their tables on your website clattering your database.

In this lesson, you will learn about the main 12 standard WordPress database tables so that whenever you like to clean up your database you don’t disturb the core tables that are the life-line of your WordPress site.

  1. wp_posts – Stores all content types like posts, pages, revisions, and custom post types.
  2. wp_postmeta – Contains metadata (custom fields) for posts, such as additional information like SEO settings or image data.
  3. wp_users – Holds information about all registered users, including username, password, email, and user roles.
  4. wp_usermeta – Stores additional metadata about users, such as permissions, preferences, and profile information.
  5. wp_options – Contains various site-wide settings such as the site URL, admin email, time zone, and installed plugins.
  6. wp_terms – Stores the categories, tags, or any custom taxonomies used to classify content.
  7. wp_term_taxonomy – Describes the taxonomy (e.g., category, tag) for each term from the wp_terms table.
  8. wp_term_relationships – Links posts, pages, or custom post types to their respective terms (categories, tags).
  9. wp_comments – Stores comments on posts and pages, including comment content, user details, and approval status.
  10. wp_commentmeta – Contains metadata about comments, such as IP addresses, ratings, or spam status.
  11. wp_links – Used to manage the blogroll feature, which is now deprecated but still exists in older versions.
  12. wp_actionscheduler_actions (optional in newer WordPress versions) This is used to store scheduled actions or cron jobs, commonly created by WooCommerce and other plugins.

Each table uses a default prefix of wp_.

While installing WordPress manually on your hosting account, a step asks you to enter the database name, database username, database user password, and host and the last field asks for the table prefix which by default is wp_.

This wp_ is the table prefix. this can be changed during installation to enhance security (e.g., mywebsite_) and it also lets you host multiple websites on a single database.

To change the table prefix while installing WordPress using Installatron, in the “Advanced Settings” section, you’ll find an option for “Table Prefix.” By default, the table prefix is set to wp_, but you can modify this to a unique prefix, such as mywebsite_ or any combination of letters and numbers for added security.

After entering your desired prefix, continue with the installation process as usual. This change helps secure your site by preventing common SQL injection attacks that target the default table prefix.

How To Run Multiple Websites In One Database?

Some low-cost hosting options offer you one or a limited amount of MySQL databases. But do you know that you can run multiple websites in one database, and all websites will work independently without affecting the content and logins of other websites running on the same database.

You can also install different CMS or applications on the same database. For instance, WordPress and MediaWiki can run on a single database without affecting each other.

Running multiple websites in a single database is possible by using table prefixes or customizing your database structure. Here’s how you can set it up, especially if you are using a CMS like WordPress.

While installing WordPress manually on your hosting account, a step asks you to enter the database name, database username, database user password, and host and the last field asks for the table prefix which by default is wp_. This wp_ is the table prefix.

So all you have to do instead of using wp_ you have to use a different table prefix for every new website on your database.

For example,

When you install a CMS like WordPress, you can specify a table prefix during installation. If you want to run multiple websites in one database, use different table prefixes for each website. For example:

  • Website 1: wp1_
  • Website 2: wp2_

This way, the tables for each website will be separated within the same database.

For easy remembrance you can use wp1_ , wp2_, wp3_, wp4_ and so on. Not only WordPress but you can install any CMS by using a different unique for each website you install on your database.

For non-CMS-based websites, you can manually create separate tables for each website within the same database.

For example, you can create tables for:

  • website1_users
  • website2_users
  • website1_posts
  • website2_posts

Alternatively, installing a WordPress multisite network is an advanced way of making multiple WordPress sites on the same database. Its main advantage is that you don’t have to install WordPress separately for every new website you create.

Simply add the following line to your wp-config.php file:

define( ‘WP_ALLOW_MULTISITE’, true );

Now log in to your WordPress dashboard and navigate to Tools -> Network Setup to configure it.

By implementing these methods, you can efficiently run multiple websites in one database without needing separate databases for each.

How To Restore MySQL Databases Using cPanel?

In the previous lesson, you learned how to easily generate and download MySQL database backups anytime from the cPanel. Next is how to restore them.

To restore a MySQL database from cPanel, you need to follow these steps:

Step 1: Log into cPanel

Open your browser and log into your cPanel account by entering your username and password.

Step 2: Access the Backup Feature

Once logged in, scroll to the Files section on the cPanel dashboard. Click on Backup or Backup Wizard.

Step 3: Choose the Database Restore Option

Under the Restore a MySQL Database section, locate the Restore a MySQL Database Backup option. Select this to begin the process.

Step 4: Upload Your Database Backup

Click the Choose File button and select the .sql or .gz backup file you downloaded. After selecting the file, click on Upload or Restore to initiate the restoration process.

Step 5: Completion

Once the file is uploaded, cPanel will automatically restore your database. As soon as the restoration is complete, you will receive a confirmation message.

By following these steps, your MySQL database will be successfully restored in cPanel.

How To Backup & Download MySQL Databases Using cPanel?

You can easily generate and download MySQL database backups anytime from the cPanel, by following these steps:

Step 1: Log into cPanel

Open your browser and log into your cPanel account by entering your username and password.

Step 2: Access the Backup Feature

Once logged in, navigate to the Files section on the cPanel dashboard. Click on Backup or Backup Wizard, both of which allow you to back up your database.

Step 3: Choose the Database Backup

If you’re using the Backup Wizard, choose the option to back up a specific part of your site. Under the Partial Backups section, locate the Download a MySQL Database Backup option. A list of databases will appear; select the name of the database you wish to back up.

Step 4: Download the Backup

After selecting the database, the backup process will begin automatically. Your browser will prompt you to download the .sql or .gz file. Save the backup file to your local computer.

This backup file can be used for future database restoration.

Wildcard & Multi-Domain SSL Certificates: Which One Do You Need?

A Wildcard SSL Certificate and a Multi-Domain SSL Certificate (SAN or Subject Alternative Name certificate) allow you to secure multiple websites or subdomains under a single certificate. Here’s an explanation of each.

Wildcard SSL Certificate

A Wildcard SSL certificate is designed to secure a domain and all its subdomains.

For example, if you have a Wildcard SSL for *.example.com, it will secure the main domain, example.com, as well as any subdomains such as blog.example.com, shop.example.com, and other subdomains like mail.example.com. This makes it ideal for businesses or website owners managing several subdomains under one domain, ensuring that all of them are encrypted without needing separate certificates.

Multi-Domain SSL Certificate (SAN Certificate)

A Multi-Domain SSL, or SAN SSL, is meant to secure multiple distinct domain names within a single certificate. It can cover different domains, subdomains, or even various domain extensions.

For example, one SAN certificate could secure example.com, example.net, shop.example.org, and anotherdomain.com. This type of SSL is useful for businesses or individuals managing multiple domains or websites, allowing them to secure each domain or subdomain without purchasing separate SSL certificates.

The main difference between the two is that Wildcard SSL focuses on securing all subdomains of a single domain, whereas Multi-Domain SSL allows for securing multiple different domains and subdomains with one certificate.

Another important thing you should know is that all multi-domain SSL certificates are wild-card compatible but not all wild-card certificates are multi-domain compatible so choose wisely.

Benefits of These SSL Certificates

Both Wildcard and Multi-Domain SSL certificates are cost-effective, reducing the need to purchase and manage multiple certificates. They also simplify the management process, as you only need to handle one certificate instead of several, especially when it comes to renewals.

Apart from this, both certificate types ensure that all domains and subdomains under the certificate are encrypted and secure, enhancing the security of your web presence.

Whether you need to secure multiple subdomains or entirely different domain names, Wildcard and Multi-Domain SSL certificates offer convenient and flexible solutions to ensure that your websites remain secure.

Which SSL Do You Need?

The choice between the two comes down to whether you’re primarily securing subdomains of a single domain or need to cover multiple domains. If your focus is securing multiple subdomains under one main domain, a Wildcard SSL is the best fit.

However, if you need to secure entirely different domains, then a Multi-Domain SSL is the solution. Both options offer robust security but are tailored for different needs. You can easily subscribe to your choice of SSL certificate from here.

Reasons Why Your Website Displays ‘Not Secure’ SSL Warning

A “Not Secure” warning on your website typically appears when the website does not have an SSL, the SSL is invalid, or is not properly configured. This lesson lists various reasons why your website may show such types of warnings on certain web browsers.

You Have No SSL Certificate

If you have not yet subscribed to an SSL certificate and your website is using HTTP instead of HTTPS then most browsers will show a “Not Secure” warning on your website. The main reason behind this is HTTP connections are not encrypted, leaving data vulnerable to interception.

How To Fix It? Subscribe and install an SSL certificate on your website.

Your SSL Certificate Is Expired

If your SSL certificate has expired, the browser will treat the website as insecure and show the warning, even though you had HTTPS enabled before.

How To Fix It? Renew expired SSL certificates promptly.

Mismatched Domain SSL Certificate

If your SSL certificate is not properly configured to match your domain (e.g., you installed the certificate for example.com but visitors are accessing www.example.com), a warning will be triggered.

How To Fix It? You may either subscribe to a multi-domain wildcard SSL certificate or force all traffic to the correct version of your website and set up a redirect using .htaccess or server configuration.

If you realize that your SSL certificate was issued for the wrong version of your domain, request a reissue from your Certificate Authority (CA).

Mixed Content

Even if your site uses HTTPS, if some elements like images, scripts, or stylesheets are loaded over HTTP, browsers will show a “Not Secure” warning due to the mixed content.

How To Fix It? Ensure all links, images, and scripts on the site are loaded over HTTPS to avoid mixed content warnings. Use a plugin such as Really Simple SSL to fix insecure content warnings.

Untrusted Certificate Authority (CA)

If your SSL certificate was issued by a Certificate Authority (CA) that is not trusted by major browsers, or if it’s self-signed, the website will be flagged as “Not Secure.”

How To Fix It? Subscribe your SSL certificate from a trusted authority.

How To Enforce HTTPS (SSL) URLs On Your Website?

SSL securely transforms data from the client to the server by adding encryptions. Before it was used to protect transactions and customer data, but now it has become Google’s official Internet ranking factor.

Once you subscribe and install SSL on your website, the website starts using both HTTP and HTTPS URLs which means visitors landing on HTTP from old links such as old search archives or links on other websites will continue to land on HTTP. Whereas visitors using the new HTTPS will get HTTPS. Here you will need to make sure that all visitors must land on secure HTTPS URLs of your website and that can only be done by enforcing SSL all over your website.

To force your website to use HTTPS on all links you will need to redirect HTTP to HTTPS and there are various methods of doing this.

Redirecting HTTP To HTTPS Via cPanel

  1. Simply log in to your hosting account and open cPanel.
  2. In cPanel, navigate to ‘Domains’ and toggle the “Force HTTPS Redirect” option for your domain.

Redirecting HTTP To HTTPS Via .htaccess File

Another way of enforcing SSL is by adding a few lines of code in .htaccess file which is located in the root directory of your website.

  1. Log in to your hosting account and open cPanel.
  2. Navigate to cPanel -> File Manager
  3. Open Public_HTML and then the directory where your website is located. If your website is on the main domain i.e. yourdomain.com then it would be located in the Public_HTML directory itself.
  4. Add the following code and save the file.

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Or, for forcing SSL over one specific domain name use this code:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.url.com/$1 [R,L]

Or, for forcing SSL over some such as domain.com/subdir. First, create a new .htaccess file in that specific directory and then add the following code:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} subdir
RewriteRule ^(.*)$ https://www.url.com/subdir/$1 [R,L]

If you see some existing code in your .htacess file then add these lines on the top where rules start with similar prefixes.

By default .htaccess is kept as a hidden file so if don’t find it on your cPanel hosting’s file manager then click the ‘Settings’ icon (visible on the top right corner of the file manager) and tick ‘Display hidden files’ option.

And if you don’t find any .htaccess file in the file manager then probably your website is not using such .htaccess file. In that case, simply create one by naming it .htaccess and then open it for editing.

Don’t forget to change domain.com with your own domain name and SUBDIR with the name of the sub directory where you want to force an HTTPS connection.

Redirecting HTTP to HTTPS In WordPress

WordPress users may simply use a plugin called Easy HTTPS Redirection (SSL). The plugin lets you automatically set up a redirection to the HTTPS version of a URL when anyone tries to access the old HTTP version.

How To Use Remote SSL On Your Website?

Remote SSL allows you to manage SSL certificates for domains or websites that are hosted remotely, meaning outside of your current cPanel hosting environment. It offers the ability to install an SSL certificate on a website that is hosted on a different server from where the SSL certificate was generated or managed.

How Does Remote SSL Work?

Normally, SSL certificates are generated and installed on the same server where the domain is hosted. But with Remote SSL, you can generate the certificate in your cPanel environment and then transfer it to a different server where the website is hosted.

Remote SSL management can be useful if you’re handling multiple hosting environments or need to install SSL certificates on servers that don’t have direct integration with cPanel.

How To Use Remote SSL On cPanel?

  1. Access SSL/TLS Manager: Log in to your cPanel dashboard and navigate to the “SSL/TLS” section.
  2. Generate SSL Certificate: Use the cPanel interface to generate a new SSL certificate or import an existing one.
  3. Transfer to Remote Server: After generating the SSL certificate, download the necessary files (certificate, private key, and CA bundle) and manually upload them to the remote server where your website is hosted. Use the appropriate SSL installation method depending on the remote server’s software (e.g., Apache, Nginx).
  4. Remote Installation: On the remote server, follow the usual procedure for installing an SSL certificate.

This approach allows you to secure websites hosted elsewhere while managing your SSL certificates centrally from your cPanel.

How To Use Internationalized Domain Names?

A domain name that is in your local language or doesn’t use English alphabets or has some special characters is called Internationalized domain name. Earlier you learned about registering domain names in your local language. Once you do that, you will need to add it to your hosting so you can make a website over it.

The process of adding an Internationalized Domain Name is different from adding a general domain name. This lesson gives you an easy step-by-step process of adding such domains to your cPanel hosting.

To add a domain with international characters (IDN – Internationalized Domain Name) in cPanel, follow these steps:

  1. Convert the domain to Punycode: International domains with non-ASCII characters need to be converted into a format called “Punycode” to be compatible with the Domain Name System (DNS).
  2. Use Punycode Converter: Use an online converter like Punycoder or any other tool to convert your international domain (e.g., täst.com) into its Punycode equivalent (e.g., xn--tst-qla.com).
  3. Log in to cPanel: Access your cPanel dashboard by logging in through your hosting provider.
  4. Navigate to Domains Section: In cPanel, go to the “Domains” section and click on Addon Domains or Aliases, depending on how you want to manage the domain.
  5. Enter the Punycode Version of the Domain: In the “New Domain Name” field, enter the Punycode version of the domain (e.g., xn--tst-qla.com). cPanel will handle the domain using its ASCII representation.
  6. Complete the Process: Fill in the necessary details, such as the subdomain or document root, and click Add Domain.
  7. DNS Configuration: Make sure your domain’s DNS is pointed correctly to your hosting server by updating your domain’s DNS settings at your domain registrar.

Once you’ve added the domain, you’ll be able to manage it just like any other domain in cPanel. The international version of the domain (with the special characters) will still function properly, even though cPanel recognizes it in Punycode.

How To Auto Repair Any MySQL Database?

Repairing a MySQL database is important when you’re facing issues like database corruption or errors on your WordPress or any other website using MySQL.

There are many options to repair a broken MySQL database and each option depends solely on your issue with your database. This lesson explains to you the easy and automatic option you can use on your web hosting at Sangkrit.net.

How To Fix Database Using Database Repair Function On cPanel?

The easiest option is to use a database repair feature called Repair DB on the cPanel of your hosting account.

Step-1 Access it by logging into your hosting’s cPanel and then navigating MySQL Databases under the databases section.

Step-2 Here you will find another section called “Modify Databases”. From the “Repair DB” option there is a drop-down menu containing all the databases associated with your account.

Step-3 Choose the database you need to repair and then click on the “Repair DB” button.

Step-4 Now the system will examine your database by processing simple checks and if it finds any errors it will fix them automatically.

Step-5 After completion, check your website or application to ensure that the issues have been resolved and everything is functioning correctly.

How To Fix Database Using phpMyAdmin?

Login to hosting’s cPanel, navigate to databases section, click phpMyAdmin and follow the steps:

Step-1On phpMyAdmin administration page’s left pane, click the name of the database that you want to repair.

Step-2 In the right pane, tick the check boxes for the tables you want to repair.

Step-3 Finally, using the selected list box, select Repair table.

    After completion, phpMyAdmin will show you the success notification on the database repairing process.

    Repairing your MySQL database using cPanel is a quick and efficient way to resolve database-related errors and keep your website running smoothly.

    Improve Website Speed & Performance With Leverage Browser Caching

    Leverage Browser Caching is a factor responsible for the browsing speed of your website. Fetching resources over the network can be slow and expensive as some downloads need multiple roundtrips between the client (where the website is requested) and the server i.e. where the website is being hosted. This delays the processing, may block the rendering of webpage content, and sometimes also incurs data costs for the visitor.

    Specifying a server caching policy helps the client determine when it can use the previously fetched response. Google Page Insights also uses this in counting the performance of your website.

    So, Leverage Browser Caching is a website performance optimization technique that involves specifying how long web browsers should store certain resources, such as images, CSS files, JavaScript, and other static assets, locally on the user’s device. By doing so, the browser can reuse these resources for future visits to the site, rather than downloading them again from the server.

    This type of browser catching can be activated either by using some plugin like Leverage Browser Caching or by manually setting up an expiry date or maximum age for static resources such as images etc in the HTTP headers which can be done with the following code:

    ## EXPIRES CACHING ##

    ExpiresActive On
    ExpiresByType image/jpg “access 1 year”
    ExpiresByType image/jpeg “access 1 year”
    ExpiresByType image/gif “access 1 year”
    ExpiresByType image/png “access 1 year”
    ExpiresByType text/css “access 1 month”
    ExpiresByType application/pdf “access 1 month”
    ExpiresByType text/x-javascript “access 1 month”
    ExpiresByType application/x-shockwave-flash “access 1 month”
    ExpiresByType image/x-icon “access 1 year”
    ExpiresDefault “access 2 days”

    ## EXPIRES CACHING ##

    Simply open your .htaccess file located in your website’s root directory and paste the given code.

    Key Aspects:

    • Caching Duration: The website owner or developer sets a cache expiration time (e.g., days, weeks, or months) for specific resources through HTTP headers.
    • Reduced Load Time: Once cached, resources are loaded from the user’s local storage, significantly reducing page load times during repeat visits.
    • Lower Server Load: Since resources don’t need to be downloaded repeatedly, server requests are minimized, improving server performance and reducing bandwidth usage.

    WordPress Plugin for Leverage Browser Caching

    Leverage Browser Caching plugin fixes the leverage browser caching issues on your website improving the page speed score on website testing tools like Pingdom, GTmetrix, PageSpeed, Google PageSpeed Insights, YSlow, etc.

    Simply find, install, and activate this plugin from Plugins -> Add New page on your website’s admin area dashboard. It does not have any option. It will start working as soon as you activate it.

    The plugin works for the Apache server simply by adding browser caching code inside the htaccess file. To remove the code you just need to deactivate the plugin.

    How Leverage Browser Caching Works?

    When a visitor first accesses a website, the browser downloads the necessary resources. With browser caching enabled, these resources are stored locally and remain available for a set period, so they don’t need to be downloaded again unless the cache expires or is cleared.

    It improves user experience and search engine rankings by speeding up website performance.

    Reasons Sangkrit.net Hostings Offer Installatron For Hassle-Free Website Management

    Offering Installatron enhances the overall power of the hosting plans, making them easier for users to manage their online presence efficiently and effectively. It supports a wide range of applications, catering to various needs—from blogs to eCommerce sites.

    Using Installatron offers several benefits for managing applications on your hosting account:

    1. One-Click Installations

    Installatron simplifies the installation process for various web applications, allowing users to install software like WordPress, Joomla, and MediaWiki with just a single click. This eliminates the need for manual setup, saving time and effort.

    2. Automatic Application Updates

    It automatically checks for updates for installed applications and can update them with a click, ensuring that your software is always up-to-date with the latest features and security patches.

    3. Easy Backups & Restores

    Installatron provides an easy way to create manual as well as automatic backups of your applications. If anything goes wrong, you can easily restore your site to a previous state without hassle.

    4. User-Friendly Interface

    The interface is intuitive and easy to navigate, making it accessible even for those who are not tech-savvy. Users can manage their applications without needing extensive technical knowledge.

    5. Application Management

    Installatron allows users to manage multiple applications from a single dashboard. You can update, uninstall, and configure settings for all your applications in one place.

    6. Cloning and Migration

    With Installatron, you can easily clone your applications for testing or development purposes. It also facilitates the migration of applications between different servers or domains.

    7. Support for Multiple Applications

    Installatron supports a wide range of applications beyond just content management systems, including e-commerce platforms, forums, and customer relationship management tools.

    8. Customizable Options

    Users have the flexibility to customize installation settings, including database name, admin username, and more, allowing for tailored setups based on individual preferences.

    By leveraging these advantages, Installatron enhances the efficiency of managing web applications, making it a valuable tool for website owners and developers alike.

    How Sangkrit.net Lets You Automatically Update Mediawiki Website?

    Automatic updation of Mediawiki is only possible in a few specific cases, you can update your Mediawiki website automatically if you are hosting it on Sangkrit.net, as it offers you ‘Installatron’ that provides you options for both automatic installation and upgradation of Mediawiki.

    Installatron allows you to automatically update Mediawiki by providing a simple, automated process for managing software installations. After you install Mediawiki using Installatron, you can enable automatic updates to ensure that your Mediawiki site remains secure and up-to-date with the latest features and security patches.

    To enable automatic updates for Mediawiki through Installatron begin by logging into your cPanel account where your Mediawiki installation is hosted then follow these steps:

    1. Access your hosting control panel.
    2. Find and open Installatron.
    3. Locate your Mediawiki installation under “My Applications” and click on it.
    4. Visit the settings or management area of your Mediawiki installation
    5. Find the option for automatic updates.
    6. Enable automatic core updates for Mediawiki.
    7. If desired, you can also choose to update extensions or skins automatically.

    Once enabled, Installatron will regularly check for new Mediawiki updates and apply them automatically, reducing the need for manual intervention and keeping your site safe and functional.

    if you don’t want to turn on automatic updates, you can also update Mediawiki with one-click via Installatron. Here’s how you can do it:

    1. Log in to Your cPanel: Begin by logging into your cPanel account where your Mediawiki installation is hosted. Once logged in, locate the “Installatron Applications Installer.”
    2. Access Your Installed Applications: In Installatron, go to the “My Applications” tab. This tab shows all the applications you have installed, including Mediawiki.
    3. Locate Mediawiki Installation: Find the Mediawiki installation you want to update from the list. You’ll see various details about the installation, including the version you are currently running.
    4. Check for Updates: If a new version of Mediawiki is available, Installatron will display an update option. Click on the “Update” button next to your Mediawiki installation to begin the process.
    5. Backup Your Data (Optional): Before starting the update, Installatron will give you the option to create a backup of your current Mediawiki installation. It’s highly recommended to create a backup to ensure you can restore your website in case of any issues during the update.
    6. Start the Update Process: Once the backup is completed (if you opted for one), Installatron will automatically download the latest version of Mediawiki and begin the update. You don’t need to manually download or upload files, as Installatron handles it all.
    7. Verify the Update: After the update finishes, you will receive a confirmation. Visit your Mediawiki site to ensure everything is working correctly and that the new version has been successfully applied.

    By following these steps, Installatron will keep your Mediawiki installation up-to-date with the latest features and security patches.

    How To Install Mediawiki Using Installatron On cPanel?

    MediaWiki is a free software coded in PHP. It is among the most popular wiki applications. The cPanel of Sangkrit.net hosting allows you to install this useful software on your domain, subdomain, or subdirectory within a few clicks.

    To start, make sure you own a domain name and have a Sangkrit.net web hosting account.

    Step-1 First, log in to your Sangkrit.net account and launch your hosting cPanel. From the cPanel home screen, scroll down to the ‘Software/Services’ section and click ‘Installatron’.

    How To Start A Mediawiki Website From cPanel? 1

    Step-2 Click ‘Application Browser‘ tab.

    How To Start A Mediawiki Website From cPanel? 2

    Step-3 From the list of website building applications scroll to ‘Mediawiki’ and click it.

    How To Start A Mediawiki Website From cPanel? 3

    Step-4 It directs you to a page showing information about Mediawiki, click ‘+ install this application‘ button.

    How To Start A Mediawiki Website From cPanel? 4

    Step-5 Use the dropdown for selecting domain/subdomain wherever you like installing the Mediawiki system. If you want you can also install it on subdirectory.

    How To Start A Mediawiki Website From cPanel? 5

    For example: Let say you are already running a website on your main domain and you want to run Mediawiki website from a sub-directory like yourdomain.com/wiki address, then simply type the name of the sub-directory.

    How To Start A Mediawiki Website From cPanel? 8

    Step-6 Now scroll a little bit down and select a language for your Mediawiki website. Type a username, and password, and give your wiki website a title.

    How To Start A Mediawiki Website From cPanel? 6
    How To Start A Mediawiki Website From cPanel? 7

    Step-7 Choose your update and backup options, then finally click the ‘+Install‘ button. Installation takes a few seconds and then you can access your Mediawiki website.

    At Sangkrit.net hosting, it will take less than a minute to put your Mediawiki website online.

    How To Subscribe A Hosting Plan For Your Website?

    After registering your domain name, you will need a hosting plan for your website. A hosting plan provides the necessary server space and resources for your website to be accessible on the internet. It stores your website’s files, databases, and content, ensuring that it is available to users 24/7.

    Depending on the type of plan, such as shared hosting or VPS, you get varying levels of performance, security, and control. Hosting plans often come with essential features like SSL certificates, backups, and technical support, making it easier to manage your website efficiently and securely. The right hosting plan ensures your website runs smoothly, handles traffic, and performs optimally. Here is a step-by-step guide on how to purchase hosting on Sangkrit.net:

    Step 1 Select & Add Hosting To Your Cart

    First, visit Sangkrit.net and log into your account if you have one, or create a new account if you’re a new user.

    Once logged in, navigate to the web hosting section by hovering over the “Hosting & Domains” menu and selecting “Web Hosting.” This page presents several hosting plans, including Shared Hosting, Managed WordPress Hosting, VPS Hosting, and Dedicated Servers.

    Choose the plan that best meets your needs by clicking on the “Add to Cart” or “Get Started” option for your preferred hosting plan.

    Step 2 Proceed & Choose The Duration

    Next, you’ll be asked to choose the duration of your hosting plan. Sangkrit.net offers various term lengths, and selecting a longer-term plan often provides better value.

    After selecting the duration, click “Continue” to move forward with the purchase process.

    Step 3 Select Your Domain Name

    At this stage, you’ll be prompted to either register a new domain name or use an existing one. If you don’t have a domain yet, you can register a new one through Sangkrit.net. If you already own a domain, simply enter it to associate it with your new hosting plan.

    Sangkrit.net may offer additional features such as SSL certificates, website security, or automatic backups. These optional features can be added to enhance your hosting package, but you can skip these extras if you do not need them at this time.

    Step 4 Review Your Cart & Proceed To Checkout

    Before proceeding to checkout, review your shopping cart to ensure everything is accurate, including the selected hosting plan, domain name, and any additional features. If you have a promo code, this is where you can apply it to receive a discount.

    Proceed to checkout by clicking the appropriate button. You will then need to enter your billing and payment information. Sangkrit.net accepts a range of payment methods, including credit cards, wallets, and PayPal.

    Step 5 Complete The Purchase

    Once you’ve entered all the necessary details, review your order one final time, then click the “Complete Purchase” or “Place Your Order” button to finalize the transaction. After completing the purchase, you’ll receive an email confirmation from Sangkrit.net.

    Step 6 Access & Manage Your Hosting

    You can now access your hosting account by logging into your Sangkrit.net account and visiting the “My Products” section. From here, you can begin setting up your hosting plan, either by installing WordPress automatically or manually uploading your website files.

    Your hosting is now set up, and you’re ready to start building your website on Sangkrit.net’s reliable hosting platform.

    How To Launch Your Website On WordPress Hosting?

    WordPress hosting refers to web hosting specifically optimized to run WordPress websites. It provides a platform that enhances the performance, security, and easy use of WordPress sites.

    The hosting typically includes specialized features such as pre-configured WordPress installation, automatic updates, and security enhancements, ensuring that WordPress sites run efficiently without the need for manual maintenance.

    To create a website on Sangkrit.net’s Managed WordPress Hosting, follow these steps:

    1. Purchase a Managed WordPress Hosting Plan: First, log in to your Sangkrit.net account. Navigate to the “Hosting” section and select a WordPress plan that meets your needs. Complete the purchase process.
    2. Set Up Your WordPress Website: After purchasing the hosting plan, go to your Sangkrit.net dashboard. Select “WordPress” under the hosting section and click “Setup.” Choose whether to create a new website or migrate an existing one.
    3. Choose a Domain: You will be prompted to choose a domain name for your website. You can select one from your Sangkrit.net account or register a new domain.
    4. Install WordPress: Sangkrit.net will automatically install WordPress for you once you choose the domain. This installation process takes only a few moments.
    5. Access Your WordPress Dashboard: After the installation is complete, you can access your WordPress dashboard by clicking the “Manage” button next to your WordPress installation in the Sangkrit.net dashboard. The WordPress dashboard URL will be something like “yourdomain.com/wp-admin.”
    6. Choose a Theme: In your WordPress dashboard, go to Appearance -> Themes and browse or upload a theme that fits your website’s goals.
    7. Install Essential Plugins: The WordPress hosting on Sangkrit.net often comes pre-installed with essential plugins, but you can also add more by going to the “Plugins” section in your WordPress dashboard. Consider adding SEO tools, caching plugins, and security solutions.
    8. Customize Your Website: Customize your website by adding content to pages and posts, adjusting menus, and configuring your theme settings.
    9. Set Up Backups and Security: Sangkrit.net’s WordPress Hosting includes automated backups and robust security features. Review these settings and enable any additional options as necessary.
    10. Launch Your Website: Once you’re satisfied with your website’s design and content, make it live by ensuring your domain is properly connected, and start promoting your website!

    Your site is now live and running on Sangkrit.net’s WordPress Hosting, optimized for speed, security, and ease of use.

    How To Choose The Right Title For Your Website?

    In the previous lesson, you learned about adding or changing the title of your WordPress site. Choosing the right title for your website depends on the purpose of your site, the business name you have, and the audience you’re targeting.

    In this lesson, there are some factors to consider and suggestions based on different types of websites. These will help you understand how you can give a title to your website.

    Website Title for Personal Blog:

    Focus on your name or niche

    If it’s a personal blog, the title could include your name or the topic you’re writing about.

    For Example: “John’s Travel Adventures”, “Healthy Living with Sarah”

    Website Title for Business or Portfolio Site:

    Use your business name or service description

    The website title should reflect your business name or what you offer.

    For Example: “Smith Design Studio”, “Tech Solutions Hub”

    Website Title for E-commerce Site:

    Focus on products or services

    Highlight what your store sells.

    For Example: “Stylish Home Decor”, “Gourmet Coffee Shop”

    Website Title for Educational/Informational Site:

    Highlight the subject or expertise

    The website title should reflect on the knowledge or service you’re offering.

    For Example: “Learn Digital Marketing Today”, “Fitness Mastery”

    Website Title for Community or Non-Profit:

    Focus on your mission or objective

    Highlight your cause or community.

    For Example: “Green Earth Initiative”, “Tech for All”

    For A Good Website Title,

    • You must keep it concise and relevant: A short and clear title works best.
    • You should make it memorable: Choose a name that is easy to remember.
    • You may include keywords: For SEO, you may consider using keywords related to your site’s niche or purpose.

    Your website title should be clear, concise, and descriptive, accurately reflecting the content or purpose of your website while incorporating relevant keywords for SEO and at the same time ensuring it is memorable and easy to spell.

    How To Add/Change The Title & Tagline Of Your WordPress Site?

    Giving a title to your WordPress site defines your identity on the Internet and helps with search engine optimization. Here’s how to do it:

    1. Log into your WordPress admin area and navigate to the General -> Settings section.
    2. Enter a title in the “Site Title” field, simply type the name you want for your website. This will appear in the browser tab, search results, and often in the website’s header and footer depending on your theme.
    3. You may add a tagline in the tagline field present below the site title. The tagline is a brief description or slogan that tells visitors what your site is about.
    4. Once you’ve entered the title and tagline, click “Save Changes” at the bottom of the page.

    Alternatively, same can also be done by navigating to Appearance -> Customize page using the ‘Site Identity’ section.

    Make sure your site title is concise and reflects your business, brand, or purpose, as it impacts your site’s visibility and user experience.