Hello,
I want to change cpanel theme all hosting packages at one time.
How can i do that.
Please advise.
Hello,
I want to change cpanel theme all hosting packages at one time.
How can i do that.
Please advise.
To change the cPanel theme for all the domain at once, try
» Blog Archive » Howto: Change cPanel theme for multiple accounts.
Hello,
Its not working.
Do you have any idea that how do i change cpanel theme all hosting packages inclueding reseller hosting packages alos at one time?
Please advise
The following script should work for you. Execute each line as it is:
Note: the single or double quotes may get replaced with dot (.) while copy/pasting it in shell, so make sure to correct those.for i in `ls -la /var/cpanel/users/ | awk ‘{print $9}’ | sed ‘1,3 d’`
do
sed -i “/RS/d” $i;
echo “RS=x3" >> $i;
done;
This will replace the cPanel theme to x3 for all the domains on the server. If you want to make the changes for a specific reseller domains, you need to list the reseller domains in a file and then use it in the for loop.
Hello,
This scripts is also not working.
Please advise.
Hello,
This script is working now.
Thanks,