Previously we posted an article on how to determine Magento version by checking the app/Mage.php file:
Determine Magento Commerce Version
Here’s another technique that I like using PHP command line:
1 2 3 4 5 6 7 8 |
cd httpdocs /httpdocs$ php -a Interactive shell php > include 'app/Mage.php'; php > echo Mage::getVersion(); 1.6.2.0 php >exit(); |
Credit for this goes to euperia.com.