<div><div>Hi all, i&#39;ve just understood the CGI way-of-life (yes, i&#39;m happy)</div><div><br></div><div>First, i have a perl super-easy script (file saved as test.cgi) who prints &quot;hello&quot;, this is it </div><div>
#!c:\Strawberry\perl\bin\perl.exe</div><div>print &quot;Content-type: text/plain; charset=iso-8859-1\n\n&quot;;</div><div>print &quot;hello&quot;;</div><div><br></div><div>It works perfectly,, when i&#39;m connecting at <a href="http://127.0.0.1/cgi-bin/test.cgi">127.0.0.1/cgi-bin/test.cgi</a> i have a webpage with &quot;hello&quot;.</div>
<div><br></div><div>Now, i want to do the same thing in racket ... i have a 500 internal serve error, maybe because the script isn&#39;t good : this is my script, saved as test.cgi :</div><div>#!c:\Program Files (x86)\DrRacket\mzscheme.exe</div>
<div><br></div><div>(display &quot;Content-type: text/plain; charset=iso-8859-1\n\n&quot;)</div><div>(display &quot;hello&quot;)</div><div><br></div><div>##(require net/cgi)</div><div>##(generate-html-output &quot;title&quot; (list &quot;content&quot;))</div>
<div><br></div><div>What&#39;s wrong here ? Must i write #lang racket at the top, must i change mzscheme.exe with gracket.exe ... ?</div><div>I don&#39;t really understand why i&#39;ve an apache internal server error ... </div>
<div><br></div><div>ps : in my apache httpd.conf i&#39;ve the line &gt; AddHandler cgi-script .cgi .pl .rkt .ss</div><div><br></div><div>Thanks for your help,</div><div>-mw</div></div>