Referans kaynağı: https://magentoexplorer.com/magento-2-setup-version-for-module-is-not-specified-how-to-fix
(benim durumumda, yeni bir Magento 2 modülü oluştururken bu hatayı aldım )
Yanlış modül dosyası / klasör izni nedeniyle bu hatayla karşılaşabilirsiniz, modül klasörünün iznini aşağıdaki şekilde değiştirebilirsiniz
chmod 775 <module path> -R
Registration.php ve composer.json modülüne eklemeyi unuttuğunuz başka bir olasılık var . Aşağıdaki dosyayı eklemeye çalışın
/app/code/Namespace/Module/registration.php
<?php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'Namespace_Module',
__DIR__
);
ve /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\\": ""
}
}
}
Sonunda bu komutları çalıştır
php -f bin/magento module:enable --clear-static-content Module_Name
magento setup:upgrade
Bu yardımcı olur umarım!
schema_version
ve daha sonra deneyin