I have a problem with mageplaza sitemap

I’m using magento 2.2.7. I installed Mageplaza Sitemap through composer

composer require mageplaza/module-sitemap
php bin/magento setup:upgrade
php bin/magento cache:clean
php bin/magento setup:static-content:deploy –f

There are no plugins in the admin panel
php bin/magento module:status
I was checking it is in the list of enabled modules
/vendor/mageplaza
in installation magento 2 is present
magento-2-seo-extension
module-core
module-sitemap
how do i handle it?

Hi @Shele and welcome.

Unless you saw any errors during the composer require step, it appears that you have installed the module correctly. It just might be inactive. Check this by running the below command and seeing if the module appears under “List of disabled modules:”:

bin/magento module:status

If so, you’ll need to enable them using the below command:

bin/magento module:enable <Vendor_Module>

So, for example:

bin/magento module:enable Mageplaza_Core

Sometimes and extension is comprised of multiple extensions, so you might have to enable more than one to get it working. Once enabled, simply rerun the following aftwards:

php bin/magento setup:upgrade
php bin/magento cache:clean
php bin/magento setup:static-content:deploy –f

If this doesn’t work, you should ideally ask Mageplaza as they offer “365-day support”.

wrote already, i was running
bin/magento module:status
and the module is in the list of enabled modules

anyway thanks