MongoDB on Linux - Data directory /data/db not found
1 min read
Fix the error that occurs when trying to run freshly-installed MongoDB on a Linux machine.
Recently, I've been working on an Angular app, powered with a .NET Core API. Everything was working well and smoothly when running both on my local machine.
After pushing code to the beta server, most of it was working fine. The front-end was being able to call GET, POST and OPTIONS requests normally. When trying to DELETE or PUT entries, however, the following error would show up on the browser's console:

Method not allowed? CORS error? What?
Initially, I was misled by the CORS error. Having had problems with this in the past, I thoroughly checked my API code for any possible problem in the configuration that could lead to this error only after deployed. I found none.
Then, it dawned on me that the CORS error could be not because my API wasn't sending the 'Access-Control-Allow-Origin' on its response, but because it wasn't being sent on the HTTP 405 error seen above.
I ended up finding this article. What happens is that, when published, .NET Core enables the WebDAVModule, which disables PUT and DELETE requests by default.
So, to solve the issue, I ended up disabling WebDAV in the whole application, by adding these lines to the auto-generated web.config:
<system.webServer> <modules runAllManagedModulesForAllRequests="false"> <remove name="WebDAVModule" /> </modules> </system.webServer>
After restarting the API in IIS,
This issue seems to only occur when hosting .NET Core on Windows, which is why I could not simulate the issue by running my application in production mode on my Linux machine.
I hope this will be helpful to someone like it was for me!
MongoDB on Linux - Data directory /data/db not found
1 min read
Fix the error that occurs when trying to run freshly-installed MongoDB on a Linux machine.
.NET Core - Project version mismatch
1 min read
Solving this cryptic error might take you many hours. Hopefully this will help you out.
Setting up Storybook on an Astro project
7 min read
I really, really thought this was gonna be easy.
Separating my website's content from its code
4 min read
Having an open source website is great, but having the content stored in the same spot as the code has some issues. On this post I walk through what I did to keep them separated.