Magento2.2.0 Missing Admin Developer Configuration

configurationmagento2.2.0system.xml

I tried to upgrade my Magento into 2.2.0. And I see that is missing Advanced and Developer items. Is it me? Why it's happening this?

enter image description here

Best Answer

Check your Deployment Mode it is in Production.

To enable the developer tab menu under the Advanced You need to change it to Developer Mode

So run this command : php bin/magento deploy:mode:set developer

Clear the cache by running this command : php bin/magento cache:clean

Now check Go to admin ->logged in ->click on stores ->configuration->advanced -> you will see developer option now.

Related Topic