
You are wondering how can you check Magento version of any Magento-based website? Following this article, we will list the 7 effective ways to check the Magento version in your store system.
Magento is a name that is no longer a stranger to eCommerce website design units. It is widely used, upgraded, and regularly updated to help Store Owners keep up with these updates and be able to provide customers with the latest features that keep up with the trends and enhance security for purchasers.
The fact is that quite a few users are not proficient and lack information in updating the new Magento version. To do that, the first step store owners need to know is the Magento version they are currently using.
Review each method in the following details.
1.Checking Magento version via online tools
1.1 Use Magento Version Checking tool
The quickest and most effective way to check the Magento version easily without many steps is to useMagento Version Checking tool.
This is the place you will be able to put the URL link to your website:

1.2 Check Magento version and more at MageReport
This is a free website that gives you a quick insight into the security status of your Magento store(s) and how to fix possible vulnerabilities. MageReport.com is made by the Magento hosting specialists of Dutch provider Hypernode. They protect the performance and security of several thousand Magento shops.

Magereport is a great online tool that scans websites that are running Magento and generate a report detailing which security patches and measurements they have installed and which they are missing.
Here is a list of problems MageReport can check for Magento-based online stores:
- Current Magento version
- Obsolete Magento version
- Default /admin location
- Security patch
- Ransomware
- Unsecured version control
- Outdated server software
2. Check the version by adding ‘/magento_version’ at the end of the URL
The second and simple way to check the current version of the Magento 2 store is by adding the /magento_version at the end of the URL. However, this is only for Magento 2. It will show the current version of your Magento 2 store. Let’s look at an example,

3. Check version in Admin Dashboard
Another way to know the current Magento version number is as well simple as that you just regularly don’t put in your mind. Go to your admin board, in the meantime, at the dashboard, you see the Magento version at the bottom-right corner of each backend page. Looking at the following picture, you’ll see it is exceptionally recognizable:
Magento 1:

Magento 2:

For Magento 2, in case, the admin theme is changed, you should go to System > Web Setup Wizard > System Upgrade to check the version rather than the footer. Enter the public key and the private key to check the version as the example below:

4. Check in Composer.json file(For Magento 2 Only)
You can also use this method to check the Magento 2 version in the root composer.json file line. Follow the example below:
{
"name": "magento/magento2ce",
"description": "Magento 2 (Open Source)",
"type": "project",
"version": "2.2.6-dev",
"license": [
"OSL-3.0",
"AFL-3.0"
],
...
5. Using the Chrome Extensions
5.1 Use the chrome extension Wappalyzer
The first step:

and the result:

5.2 Version Check for Magento Extension
This is a paid tool, hence you can consider it as another option.

6. Use PHP Code checking
6.1 Check Magento 1 version
Mage::getVersion() //will return the magento version
6.2 Check Magento 2 version
- For 2.0.x versions:
echo \Magento\Framework\AppInterface::VERSION;
- For version 2.1:
The first way, using DI:
public function __construct( \Magento\Framework\App\ProductMetadataInterface $productMetadata ) {
$this->productMetadata = $productMetadata;
}
public function getMagentoVersion() {
return $this->productMetadata->getVersion();
}
The second way, using ObjectManager:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productMetadata = $objectManager->get('Magento\Framework\App\ProductMetadataInterface');
echo $productMetadata->getVersion();
7. Check Magento version via command line (For Magento 2 Only)
You can run the below command to check the Magento version:
php bin/magento --version
For finding if the Magento version is community or enterprise edition, run the below command:
composer licenses | grep Name:
Last Words
Magento is a great platform for merchants to take advantage of e-commerce profits. Keeping abreast of updates and creating new features that keep up with trends is equally important when doing business. Hopefully, this blog on the topic of checking the Magento version will contribute a small part to make it more convenient for you to update the new Magento version.
If you have any questions or concerns, feel free to share them in the Comments section below. We’d be happy to discuss and answer for you!
Thanks!
People also search:
- Check Magento version
- Declare(strict_types=1 Magento 2)
- Check magento 1 version
- Download sample data Magento 2
- Check module:status Magento 2
- Magento download
- Magento 2 update extension via composer
- Module version
