Question

I am following this article(https://www.mageplaza.com/magento-2-module-development/) and creating a custom module in Magento 2.2.0 but when i reach the step where i have to check my custom module in admin panel

Store >> Advanced >> Advanced i don't see anything there.

Module.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../vendor/magento/framework/Module/etc/module.xsd">
<module name="Connextar_CXMageMods" setup_version="2.0.1" />
</config>

Registration.php

<?php
/**
 * Created by PhpStorm.
 * User: Iftikhar uddin
 * Date: 10/22/2017
 * Time: 8:54 AM
 */

\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Connextar_CXMageMods',
    __DIR__
);

Code Directory Stucture is \app\code\Connextar\CXMageMods\

Was it helpful?

Solution

As per the comment in Magento2.2 Stores -> Configuration -> Advanced -> Advanced section is completely removed from magento2.2 so you can not see your module status there. If you want to check you can use cmd panel and excute below command ,

php bin/magento module:status Connextar_CXMageMods

Where Connextar is your module namespace and CXMageMods is your module name.

Note: I am adding the answer because there is some confusion to this user Iftikhar uddin

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top