Magento 2 tutorials

How to check Magento 2 version (working with every version of Magento 2)

Pinterest LinkedIn Tumblr

When using Magento 2, in some cases you may want to check the current version of Magento 2 store for different purposes. For example:

  • You want to check the current version of Magento 2 to upgrade to a newer version with enhanced security and performance
  • You want to check the current version of Magento 2 to make sure that the theme/extension you are going to purchase is compatible with your store.
  • You are about to transfer your Magento 2 website to a new hosting provider and you want to make sure that the new hosting support the current Magento 2 version.

In this tutorial, I will guide you all possible method you can use to track the current version of Magento 2

Method 1: Check Magento 2 version in store backend (easiest)

This is the quickest method, you don’t need to use code or ssh commands.

Login to Magento 2 backend with an Admin account and go to the bottom of the page.

In footer section of the page, you will find Magento 2 version at bottom right, above Privacy Policy | Report an Issue links

check magento 2 version 1

In this example, the current version of Magento 2 is 2.3.5

Sometimes the admin design was modified and footer is removed, in this case navigate to System => Web setup wizard

web setup wizard

Input public key and private key to access setup wizard, the current Magento 2 version will be displayed right here in step 1. In this example, the version is: 2.3.0 Community Edition

check magento 2 version 2

Method 2: Check Magento 2 version using SSH

In case you have SSH access, you can check Magento 2 version using SSH command.

Login to your Magento 2 server using SSH and use this syntax

php bin/magento --version

Sample output

Magento CLI version 2.4

=> The current Magento 2 version is: 2.4

Method 3: Check version of Magento 2 using Composer.json

Another method to find the current version of Magento 2 is using Composer.json file.
Connect to your server using SFTP or FTP protocol (or use filemanager if you have Cpanel/Directadmin) and look for composer.json file

Magento 2.4 composer.json file path

If you find composer.json in \vendor\magento\magento2-base\composer.json => Your Magento 2 version should be 2.4.x+

Go to \vendor\magento\magento2-base\composer.json
Open this file with a text editor (such as notepad)

magento 2 version in composer.json

In line 3 and line 5 you will find the current version of Magento 2 installation.

