Skip to main content

OnlineSupport4u

Issues in emails after changing MX records cPanel

By PrasadNaik
February 18, 2025

When user faces issues in email it due to domain MX pointing to remote server in This case login to server and check domain entry whether in local or remote domains grep domain.tld /etc/remotedomains If domains name is not in /etc/remotedomains it will be in /etc/localhost Change the domain MX record in zone file to […]

Read More

Reset bandwidth CWP

By PrasadNaik
February 2, 2025

To reset bandwidth in CWP is tricky by changing package limits Easier way to reset is resetting limits by below command /scripts/cwp_api account reset_bandwidth username The username is account username

Read More

Change strings in files in the same directory

By PrasadNaik
January 29, 2025

To change string in one directory using sed sed -i ‘s/kng.com/vtu.com/g’ *.db This would a single command for all files in folder with extensio n.db

Read More

A DNS entry for “rexxxxxxl.com” already exists

By PrasadNaik
January 29, 2025

The User had removed his addon domain from cPanel. However while adding back there was wrror coming up “A DNS entry for “rexxxxxxl.com” already exists” T The issue is likely due to leftover DNS configurations from removed domains. Running the /scripts/cleandns script should correct the issue. Running command /scripts/cleandns fixed the issue 🙂

Read More

Disk not visible while installing windows OS ?

By PrasadNaik
December 4, 2024

For those using virtualizor on Virtualizor software If you face issues while installing windows and dont see disk Go to edit VPS Select Disk Select Disk driver set to none Which you can see in below image and reboot VPS Disk will be visible

Read More

WHM logging out repetedly

By PrasadNaik
December 3, 2024

If you are getting logged out repetedly from WHM Go to Home /Server Configuration /Tweak Settings From there in security section check on Cookie IP validation By defaut its set to strict. Enable loose option and save. This should fix this issue

Read More

ERROR 1292 (22007): Incorrect datetime value: ‘0000-00-00 00:00:00’ for column ‘date’ at row 87103

By PrasadNaik
November 25, 2024

We got error while altering a table in mysql The issue was due to strict mode enabled in Mysql You can check if mysql strict mode is checked using below command # mysql mysql> SELECT @@sql_mode; If you see statement +———————————————————————————————————————–+| @@sql_mode |+———————————————————————————————————————–+| ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION |+———————————————————————————————————————–+1 row in set (0.01 sec) To disabled it open fie […]

Read More

Error: GPG check FAILED

By PrasadNaik
November 23, 2024

Getting error Error: GPG check FAILED while installing any package on alma linux 8 ? While installing a package got an error [root@secure ~]# yum install tracerouteLast metadata expiration check: 0:43:24 ago on Saturday 23 November 2024 10:15:46 AM EST. Dependencies resolved. Package Architecture Version Repository Size Installing:traceroute x86_64 3:2.1.0-8.el8 baseos 66 k Transaction Summary […]

Read More

WordPress Error : Missing a temporary folder

By PrasadNaik
October 7, 2024

You may get an error while uploading images in wordpress with error The error message said – Missing a temporary folder The solution to this issue is Open wp-config.php in server Search for WP_TEMP_DIR in wp-config and check the path Usually its wp-content/Temp Check if this folders exists using ls -al /home/username /public_html/wp-content/Temp If folder […]

Read More
1 2 3 15