Skip to main content

Find all Joomla installations

Comments

4 comments

  • 24x7server
    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
  • cPanelMichael
    Hello :) Yes, a command such as the one referenced in the previous post should help identify the Joomla installations. Thank you.
    0
  • em.ci
    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.ci
    0
  • cPanelMichael
    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.