Geez, I guess you guys have lots of questions. Nick should pay me for this :D
You can use vi to modify all your accounts or accounts based on certain criteria all at once. The command below will search all your /var/cpanel/users/* files and replace certain themes to x or x2. The example below will find all users that are using the theme "default" and will change them to the theme "x":
find /var/cpanel/users -type f -print | xargs file | grep -i text | cut -f1 -d: | while read file; do
vi $file >/dev/null 2>&1 <<!
:%s,RS=default,RS=x,g
:wq
!
done
cPanel.net Support Ticket Number:
The directory structure remains the same, however as you can see, the cPanel X SKINS is no longer on a directory called "Xskin", it is now on directories called x, x2 and xmail. So, if you are using the x skin, your path instead of being /frontend/Xskin/mail/dodelpop.html, it will be /frontend/x/mail/dodelpop.htmlI just want to make sure that the new X Skin 2 will use the same directory structure and file names for email operations as X Skin 1.7
Just login to your server via SSH, edit /etc/cpupdate.conf and make sure you have "edge" showing after CPANEL (CPANEL=edge). You can also do this from within WHM -> Update Preferences. Then just update cPanel by typing /scripts/upcpAll I need to do is run /scripts/upcp when set to edge and cpanel automatically d/ls xskins and installs it as default?
Try editing your packages from within WHM, I remember that in the beginning, modifying a package via WHM used to modify all accounts bound to that package, I don't know if that is still the case.Is there a way to change EVERY clients skin they use to x2?
You can use vi to modify all your accounts or accounts based on certain criteria all at once. The command below will search all your /var/cpanel/users/* files and replace certain themes to x or x2. The example below will find all users that are using the theme "default" and will change them to the theme "x":
find /var/cpanel/users -type f -print | xargs file | grep -i text | cut -f1 -d: | while read file; do
vi $file >/dev/null 2>&1 <<!
:%s,RS=default,RS=x,g
:wq
!
done
cPanel.net Support Ticket Number: