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 …
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 …
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.
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, …
Application removal in plesk which is not automatically removed after uninstall
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 …
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
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 …
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 …
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 …
How to fix – Error: Account Creation Status: failed,mysql user with the name already exists
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. …