Find all Joomla installations
Hi,
Do somebody now how I can get a list of all Joomla Installations on my Server?
Best Regards,
emci
-
Hello :), If you have root access then please give a try with the following command. This command will show your all joomla installation path and version which are installed on your server. find /home/*/public_html/ -type f \( -iwholename '*/libraries/joomla/version.php' -o -iwholename '*/libraries/cms/version.php' -o -iwholename '*/libraries/cms/version/version.php' \) -print0 -exec perl -e 'while (<>) { $release = $1 if m/ \$RELEASE\s+= .([\d.]+).;/; $dev = $1 if m/ \$DEV_LEVEL\s+= .(\d+).;/; } print qq( = $release.$dev\n);' {} \;0 -
Hello :) Yes, a command such as the one referenced in the previous post should help identify the Joomla installations. Thank you. 0 -
Hi, Thank your for the command! It worked out for me :-). Problem solved. Have a nice weekend. PS: I found a good command for wordpress too: find /home/*/public_html/ -type f -iwholename "*/wp-includes/version.php" -exec grep -H "\$wp_version =" {} \;
Best Regards, em.ci0 -
I am happy to see the command was helpful. Thank you for updating us with the outcome. 0
Please sign in to leave a comment.
Comments
4 comments