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\
system.xmlfile content please – Alex Dinca Oct 22 '17 at 07:52Stores -> Configuration -> Advanced -> Advancedthat the module is present. But this section is completely removed frommagento2.2:) @lftikhar – Keyur Shah Oct 22 '17 at 09:11php bin/magento module:status Connextar_CXMageModsand there is no option in admin to check until and unless you create some custom configuration – Keyur Shah Oct 22 '17 at 09:15