Got into a situation where I needed to remove all the images and getting errors. I had to filter the images and then force delete it like the image above. Just a pointer (BYTE sized).
Author: mhoque
BYTE Post 5: Sitecore website files in Docker
Here is another nice find on how to actually see the sitecore websites file in Docker.I was playing with Docker and got a 9.3 install up. The installation look like the following item. Now I can go to my Site using the http://localhost:44001/sitecore I can go to my Solr using the http://localhost:44011 address. But I…
BYTE Post 4: How to connect to Sitecore Docker SQL server
Ok, I am probably putting the carriage before the horse. But I think it’s helpful. I got a Docker container up (Details on a different post) using the github docker image repository.I can go to http://localhost:44001/sitecore and login. Now next question, how can I connect to database, what will be the address? Well to find…
BYTE Post 3: Sitecore docker images repo documentation is out of date
If you are new to Docker and trying to figure out how to build Sitecore images. You usually do a search with Google to get to Sitecore docker images repository. There is the link for how to get started with Sitecore docker images repository Problem with that it needs updating. First of all, the username…
BYTE Post 2: Want to get a theme for your Sitecore [play] site for free?
I found that W3Schools have pretty cool CSS templates that works great with Sitecore. So if you are trying to do a quick demo for clients or just playing around with your environment. Head over there and check it out. Here is the link https://www.w3schools.com/w3css/w3css_templates.asp I will upload the video on how I used Shelley…
BYTE Size Post 1 : Sites Base template creation in Sitecore
When I first started working with Sitecore. I had to work pretty hard to understand some smaller things. I decided at that time. When I write, I will try to keep thing very specific and precise. This one is about just how to create a template. I used this to memorize my steps when I…
Sitecore 10 installation with SIA
Quick Video on how to install Sitecore 10 with SIA
Be aware about SecurityProtocolType while creating request from code
If you are using code-behind to create a HttpWebRequest like var request = (HttpWebRequest)WebRequest.Create(Url); and then trying to use that request to get the WebResponse like var response = (HttpWebResponse)request.GetResponse(); This will error out as following “HttpWebRequest The underlying connection was closed: An unexpected error occurred on a send” To fix that you have to…
Want a cookie for you or foreach of you?
Ran into a weird cookie issue HttpWebRequest cookies are disabled for security by default. You need to enable it. Now if you want to add cookies from your current request, since they are seperate types, you have add it manually. Example my httpCookies – HttpContext.Current.Request.Cookies; var request = (HttpWebRequest)WebRequest.Create(url); request.CookieContainer = new CookieContainer(); //now your…
Creating Sitecore Helix structure from Scratch – Part 3: Scaffold the Test Project
This is a quick video on how to add the test project to your Helix Scaffolding.