June 25, 2026
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 MoreTo 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 MoreTo 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 MoreThe 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 MoreFor 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 MoreIf 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 MoreWe 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 MoreGetting 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 MoreYou 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