Sumber referensi: https://magentoexplorer.com/magento-2-setup-version-for-module-is-not-specified-how-to-fix
(dalam kasus saya, saya mendapatkan kesalahan ini saat membuat modul Magento 2 baru )
Anda mungkin mengalami kesalahan ini karena izin file / folder modul yang salah, Anda dapat mengubah izin untuk folder modul sebagai berikut
chmod 775 <module path> -R
Ada kemungkinan lain bahwa Anda lupa menambahkan registrasi.php dan composer.json dalam modul. Coba tambahkan file berikut
/app/code/Namespace/Module/registration.php
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Namespace_Module',
__DIR__
);
dan /app/code/Namespace/Module/composer.json
{
"name": "namespace/module",
"description": "namespace",
"require": {
"php": "~5.5.0|~5.6.0|~7.0.0",
"magento/framework": "100.0.*",
"magento/module-ui": "100.0.*",
"magento/module-config": "100.0.*",
"magento/module-contact": "100.0.*"
},
"type": "magento2-module",
"version": "100.0.0",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"extra": {
"map": [
[
"*",
"Namespace/Module"
]
]
},
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"namespace\\module\\": ""
}
}
}
Akhirnya jalankan perintah ini
php -f bin/magento module:enable --clear-static-content Module_Name
magento setup:upgrade
Semoga ini membantu!
schema_version
dan coba