I am trying to assist a client in migrating their Magento implementation from a legacy server to a clean build, current Magento server.
How can I identify what release of Magento they're currently running, just from the raw files in the Magento home directory? Their ISP has stopped the Apache server on their site, so I need to do my forensics using only the flat files on disk.
Hello @robert_gordon,
4 Ways to check Magento Versions without code
Checking Magento version with online tools
With the internet connected, you can easily determine which version of Magento that your webstore is on. Here are 3 fastest and simplest online tools that can show your Magento version in seconds just by typing the URL of your webstore.
--
If my answer is useful, please Accept as Solution & give Kudos
The version of Magento 1 is stored in app/Mage.php:
public static function getVersionInfo() { return array( 'major' => '1', 'minor' => '9', 'revision' => '3', 'patch' => '6', 'stability' => '', 'number' => '', ); }