升级后我无法登录到Magento2.4管理。它的意思是无效的父id Dotdigitalgroup_Email::marketing_automation。
我还使用以下语法创建了一个新的用户id和密码。
php bin/magento admin:user:create -admin-user=‘new’-admin-password=‘!admin123!’-admin-email=‘info@domain.com’-admin-new=‘Jon’-admin-lastname=‘Doe’
登录无效请帮助。
1 exception(s):
Exception #0 (OutOfRangeException): Specified invalid parent id (Dotdigitalgroup_Email::marketing_automation)
Exception #0 (OutOfRangeException): Specified invalid parent id (Dotdigitalgroup_Email::marketing_automation)
<pre>#1 Magento\Backend\Model\Menu\Config->_initMenu() called at [vendor/magento/module-backend/Model/Menu/Config.php:111]
#2 Magento\Backend\Model\Menu\Config->getMenu() called at [vendor/magento/module-backend/Model/Url.php:365]
#3 Magento\Backend\Model\Url->_getMenu() called at [vendor/magento/module-backend/Model/Url.php:325]
#4 Magento\Backend\Model\Url->getStartupPageUrl() called at [vendor/magento/module-backend/App/AbstractAction.php:187]
#5 Magento\Backend\App\AbstractAction->_processUrlKeys() called at [vendor/magento/module-backend/App/Request/BackendValidator.php:175]
#6 Magento\Backend\App\Request\BackendValidator->validate() called at [vendor/magento/framework/App/Request/CompositeValidator.php:40]
#7 Magento\Framework\App\Request\CompositeValidator->validate() called at [vendor/magento/framework/App/FrontController.php:160]
#8 Magento\Framework\App\FrontController->processRequest() called at [vendor/magento/framework/App/FrontController.php:118]
#9 Magento\Framework\App\FrontController->dispatch() called at [vendor/magento/framework/Interception/Interceptor.php:58]
#10 Magento\Framework\App\FrontController\Interceptor->___callParent() called at [vendor/magento/framework/Interception/Interceptor.php:138]
#11 Magento\Framework\App\FrontController\Interceptor->Magento\Framework\Interception\{closure}() called at [vendor/magento/framework/Interception/Interceptor.php:153]
#12 Magento\Framework\App\FrontController\Interceptor->___callPlugins() called at [generated/code/Magento/Framework/App/FrontController/Interceptor.php:26]
#13 Magento\Framework\App\FrontController\Interceptor->dispatch() called at [vendor/magento/framework/App/Http.php:116]
#14 Magento\Framework\App\Http->launch() called at [vendor/magento/framework/App/Bootstrap.php:263]
#15 Magento\Framework\App\Bootstrap->run() called at [index.php:45]
</pre>
<pre>
发布于 2021-07-22 13:53:40
如果您已经禁用了Dotdigitalgroup_Email和Dotdigitalgroup_Chat模块,请也禁用Dotdigitalgroup_Sms模块(添加在Magento2.4.x中)
bin/magento模块:禁用Dotdigitalgroup_Sms -清除静态内容
这对我来说很管用
发布于 2021-04-12 23:23:45
也许这个错误是相似的。试着根据下面的主题找到解决方案。也许它能解决你的问题。
发布于 2021-04-19 18:08:40
在这里,您可能由于某种原因而禁用了Dotdigitalgroup_Email模块。
为此,请在配置文件中检查一下,您可以看到Dotdigitalgroup_Email这个模块的以下结果。
'Dotdigitalgroup_Email‘=> 0,
使用以下命令启用此Analytics模块,或在config.php文件中将其从0更改为1。
php /magento模块:启用Dotdigitalgroup_Email
php /magento安装程序:升级
php /magento缓存:洁净的php bin/magento缓存:刷新
https://stackoverflow.com/questions/67070175
复制