When I try to enable my module with bin/magento module:enabled I am getting an error in console:
Zend_Json_Exception Decoding Failed: Syntax error
How can I fix this? When I enabled the same module in local server everything worked fine.
-
add you module composer.json file code.Suresh Chikani– Suresh Chikani2016年10月19日 07:15:40 +00:00Commented Oct 19, 2016 at 7:15
-
it's too late, I tried enable with --force and now have bigger problems(Anna– Anna2016年10月19日 07:16:46 +00:00Commented Oct 19, 2016 at 7:16
1 Answer 1
Looks like that one of custom modules used in your application has incorrect syntax in composer.json.
For detect incorrect composer.json try debug Magento\Framework\Module\PackageInfo::load or put var_dump($key); before $packageData = \Zend_Json::decode($jsonData[$key]); in /vendor/magento/framework/Module/PackageInfo.php and run uninstall again.
Reference here.
Explore related questions
See similar questions with these tags.