If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
I have setting new php module in LVE Manager > Selector.
I have choose default modules new set and save it but how to use the new php module rule setting to all user?
This can break PHP for users, especially if they have already customized PHP exstensions.
If you decided that you still want to do it:
$ selectorctl --reset-user-extensions --version=5.2 --all
Chang, sorry for the misinformation --all do not means all users, you are right.
Suppose to achieve a goal you need something like taking all users from a server and run reset extensions command for them, for cpanel it could be like:
ls -1 /var/cpanel/users | grep -v "\." | awk { print "selectorctl --reset-user-extensions --version=5.4 --user="$1 } | sh
I know this post is over 2 years old, but it really helped me out today. I added PHP 7.1 to our servers today, and then I enabled the opcache module for PHP 7.1, so it is on by default. Sadly, this only works for new accounts... all the existing customers on the server will not get the benefit of opcache without knowing to manually enable it.
I was able to use Bogdans one-liner (substituting 5.4 with 7.1) to update all existing users. This was very safe to do, because we JUST added 7.1 and were confident no existing users had any type of customized 7.1 settings.
Id really like to go back and enable opcache for our other non-native users, but dont think there is a way to do that, without resetting all their modules, which could cause problems, if they have enabled a needed module that is not on by default.
> Id really like to go back and enable opcache for our other non-native users, but dont think there is a way to do that, without resetting all their modules, which could cause problems, if they have enabled a needed module that is not on by default.
such task is possible using --enable-user-extensions in selectorctl for e.g.:
selectorctl --enable-user-extensions=opcache --version=7.1 --user=user1
should add mentioned extension without resetting already existing ones. It can also be applied into batch file for all users like Bogdan has provided.
@xixi you are a genius!!! THANK YOU!! That worked perfectly!! I enabled opcache for versions 5.5, 5.6 and 7.0, on our cPanel servers, via these commands:
Code:
ls -1 /var/cpanel/users | grep -v "." | awk { print "selectorctl --enable-user-extensions=opcache --version=5.5 --user="$1 } | sh
ls -1 /var/cpanel/users | grep -v "." | awk { print "selectorctl --enable-user-extensions=opcache --version=5.6 --user="$1 } | sh
ls -1 /var/cpanel/users | grep -v "." | awk { print "selectorctl --enable-user-extensions=opcache --version=7.0 --user="$1 } | sh
I looked at some customers before and after, and it definitely worked exactly as I wanted!
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, personalize advertising, and to analyze site activity. We may share certain information about our users with our advertising and analytics partners. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment