Magento 2 Errors
Yesterday I have tried to install Magento 2. When trying to access the front end I got plenty of errors both on the front end of the site and the Magento 2 admin. Since this is my first time I…
Yesterday I have tried to install Magento 2. When trying to access the front end I got plenty of errors both on the front end of the site and the Magento 2 admin. Since this is my first time I…
When logging into the admin section of my Magento 2.2.2 installation I'm getting the error: ""0":"Could not create an acl object: Role '5' not found","1":"#0 /var/www/magento/generated/code/Magento/Framework/Acl/Builder/Proxy.php(95): MagentoFrameworkAclBuilder->getAcl()" I get the same error if I run "bin/magento setup:upgrade" from cli. The…
I want to add stock data on a product but it doesn't work. In my function, I have a product created by : $product = $objectManager->create('MagentoCatalogModelProduct'); Then, I set some data like price, status, name, ... And eventually, I add…
i want to programmatically import a product into my magento. Unfortunatly I get an error which is not telling me a lot maybe some of you have an idea. Here is my php code: echo '<pre>'; echo 'Create Product Model';…
How to add a custom field to the frontend registration form. I already added required feilds in database by following public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]); $eavSetup->addAttribute( MagentoCustomerModelCustomer::ENTITY, 'sample_attribute', [ 'type' => 'varchar', 'label'…
In Magento 2 We are getting error on category save. Error is - No such entity with id = xx please any one can help to resolve the same ? Thank you. click to see screen shot for error
I'm getting this as an error after installing magento via bitnami xammp. Deprecated: The each() function is deprecated. This message will be suppressed on further calls in C:xamppappsmagentohtdocsvendorcolinmollenhourcache-backend-fileFile.php on line 81 There has been an error processing your request Exception…
In my store, I need to build Soap API, which accepts XML data from 3rd party solution, parses it and creates new customer based on provided data. My questions is how can I get XML from post body data? Thanks!
For Example: I have two simple product Mobile Phone of Price: 500$ and 1 Memory Card of price 10$. Total is 510 $. I want to sell both product as a group at Price 505$. From Admin section i'm not…
I have a custom import script that works fine. I would like to remove one of the behaviors from the drop down menu. As I dont want to allow for appends to the custom table, only replace or deletes.