<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[AlternativeTo Dev Blog]]></title><description><![CDATA[Random notes from the devs of AlternativeTo]]></description><link>https://dev-blog.alternativeto.net/</link><image><url>https://dev-blog.alternativeto.net/favicon.png</url><title>AlternativeTo Dev Blog</title><link>https://dev-blog.alternativeto.net/</link></image><generator>Ghost 1.7</generator><lastBuildDate>Wed, 08 Apr 2026 00:14:13 GMT</lastBuildDate><atom:link href="https://dev-blog.alternativeto.net/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[You get the "CREATE MASTER KEY" error when importing a bacpac file from an Azure SQL DB]]></title><description><![CDATA[<div class="kg-card-markdown"><p>I have ran into this issue twice now and have had to Google for it everytime. I thought i might as well post a little note here so i can remember it until next time. The solution to the problem is explained in <a href="https://blogs.msdn.microsoft.com/azuresqldbsupport/2017/03/30/exported-database-from-azure-sql-failed-to-be-imported-to-azure-sql-or-to-local-sql-server/">this blogpost</a>.</p>
<p>You have a few options</p></div>]]></description><link>https://dev-blog.alternativeto.net/you-get-the-create-master-key-error-when-importing-a-bacpac-file-from-an-azure-sql-db/</link><guid isPermaLink="false">5a3a18e125abf9217854cf0d</guid><dc:creator><![CDATA[Ola Johansson]]></dc:creator><pubDate>Wed, 20 Dec 2017 08:09:43 GMT</pubDate><content:encoded><![CDATA[<div class="kg-card-markdown"><p>I have ran into this issue twice now and have had to Google for it everytime. I thought i might as well post a little note here so i can remember it until next time. The solution to the problem is explained in <a href="https://blogs.msdn.microsoft.com/azuresqldbsupport/2017/03/30/exported-database-from-azure-sql-failed-to-be-imported-to-azure-sql-or-to-local-sql-server/">this blogpost</a>.</p>
<p>You have a few options but i have used the Powershell script you <a href="https://github.com/yochananrachamim/AzureSQL/blob/master/RemoveMasterKeyFrombacpac.zip?raw=true">can find here</a> and then just run it like this.</p>
<p><code>C:\PS&gt; .\RemoveMasterKey.ps1 -bacpacPath &quot;C:\BacPacs\Test.bacpac&quot;</code></p>
<p>Well, that's it :)</p>
</div>]]></content:encoded></item><item><title><![CDATA[Unable to Start Debugging on the Web Server after switch to https]]></title><description><![CDATA[<div class="kg-card-markdown"><p>This post is mostly a <em>Note to self™</em> post for future reference.</p>
<p>Just had a classic &quot;Unable to Start Debugging on the Web Server&quot; error thrown in Visual Studio. This error can have like <a href="https://msdn.microsoft.com/en-us/library/dwesw3ee.aspx">50 different causes</a> and it's always hard to figure out why it happend.</p>
<p>As</p></div>]]></description><link>https://dev-blog.alternativeto.net/unable-to-start-debugging-on-the-web-server/</link><guid isPermaLink="false">59b0efa3327bceaf70d7baa2</guid><dc:creator><![CDATA[Ola Johansson]]></dc:creator><pubDate>Thu, 07 Sep 2017 07:15:42 GMT</pubDate><content:encoded><![CDATA[<div class="kg-card-markdown"><p>This post is mostly a <em>Note to self™</em> post for future reference.</p>
<p>Just had a classic &quot;Unable to Start Debugging on the Web Server&quot; error thrown in Visual Studio. This error can have like <a href="https://msdn.microsoft.com/en-us/library/dwesw3ee.aspx">50 different causes</a> and it's always hard to figure out why it happend.</p>
<p>As usual you <a href="https://stackoverflow.com/a/4685878">get an answer</a> or at least a push in the right direction on Stack Overflow. It turns out that my recently added &quot;global redirect from http to https&quot; added via &quot;UrlRewriter&quot; module caused the error in this case.</p>
<p>The solution was simple and pretty obvious, i just changed my starting URL to <a href="https://my-dev-domain.com">https://my-dev-domain.com</a> instead of <a href="http://my-dev-domain.com">http://my-dev-domain.com</a>. As i said, pretty obvious but still a confusing error message.</p>
</div>]]></content:encoded></item><item><title><![CDATA[Make your self-signed certificate trusted by Chrome]]></title><description><![CDATA[<div class="kg-card-markdown"><p>When you are getting tired of that warning you get for your self-signed certificates when running your site locally you should add your certificates to your trusted certification store.</p>
<p>These instructions are for Windows and <em>works for me™</em> in Chrome 60.</p>
<p><strong>Create a self-signed certificate with a DnsName</strong></p>
<p>Create a</p></div>]]></description><link>https://dev-blog.alternativeto.net/make-your-self-signed-certificate-trusted-by-chrome/</link><guid isPermaLink="false">59a56425c9d53c6544af6a3d</guid><dc:creator><![CDATA[Ola Johansson]]></dc:creator><pubDate>Tue, 29 Aug 2017 12:59:32 GMT</pubDate><media:content url="https://dev-blog.alternativeto.net/content/images/2017/12/james-sutton-187816--1-.jpg" medium="image"/><content:encoded><![CDATA[<div class="kg-card-markdown"><img src="https://dev-blog.alternativeto.net/content/images/2017/12/james-sutton-187816--1-.jpg" alt="Make your self-signed certificate trusted by Chrome"><p>When you are getting tired of that warning you get for your self-signed certificates when running your site locally you should add your certificates to your trusted certification store.</p>
<p>These instructions are for Windows and <em>works for me™</em> in Chrome 60.</p>
<p><strong>Create a self-signed certificate with a DnsName</strong></p>
<p>Create a new certificate with powershell &quot;New-SelfSignedCertificate -DnsName localhost -CertStoreLocation cert:\LocalMachine\My&quot;. The DnsName is important and if you use a custom domain via a host file you should add the domain you use there.</p>
<p><strong>Make sure you use this certificate on your localhost</strong></p>
<p><img src="https://dev-blog.alternativeto.net/content/images/2018/03/mmWOeeM.png" alt="Make your self-signed certificate trusted by Chrome"></p>
<p><strong>Export the certificate from Chrome</strong></p>
<ol>
<li>Go to your localhost website and open up the inspector</li>
<li>Under the security tab, click the &quot;View Certificate&quot; button.</li>
<li>Go to the details tab in the dialog and click &quot;Copy to file&quot;</li>
<li>Follow the wizard and choose the Cryptographic Message Syntax Standard - PKCS #7 (i do not think the &quot;Include all checkbox&quot; is important)</li>
<li>Save it somewhere.</li>
</ol>
<p><strong>Import the certificate to the &quot;Trusted Root Certification Authorites&quot;</strong></p>
<ol>
<li>Go to Chrome Settings</li>
<li>Click advanced at the bottom</li>
<li>Click the Manage Certificates link to open the certificate dialog</li>
<li>Click import</li>
<li>Follow the wizard and pick your exorted certificate file</li>
<li>Click browse and choose &quot;Trusted Root Certification Authorites&quot;</li>
<li>Done!</li>
</ol>
<p>After this you should restart Chrome and you should not get any warnings.</p>
<p>All this information was collected at various places in this Stack Overflow question: <a href="https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate">https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate</a></p>
</div>]]></content:encoded></item></channel></rss>