• Free Checkup
  • Emergency Support
  • Login
  • Sign Up
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Server Management Tips
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team
Copyright 2021 - All Right Reserved
Technical Articles

PHP Fatal error: Incompatible file format: The encoded file has format major ID

by Bella October 10, 2013
written by Bella

PHP Fatal error: Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4 in /home/user/public_html/swift.php on line 0 PHP Fatal error: Incompatible file format: The encoded file has format major ID 2, whereas the Loader expects 4 in /home/user/public_html/swift.php on line 0 Have you seen such errors in your site after server migration or server upgrade or php upgrade. Yes, this seems to be haunting a lot of people. The reason for this error is simple. In simple words, Your Site is incompatible with …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

SMF Forum Showing Blank Screen / Not Working

by Bella September 10, 2013
written by Bella

Problem: You tried installing Simple Machines Forum software (SMF) either from the source website or using Fantastico, but it shows as a blank page when you try to access it. No issues are seen in the cPanel Error Log and all other configurations appear to be correct. Solution : This issue is caused by suhosin security module which blocks the PHP function shell_exec() from being used. However, SMF appears to call this function in the Sources/Subs.php file, around line 3538: // Try the Linux host command, perhaps? This will fix …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Spamming in a Qmail Enabled Plesk Server – Finding the Culprit

by Bella September 10, 2013
written by Bella

The following is the result of a live analysis done when spamming has been found from a Plesk server with the qmail mail server. This will help you to understand how to trace a qmail spamming in the server. [root@server ~]# /var/qmail/bin/qmail-qstat messages in queue: 758 messages in queue but not yet preprocessed: 0 We do have 758 mails in the queue. Let’s examine the queue with qmail-qread. Seeing a bunch of strange email addresses in the recipient list? Usually, it is meaning spam.

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Configuring Virtual Host Using Webmin Control Panel

by Bella September 9, 2013
written by Bella

The term virtual host refers to running two different sites on the same machine. This allows one server to share the same resources to multiple sites. There are two types of virtual hosting-name based and IP-based. Name-based hosts use multiple hostnames for the same IP address. The main issue with name-based virtual hosting is that it is difficult to host multiple websites running under secure SSL/TLS protocol. Also if DNS is not functioning, there will be some difficulties to access virtually hosted website even if the IP address is known, …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

Application removal in plesk which is not automatically removed after uninstall

by Bella August 7, 2013
written by Bella

First log in to Plesk then check which domain the application isinstalled under Go to “Websites & Domains” and hover over the domain. You should see something like https://localhost:8443/smb/web/settings/id/xxx We want the Last number: xxx (555 for example) Now you will need to login to the psa database: cmd cd “path to your admin mysql\bin directory” Provide the following command in windows command prompt: #cd %plesk_dir%\mysql\bin && mysql.exe -u admin -P8306 psa -p mysql –port=8306 -uroot -pThepassword mysql> use psa; mysql> select id from apsresources where pleskID=555; +——+ | id …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Linux BasicsTechnical Articles

UPCP Failed cPanel : TIMEOUT: RPM DB Is Not Responding

by Bella August 7, 2013
written by Bella

The cPanel update failed with the following error : Fatal: Your RPM database appears unstable. It is not possible at the moment to install a simple RPM. The RPM database is corrupted which is causing the problem. Follow the below steps to fix this issue: 1. mkdir /root/old_rpm_dbs/ 2. mv /var/lib/rpm/__db* /root/old_rpm_dbs/ 3. rpm rebuilddb 4. Then run, #upcp –force If you require help, contact SupportPRO Server Admin

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
General TopicsMiscellaneous

Bandwidth Throttling

by Bella August 7, 2013
written by Bella

Bandwidth throttling is a deliberate technique used to control the amount of data that can be transferred over a network within a specific time period. It is commonly applied by internet service providers, hosting environments, firewalls, and applications to manage network congestion, maintain stability, and ensure fair usage of resources. While throttling is often misunderstood as general website slowness, it is important to distinguish intentional bandwidth limits from performance bottlenecks caused by inefficient code or server overload. What Is Bandwidth Throttling? Bandwidth throttling refers to the intentional limitation of upload …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Linux Basics

Backup and Restore MBR in Linux

by Bella August 7, 2013
written by Bella

The Master Boot Record (MBR) is the first 512 bytes of a storage device. The MBR is not a partition, it is reserved for the operating system’s boot-loader and the storage device’s partition table. MBR Total Size 446 + 64 + 2 = 512 Where, 446 bytes Bootstrap. 64 bytes Partition table. 2 bytes Signature. To backup the MBR: dd if=/dev/sda of=/path/mbr-backup bs=512 count=1 To restore the MBR and partition table: dd if=/path/mbr-backup of=/dev/sda bs=512 count=1 Restoring the MBR with a mismatching partition table will make your data unreadable. To …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Miscellaneous

