Hi,<br>I&#39;m locked on a problem in creating my interactive blog.<br>So far, I was managing the localhost without any problems. My function that opens the blog involves opening a database &quot;database.db&quot; which contains the blog posts (cf Continue racket doc) :<br>
(define (start request)<br>  (render-blog-page (initialize-blog! (build-path &quot;database.db&quot;)) request))<br><br>Now, I put my database online, chmod 777, at an address like <a href="http://www.example.com">www.example.com</a> / database.db<br>
<br>What should I change in my function (start request) so she could retrieve posts from <a href="http://www.example.com/database.db">www.example.com/database.db</a>?<br><br>I blocked for several hours on this problem,<br>
thank you for your help<br><br>-Mw<br>