So as I said, I am trying to see my website while others see it in maintenance. BTW I have Varnish configured. What I did: magento maintenance:enable --ip= What hapened: At first I was able to see only frontend from excluded IP, but admin was regular “Service temporary unavailable” page. […]
Magento2
I have two websites with separated customers, and I’m trying to display Warning msg(‘check if you’re in the right website’). if customer try to login not to his website
Please how do i upgrade my website from Magento 1.5.1.0 to Magento 2.3x Detailed steps of how to go about it will be appreciated
We are creating an API to sell our giftcodes to a partner in M2 enterprise edition. The partner will have functionalities like: To have Store Credit Can buy giftcodes View buy history We cannot use customer token or admin token to give access as this will cause security issue (if […]
I’m trying to have two different pages with login and “create new account” forms. One is for normal accreditation and the other should be used as a special landing page. The first idea I’ve had was to create a new module, copying the Magento core customer module. That would bring […]
I created an Observer that makes some execution based on the company needs using event sales_order_shipment_save_after. It does everything I need except changing the order status to a specific. I both using Magento setState/setStatus and running an SQL update script directly, but none won´t make the change. I looked for […]
when i want add more than 36 character I get below error on add attribute, default label section: Attribute code “attr_______________________________” is invalid. Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.
I’m trying to create a simple Product by Rest API. Response.Status = Unauthorization Here is my code public void CreateProduct() { // Token = this.GetAdminToken("admin", "1234567"); var request = CreateRequest("/rest/V1/products", Method.POST, Token); var product = new M2Product(); product.Sku = "BA3245"; product.Name = "PRoductx"; product.Price = 100; product.Status = 1; product.Visibility […]