Search results

  1. K

    Do you know to use phpMyAdmin for changing the theme in WordPress?

    Let me ask a question? WordPress admin area or theme management – Which is the easy one to handle friends! Most of them will say managing the theme is an easy task whereas the WordPress admin area is not an easy task. Now, you need some other help to deal with it carefully right! Let us get...
  2. K

    A Complete Guide to Setting up WordPress Staging Websites

    WordPress staging websites are a great way to test websites locally before implementing those changes on a live website. WordPress limits developers full preview of the pages, so applying the changes makes sense. If you’ve never set up a staging WordPress website before, then this article is for...
  3. K

    Moving a WordPress Website from Local Web Server to Live Site

    Many developers opt to develop a WordPress website locally on a PC or Mac to speed up the development process. Once the changes are made, you must move it to the live site. That’s when some developers, especially those new to website development, look for help. In this article, learn the steps...
  4. K

    Creating a Backup of WordPress Website Hosted on Linux VPS Using SSH

    In Linux servers, the directory path for hosted websites is ./var/www/html/ by default. You can use this path for creating backup files of the websites using SSH. The result with be an archived file in either tar or gzip format. In this article, learn how to create backup files of your WordPress...
  5. K

    Have you heard about page caching in WordPress? Here is the article to configure it easily

    Website loading time – Why it is important in all aspects? Website performance is important for website users and owners. A quick-loading website doesn’t make a user lose interest. Just imagine, if your website loads more than 4min or 5 min will he or she wait for the complete loading time. He...
  6. K

    Creation of WordPress Child Theme

    Do you think when you customizing the theme of WordPress is a risky option? So, here comes the difference and reflection of doing changes in child theme parents’ theme. Whatever you do in child theme it doesn’t affect your parent theme at any cause. Why? It's because the changes and...
  7. K

    Complete Guide to Changing Domain Name of WordPress Website

    There are times when you may want to change domain name of your WordPress website. Many companies and blogs undergo name change and hence have to change their domain name. In other cases, when switching from a sub-domain to a top-level domain, you’d have to change the domain name. In this...
  8. K

    Guide to Using CNAME Records (And When to Use them)

    There are various good reasons for using CNAME Records. CNAME stands for Canonical Name. The records are used for specifying the alias or nickname of a primary host. In other words, you can map a subdomain to the main domain that’s hosting the content of that subdomain. For example, if visitors...
  9. K

    A Guide to Clearning DNS Cache on Different Operation Systems

    Cache make websites faster with a simple technique. When users visit a particular website, some of the data gets stored in the browser. So the next time the user loads the website, the stored data gets utilized to load the content faster. Likewise, the operation system also collects data to...
  10. K

    How to Schedule or Delay Emails in Outlook?

    Many email clients including Outlook give you an option to schedule your emails. So after composing them, you don’t have to send them immediately. You can willfully delay the delivery of an individual email. You can set the date and time by having them saved in the Outbox and get sent only at...
  11. K

    Steps to disable ClamAV plugin on server

    You can follow below steps to disable ClamAV plugin in WHM: Login to WHM. Here click on “Service Manager” under “Service Configuration”. Now scroll and search for ClamAV Daemon, here you will find 2 options “Enabled” and”Monitor”. At last click on “Save”.
  12. K

    Steps to remove /public from Laravel URL

    If you want to use laravel directly with its domain name then you have to check below steps: For security reason you have to take backup of your .htaccess file with below command: cp -vi .htaccess{,.bak} Now you have to add below code in your .htaccess file. RewriteEngine On RewriteCond...
  13. K

    Steps to install ionCube Loader in WHM

    Installing ionCube Loader by WHM: i. First login to WHM by using your server IP for ex. http://1.2.3.4:2087/ ii. Then click on Tweak Setting. iii. After that click on PHP Tag. iv. And then find the configuration option name “cPanel PHP Loader” and click on the ionCube Loader. v. Then select...
  14. K

    Steps to install PEAR modules with command line

    You can install cpanel interface to install PEAR packages, but if interface does not provide all the options then you have to use command-line. You can install PEAR modules with command line, you have to login as user. After you logged in as user, you have to use the full path of cpanel PEAR...
  15. K

    Steps to edit configuration file

    You can add below code to disable particular extension globally: <Files ~ "\.<ext>$"> Order allow,deny Deny from all </Files> You can add below code for multiple extension, you can replace <ext#> to your file extensions. <FilesMatch "\.(<ext1>|<ext2>)$"> Order Allow,Deny Deny from all...
  16. K

    Steps to disable particular file extension globally

    If you want to disable access of particular file extension then you can do this with Includes Editor. You can follow below steps for that: Login to WHM. Here click on Apache Configuration under Service Configuration. Here click on “IncludeEditor” and then Pre VirtualHost Include After that...
  17. K

    Steps to clear Nginx cache via ea-nginx

    If you are continuously getting the previous page and changes are not visible in browser then there must Nginx cache issue on server, you have to clear Nginx cache on server for particular user. You can follow below steps : You have to run below command to clear NGINX cache...
  18. K

    Steps to force restart Apache service

    If you are unable to restart Apache and continuously getting below error: Address already in use: make_sock: could not bind to port 80 Then you can run below command first and then try to restart Apache service: killall -9 httpd Now restart your Apache service: Service httpd restart
  19. K

    How to check HTTP headers in Chrome browser?

    If you want to check the HTTP headers working or not with the help of chrome browser. First open your website in Google Chrome browser. Now right click anywhere in page and then click on “Inspect” or “Inspect Element”. After that click on Network tab. Reload the web page. You will get all the...
  20. K

    How will you add Plesk Custom Logo easily?

    Why do you need a logo? To show your identity right! A logo expresses the website brand or product, an identical way to highlight your thoughts. Like we add flavors to our loved dish, you can create a logo full of flavors and love. It is easy for your customer to get your product in a minute of...
Top