Tuesday, April 26, 2022

redirect custom path with params magento

 Code <?php namespace Icube\Customer\Observer; use Magento\Framework\Event\ObserverInterface; use Magento\Framework\Exception\AlreadyExistsException; use Magento\Framework\Exception\LocalizedException; class ValidateTelephone implements ObserverInterface { protected $_request; protected $_customerManagement; protected $_messageManager; protected $_responseFactory; protected...

Sunday, April 24, 2022

No Administrators role was found, data fixture needs to be run

 Error DetailsIn AdminAccount.php line 262:  No Administrators role was found, data fixture needs to be runadmin:user:create [--admin-user ADMIN-USER] [--admin-password ADMIN-PASSWORD] [--admin-email ADMIN-EMAIL] [--admin-firstname ADMIN-FIRSTNAME] [--admin-lastname ADMIN-LASTNAME] [--magento-init-params MAGENTO-INIT-PARAMS]Solution> INSERT INTO authorization_role (role_id, parent_id,...

Wednesday, April 20, 2022

cannot login "An unspecified error occurred"

 Fix for fix this problem, change the code to be able to print the error Can you check logs for specific error of Magento? var/log folder or any reports in var/report folder. Apart from that you can just check by printing error message. vendor/magento/module-customer/Controller/Account/LoginPost.php and put these lines change this code $this->messageManager->addError( ...

The account sign-in was incorrect or your account is disabled temporarily.

 Error The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later Solution1. Create new account by command line php bin/magento admin:user:create --admin-user='magento243' --admin-password='magento243' --admin-email='magento243@gmail.com' --admin-firstname='Firstname' --admin-lastname='Lastname' 2. Now login with the new created username and then...

cannot login "An unspecified error occurred"

Fix the Problem for fix the problem change the code Can you check logs for specific error of Magento? var/log folder or any reports in var/report folder. Apart from that you can just check by printing error message. vendor/magento/module-customer/Controller/Account/LoginPost.php and put these lines ubah kode ini$this->messageManager->addError( __('An unspecified...