How to Automate ClamAV Virus Scans with Cron Jobs on Linux ?

by Bella July 2, 2013
written by Bella

Clam AntiVirus (ClamAV) is a free, open-source, cross-platform antivirus toolkit designed to detect various types of malware, including viruses and trojans. It is widely used on mail servers for scanning incoming emails and is compatible with multiple operating systems such as Linux, BSD, macOS, Solaris, and more. In this guide, we’ll walk through how to install ClamAV and automate virus scanning using cron jobs on a Linux server (tested on Red Hat Enterprise Linux). Step 1: Install ClamAV Install ClamAV and required components using the package manager: Start the ClamAV …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
MiscellaneousServer Tweaking

How to fix – Error: Account Creation Status: failed,mysql user with the name already exists

by Bella July 2, 2013
written by Bella

While restoring a cPanel account from one server to another server there is a chance for following error: Account Creation Status: failed (Sorry, a mysql user (let’s take ‘dbuser’) with the name already exists To Delete the user : Please login into the mysql and follow the steps mysql mysql > use mysql; mysql > drop user dbuser@localhost; OR mysql> delete from mysql.user where user=dbuser; You can also check this using : select User, Host from user where User like dbuser; Where dbuser is the user mentioned in the error. …

Continue Reading
0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Services

  • Outsourced hosting support
  • Server administration
  • Web Programming
  • Large Language Models
    Understanding LLMs (Large Language Models): A Step-by-Step Guide for Beginners
    Introduction Artificial Intelligence (AI) is revolutionizing the way we live our lives by transforming everything from work practices to communication and even ways we search for information. Nowadays, most of…
  • Linux server monitoring dashboard showing I/O wait and disk bottlenecks
    How to Troubleshoot High I/O Wait in Linux
    Linux servers can handle thousands of operations every second. However, they can still slow down when storage devices become overloaded. One of the clearest signs of a storage problem is…
  • How to Choose Server Infrastructure for Hosting Companies
    How to Choose the Right Server Infrastructure for a Growing Hosting Company ?
    Why Infrastructure Decisions Matter ? Running a hosting company becomes more challenging as your business grows. In the beginning, managing a few customers and servers may feel simple. However, your…

Categories

  • ansible
  • Artificial Intelligence
  • AWS
  • aws managed service provider
  • AWS Support
  • aws support services
  • Build Automation
  • Business
  • Case Study
  • Cloud
  • Cloud Managed Service
  • Cloud Support Services
  • Cloudflare
  • Compiling tools
  • cPanel
  • dedicated server support
  • Dedicated servers
  • Dedicated tech support
  • DevOps
  • Disaster Recovery
  • Docker
  • GCP
  • General Topics
  • JetBackup
  • Linux
  • Linux Basics
  • live chat
  • live chat support
  • Miscellaneous
  • Open source
  • Outsourced tech support
  • Recovery & Backup
  • Remote infrastructure Management
  • RunCloud
  • Security
  • server checkup
  • server management
  • server Migration
  • Server Monitoring
  • Server Security
  • server support
  • Server Tweaking
  • Technical Articles
  • Troubleshooting
  • web hosting
  • web hosting support
  • Windows Server
  • WordPress

CONTACT US

Sales and Support

Phone: 1-(847) 607-6123
Fax: 1-(847)-620-0626
Sales: sales@supportpro.com
Support: clients@supportpro.com
Skype ID: sales_supportpro

Postal Address

1020 Milwaukee Ave, #245,
Deerfield, IL-60015
USA

  • Industry Solutions
    • Web Hosting Services
    • Service Providers
    • E-Commerce Companies
    • Software Vendors
    • Web Developers
    • ISPs
    • Services
  • About Us
    • Company
    • Technical Blog
    • Careers
    • FAQ
    • Partners
    • Site Map
    • Affiliates
  • Popular Plans
    • Dedicated Team Support
    • Helpdesk Support
    • Hourly Administration
    • Legal
    • Privacy Statement
    • Terms of Use
    • How we work

©2022  SupportPRO.com. All Rights Reserved

X-twitter Facebook Linkedin Rss
Server Management Tips
  • Cloud Support
    • Cloud Management
    • AWS support
    • Google Cloud support
    • Azure Support
    • DevOps Support
  • Server Administration
    • Node Management
    • Dedicated Server Support
  • OutSourced Tech Support
    • Dedicated Support
    • Dedicated Tech Support
    • Semi-Dedicated Tech Support
    • Dedicated Team Support
  • Client Support
    • Helpdesk Support
    • Live Chat Support
  • Emergency Support
    • Hourly Administration
    • Server Migration
    • Server Abuse Handling
  • Development
    • Hire a Developer
    • Hire a Development Team