If you are getting error while accessing the Rvsitebuilder from cpanel ==================== Fatal error: The encoded file /var/cpanel/rvglobalsoft/rvsitebuilder/www/ionctestlicense.php requires a license file. The license file /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic has expired. in Unknown on line 0 ===================== Then Please login to the server through root and execute. ======== root@server[#]rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder.lic root@server[#] rm -f /var/cpanel/rvglobalsoft/rvsitebuilder/rvsitebuilder-pro.lic root@server[#] perl /usr/local/cpanel/whostmgr/docroot/cgi/rvsitebuilderinstaller/autoinstaller.cgi ======== This will fix the issue If you require help, contact SupportPRO Server Admin
Server Tweaking
How to restrict number of connections per vhost/dir and limit the bandwidth for files
By enabling ‘mod_bw’ module in apache we can control bandwidth in the server for a domain. When you find a domain using bandwidth via apache service and it need to be controlled within a certain limit and on basics of files , we can use mod_bw module in apache.
Disk usage 100% ? Retain latest entries of a file and delete the rest of the contents
Have issues with 100% diskspace in your Linux dedicated server. An easy and quick way is to clear the log files and thereby you can acquire quite a large amount of usable diskspace. Check the following: 1. Check the total disk usage: [root@testserver /]# df -h 2. Check the size of a each folder: [root@testserver /]# du -sch * or du -sch /foldername command
Optimizing MySQL performance is critical for high-traffic applications. This guide explains how to monitor and tune MySQL for efficient resource usage, focusing on modern defaults, InnoDB, and current best practices. 1. Check MySQL Status and Variables Log in to your MySQL server: mysql -u root -p Check general statistics: SHOW STATUS LIKE ‘%tables%’; SHOW VARIABLES LIKE ‘table_open_cache’; Analysis: Open_tables – Number of tables currently open Opened_tables – Tables opened because the cache was too small Tuning tip:If Opened_tables increases rapidly, increase table_open_cache in your my.cnf : [mysqld] table_open_cache = 4000 …