Search results

  1. K

    Have you used drag & drop for organizing and reordering WordPress?

    Organizing and reordering WordPress settings usually happens when you start customizing things. For user-friendly, WordPress has acknowledged the drag & drop option. By default, WordPress has settings to arrange the page post or blog post based on the alphabetic order or published date. In...
  2. K

    Steps to check SMTP Logs in IIS server

    If you are not able to send mail through PHP or ASP.NET script then you can try to resolve the issue by checking the SMTP logs in IIS. You can check below steps to check logs. How to enable SMTP Logs? Login to your Windows VPS server. Navigate to Start >> Administrative tools. Now you have to...
  3. K

    Steps to modify RDP Screen Resolution on Windows VPS server

    You can follow below steps to change screen resolution in RDP: First click on “Start” button and then search for “Run”. You will see a command box where you have to type “mstsc” and then click on OK. You will be able to show new RDP connection where you have to click on “Show options” button...
  4. K

    Not able to login in Windows VPS server. Why?

    You can check the reason must be one of the following: First check you are using correct IP address and port number to login into RDP. Default port of windows RDP is 3389 so check this port is not blocked on your firewall or ISP. And if you are using any configured port then you have to check...
  5. K

    Steps to manage website redirection in IIS 7

    You can check below steps to redirect website in IIS. Login to Windows VPS server. Navigate to Start >> Administrative Tools >> Internet Information Services (IIS) Manager. Click on the server name in the left side of your screen and then click on “Sites” Now choose your particular domain and...
  6. K

    Do you know to set up an email tracking system in WordPress?

    Email marketing is the most common system to promote your product. WordPress emails are somewhat different from usual emails. Why, when you send from normal emails, you can’t know how many people received your email and whether they read your email or not. But using WordPress, you can easily...
  7. K

    Steps to configure sudo command in Linux vps

    Its not a good idea to grant ALL permission to users like this: root ALL=(ALL:ALL) ALL admin ALL=(ALL:ALL) ALL So to resolve this we have to properly configure sudo user and for that you can use below command: User_name Machine_name=(Effective_user) command You can check the below...
  8. K

    Difference Between su and sudo command

    The main difference between su and sudo command is that su command needs the password of targeting account and in sudo command you need password of current user, that’s why it is safe to use sudo command as it does not share sensitive information.
  9. K

    Steps to manage periodic recycling in IIS 7

    You can follow below steps to manage periodic recycling: First login to Windows VPS server. Navigate to Start >> Administrative Tools >> IIS. Click on “Server name” in left hand side. After that click on Application Pools and you can view all the hosted websites in the list. Click on particular...
  10. K

    Steps to manage failure settings for Application Pool in IIS

    You can follow below steps to configure Fail Protection in IIS Application Pool: First login to Windows VPS server. Click on IIS to open it. On left hand side you will find “Connection pane” where you have to click on servername. From list you have to click on “Application Pool”. You will find...
  11. K

    How to restart IIS with command ?

    You can follow below steps: Login to Windows VPS server. Click on “Start” button and choose “Run” command prompt. Here you have to enter iisreset command
  12. K

    Steps to start/stop application pool in Windows server

    You can follow below steps to start/stop application pool in IIS: Login to Windows VPS server. Click on IIS Manager to open it. On the left side panel you have to click on “Application Pools”. Here you can right choose particular domain for which you have to start/stop pool. On the right side...
  13. K

    Error “bash: netstat: command not found.”

    You will always get this error in linux if you haven’t install netstat command. You have to install net-tools to resolve this error, you have to run below command to install it... Centos yum install net-tools Ubuntu/Debian sudo apt install net-tools After installing net-tools you can run...
  14. K

    Way to add a PDF viewer in WordPress!

    Figuring out the layout in the same structure and usability is very important. In that case, PDF is the most relevantly searched application to view files in a good format. You don’t have the option to embed PDF in WordPress but you can embed all other activities like media, tweets, video, and...
  15. K

    How can we install Joomla in cpanel?

    Softaculous is an commercial script library which help to install open-source CMS in one click. You can install Joomla easily with below steps without spending too much time on it. Login to your cPanel. Click on Softaculous App Installer. There you have to search for Joomla CMS and click on it...
  16. K

    Linux Wget command examples

    In Linux command line you have to use wget command to download all your files from remote server. There are various basic ways to use wget command: If you want to download the file in same directory: You have to use below command to download the file in current directory # wget...
  17. K

    Steps to whitelist domain in Spam Assassin

    You can follow below steps to whitelist domain for emails in cpanel: First login to cpanel. Click on “Spam Filters” under “Emails” section. Here you will find “Show Additional Configurations” option in the last. You will find this option if your hosting provider have enabled it on server. Now...
  18. K

    Error “Receiving unexpected T_STRING”

    You are getting this error because .html files are parsed as PHP file because you are using these tags "<?" or "?>" in your .html file. If you will remove these symbols from your file then this error will be resolved.
  19. K

    Resolved Error “PHP Fatal error: Cannot redeclare”

    If you are getting error “PHP Fatal error: Cannot redeclare” function the it means you are declaring same function multiple times in your code. There can ne three reasons if you are getting error: Using same function in 2 files. If you are define function in two places within same file. Two...
  20. K

    Disabling New User Notifications: A Complete Guide for WordPress Website

    WordPress, by default, sends a notification email when someone signs up on your website. It’s a handy way to stay updated on when users are joining hands with your brand. But there are times when this can get overwhelming. For example, if you’re seeing dozens of registrations per day, thee new...
Top