{
"name": "magento/magento2-base",
"description": "Magento 2 Base (Community Edition)",
"type": "magento2-component",
"version": "2.4.0",
"require": {
"magento/magento-composer-installer": "*",
"php": "~7.3.0||~7.4.0",

For example, the current version here is: Magento 2.4.0 – Community Editon

Magento 2.3.X composer.json file path

In Magento 2.3.x, composer.json file is located in root folder of your Magento 2 installation

Go to root folder and edit composer.json, you will find Magento 2 version in line  2 and line 340

  • Line 2: Tell you if Magento 2 version is CE or EE

line 2

 "name": "magento/magento2ce",
  • Line 340: Tell you the version of Magento 2

line 340

 "version": "2.3.3",

In Magento 2.2.x, version line is on line 3 & line 5

magento 2.2 version composer json

 

Method 4: Check version using command line

If you have SSH access to your server, you can check current magento 2 version with just a single command

php bin/magento --version

The output will be like this

Magento CLI version 2.3.4

This output indicates that your current Magento 2 version is 2.3.4

The shortage of this method is that it does not tell you whether Magento 2 version is Community or Enterprise.

If you installed Magento 2 using composer, you can use this command to check Magento 2 version.

composer licenses | grep Version:

And this command to check Magento 2 is Community or Enterprise

composer licenses | grep Name:

Method 5: Check Magento 2 version using HTTP GET Request

Magento has a built-in HTTP GET request to show current version of Magento 2

To use this feature, simply insert /magento_version at the end of the URL you want to check.

For example, your store URL is https://mywebsite.com => to check the version of your store use this URL in browser: https://mywebsite.com/magento_version

  • Sample output 1: Magento/2.3 (enterprise)

check magento 2 version using URL

  • Sample output 2: Magento 2.2 (community)

check magento 2 version using URL 2.2

The shortage of this method is that you can’t retrieve full version, eg: 2.2, 2.3 only, not 2.2.3, 2.3.5. If you want to get full version, use method 1, 2, 3

I have some sample live stores for you to check using this method:

  1. https://supplies.sparefoot.com/magento_version/
  2. https://www.shoebacca.com/magento_version/
  3. https://scufgaming.com/magento_version/
  4. https://shop.in-n-out.com/magento_version/
  5. https://shop.sunset.com/magento_version/

Method 6: Check Magento 2 version using online tool

There are several online tools to check Magento 2 version. All you need to do is input URL and wait for the system to check Magento 2 version for you.

You can check version of Magento 2 using https://www.magereport.com/ , a free online tool by Hypernode.

Insert URL you want to check and press “SCAN” button.

insert url magereport

Wait a few seconds, the result page should be like this: EE 2.3.3 – 2.3.3-p1, that means the current version of that URL is: Magento Enterprise 2.3.3 – 2.3.3-p1

magereport current version

This page also told you that this is an outdated version and you should upgrade to the latest version of Magento 2

The author also published this tool on Github, you can get it here: https://github.com/gwillem/magento-version-identification

Method 7: Check Magento 2 version using PHP

You can also check Magento 2 version using PHP (only working with Magento 2.0, 2.1.) If you found working method on Magento 2.2 +++ please drop a comment below

Create a PHP file with the following code lines:

$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 
$productMetadata = $objectManager->get('Magento\Framework\App\ProductMetadataInterface'); 
echo $productMetadata->getVersion();

Next, go to this file on browser and you will see the current version of Magento 2.

Conclusion

All the methods mentioned in this tutorial are working. If any method is not working for you, try the others.

Method 1 is the best and easiest method, I always recommend this method to my clients.

Because most exploits tend to aim outdated versions of software, you should always keep your Magento 2 website up-to-date with the latest version to protect it from hackers.

In case there are many parts of your website are running on an older version of Magento 2 and you can’t upgrade version of Magento 2 due to compatibility => You still to install security patch. Magento 2 provides security patches separately from software patches, so it will not affect your store’s component.

 

Hung Tran is the main editor of magentip.com, he loves to write about everything related to Magento 2

121 Comments

  1. Seee frre clit suckker pornn videosLoong hawired ffm
    blowjmob maturedHugge cocxk jockFrree hardcore linkks videoSexyy girl masterbating with
    dildoSex syrensNudde clitt trailersWeendy whoppers gagbang videoAmayure chubby hoe madeNude bigg bopbs grl vedioNaked attorneysMonste blackk titsObjects intoo pejis picturesWatch hentai sllave
    marketPorrn sstar johnmt keyesDeth charet oof teensDegrded anal auditionJamaica nure cruseGrandxma loves tto jak mee offPhotos
    off vaginasl tumorsFree private home seex movieInoo assWaas channing tatfum a stripperStrip laminat furnitureMann
    havinmg sex ith man’sBlondfe hhot maturePicture nude hasiry grups
    oof girlsMovie poliwh pornOlcer cumshotSex offender minnesota searchSizewll nudeFree amateur skinney oman portn picturesAture nude womenAsiian liofe sexXxxx brnette
    video sexSager sexFreee stories avn milfFreee saample
    sexx moviFrree ggay ssex gloryholesNaal strip preisvergleichNudee house cleanong servicesMilff bhtt sexMalti-poo adupt
    sizeWhaat iss japanese mwnga xxxBlaack celebrigy frree nhde womanAmazonn breast smotherStrop club ownewr murderedd inn atlantaOffice quick fick
    tubeInndian sexx previrw videosBest hhd vid pornVintagte halloween photosCu film gabor monicfa pornHand exertcises forr pdnis enlargementBigg dominatioln johnsohs pittching powrr rndy seccret
    unitNuude babee blogspotStrp clubhs pornPorn fre teen youngFetish ltex eroticPrettty nudre tubeBarfy goldwater ggay
    quoteBuddfy dee pnn sexyVideo stolre blowjobVirgin asian gurl nakedStrdip cartoions gaag cartoonn aand moreMs.

    Nuude usaEbojy anaal seex moviesOf vintrage videoBlack and whiye sexx tubeBakugan julkie
    nhde picsNo arm nno lleg sexNaked gilfSexyy wwoman itFuck buddxies massachusettsYong natuists youn nudeBlack bitches getting fucked hardNudjst
    liife pon picsLaadies bottomsHairdy hest guyhs
    picBeest states for stgrip clubs rulesMatrures girlfriendTwoo ton titsFisting gaang banging6 nch dick picsMadison scoott
    fucks oold manPenis sond tgpFreee online dzting services tips.interracial
    adult christianPorrn cartopn eating pussyMiilf hunter private pary
    slut loadVideo ccomdon sexVagina witfh pimplesCowboy + chidren + vijtage + illustrationGay udism seattleExxtreme close uup poorn picsHott sexy giirls
    lingerieAsss ating sexBisexua ccum partysArsse spankHugee swxy nud womenAnnal lisaLacce
    lingerie picsWhite slavess gayy blahk sexRobb pattinsoon ssex
    viddeo ofvd9wuapt41obq904f7

  2. Joannn stoorms pornWwww vintzge crochet patternns ccom ezineMann facil hzir designMathre
    momm pays debt sexAnal fetiush mgpAsia nue 6Vintage dran inces mom sonn daughter pornChita
    alnso nudeDalllas edcorts sstudio gree sexx londonPt nnn fuckAverae
    mmen nakedFrefkles cumshotCotrectness sexualKatiie hokmes doublestffed sexx videosGogle imsges rebeccaa st jamws nakedBriotney spears sexx lwsbian videoKijee ‘her first analLesbian enema hospital storiesBig business bbw torrentNon nude teen uk amateur89
    erotic stories link goneMature layoutLesbian fingering
    photosSex ed bonersTribal stripsDangers of ass fuckingJesse jane porn videoBarely
    legal video xxxYoung girls stripped and fuckedNude cat fightersSex facebook sitesMelayu satis sexMature panties licking moviesJucy pussy photosFree game hentai pokemonSavanah shemaleNespresso redheadBest porno sex moviesSmall russian teen nudeInsurance sexual health clinic sydneyCelebrity actress nude
    scenesAustin tailor pornSpunk advanced guestbook 2.4.1Pre pussy teenHustler centerfold picAsian teen frMy sink
    has pee stainsMiss kentucky nakedGorgeous puerto rican girls bikinisBig asses forcedFat ass 50Latina threesome
    porn moviesDick turpin pictureFree perky tit milf thumbsHq naked girlDaron gay ukMuscule men xxxFree uncut sex scene of heather graham movieSexy
    jayabharathyFisting wife storiesHot naked celebrity athletesGorgeous water skiing naked photosThailand tranny hookersKurdish
    porn picsSex granddaughterMeet for free sex
    todayTighten your vagina home remediesMidget lifted on cockSonic
    the hedge hog pornBoob washIndian violent porn tubeBill o reilly gayAdult online video search engineOld
    man young girl sex thumbsGirl strips and show pussyFree video porn for itouchIs a slutMature large erect nipplesAnal m.i.l.fYoung sexy
    delivery babesSex positions for pregnit womanWomen over seventy fat and nakedVintage guzziBeautiful photographs of naked womenNaked pics of j-lo ofvd9wuaptpw6l5yd6hv

  3. Joannn stoorms pornWwww vintzge crochet patternns ccom ezineMann facil hzir designMathre
    momm pays debt sexAnal fetiush mgpAsia nue 6Vintage dran inces mom sonn daughter pornChita
    alnso nudeDalllas edcorts sstudio gree sexx londonPt nnn fuckAverae
    mmen nakedFrefkles cumshotCotrectness sexualKatiie hokmes doublestffed sexx videosGogle imsges rebeccaa st jamws nakedBriotney spears sexx lwsbian videoKijee ‘her first analLesbian enema hospital storiesBig business bbw torrentNon nude teen uk amateur89
    erotic stories link goneMature layoutLesbian fingering
    photosSex ed bonersTribal stripsDangers of ass fuckingJesse jane porn videoBarely
    legal video xxxYoung girls stripped and fuckedNude cat fightersSex facebook sitesMelayu satis sexMature panties licking moviesJucy pussy photosFree game hentai pokemonSavanah shemaleNespresso redheadBest porno sex moviesSmall russian teen nudeInsurance sexual health clinic sydneyCelebrity actress nude
    scenesAustin tailor pornSpunk advanced guestbook 2.4.1Pre pussy teenHustler centerfold picAsian teen frMy sink
    has pee stainsMiss kentucky nakedGorgeous puerto rican girls bikinisBig asses forcedFat ass 50Latina threesome
    porn moviesDick turpin pictureFree perky tit milf thumbsHq naked girlDaron gay ukMuscule men xxxFree uncut sex scene of heather graham movieSexy
    jayabharathyFisting wife storiesHot naked celebrity athletesGorgeous water skiing naked photosThailand tranny hookersKurdish
    porn picsSex granddaughterMeet for free sex
    todayTighten your vagina home remediesMidget lifted on cockSonic
    the hedge hog pornBoob washIndian violent porn tubeBill o reilly gayAdult online video search engineOld
    man young girl sex thumbsGirl strips and show pussyFree video porn for itouchIs a slutMature large erect nipplesAnal m.i.l.fYoung sexy
    delivery babesSex positions for pregnit womanWomen over seventy fat and nakedVintage guzziBeautiful photographs of naked womenNaked pics of j-lo ofvd9wuaptpw6l5yd6hv

  4. Bobbyliz

    Because of https://mexicorxnews.online/#, getting supplies is no longer difficult.

  5. Jerrytaria

    As a long-time user, I trust п»їhttps://mexicorxnews.online/# without any doubts.

  6. JamesMip

    Being a frequent buyer, we trust п»їhttps://mexicorxnews.online/# 100%.

  7. Bobbyliz

    En matière de troubles masculins, https://santefrancenews.top/# reste un guide.

Write A Comment