Mass therme change change for all hosting packages

parag joshi

Well-Known Member
Sep 2, 2008
52
0
56
Hello,

I want to change cpanel theme all hosting packages at one time.

How can i do that.

Please advise.
 

parag joshi

Well-Known Member
Sep 2, 2008
52
0
56
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
 

madaboutlinux

Well-Known Member
Jan 24, 2005
1,051
2
168
Earth
The following script should work for you. Execute each line as it is:

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;
Note: the single or double quotes may get replaced with dot (.) while copy/pasting it in shell, so make sure to correct those.

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.