This website is deprecated, and remains online only for historic access to old issues and docs for historic versions of Virtualmin. It has been unmaintained for several years, and should not be relied on for up-to-date information. Please visit www.virtualmin.com instead.
But I have since thought of another way... because each virtual server's etc/php.ini file is a symbolic link to the actual php.ini file, you can run the following which shows you what file php.ini points to, and therefore establish the PHP version in use, so I this is easier to work with, I can copy the output into a spreadsheet and remove the bits I dont need:
find -L /home/*/etc/php.ini -xtype l -exec ls -l {} \;
Howdy,
You can obtain that information using the Virtualmin command line tools.
If you run this command:
virtualmin list-domains --multiline
You'll get a lot of output, but look for the names "PHP version" in the output to see the version in use for each domain.
-Eric
ok thanks!
But I have since thought of another way... because each virtual server's etc/php.ini file is a symbolic link to the actual php.ini file, you can run the following which shows you what file php.ini points to, and therefore establish the PHP version in use, so I this is easier to work with, I can copy the output into a spreadsheet and remove the bits I dont need:
find -L /home/*/etc/php.ini -xtype l -exec ls -l {} \;