This laptop is now running Linux Mint Xfce. Did have Ubuntu 18 on it. I was told Mint would use less resources. Well the laptop takes forever to just boot up. Seems like the drive is having trouble. Ubuntu started showing errors when booting but eventually completed. The drive is […]
Monthly Archives: November 2019
Recently a friend of mine told me that all of a sudden Wifi had stopped functioning on her Asus X541U laptop. She gave the computer for me to fix and for the past couple of days I have tried diagnosing what the issue is. I have tried many different solutions […]
I have a folder shared from a server (192.168.2.1) that is not on the domain. Let’s call that \192.168.2.1PropDocsLib. I want to access that shared folder from a dot.net program running under IIS on a different server (newwebserver) that is on the domain. I can access that share if I […]
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 […]
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’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 […]
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 have two sheets; let’s call S1 and S2 S1 looks like this ID. Age 0. 17 1. 18 2. 15 3. 12 4. 13 S2 looks like this ID. 0. 2. 4. So S2 has some missing IDs Now; what I want to do is that (1) adding one […]