In the future, please CC your mailings to the mailing list, instead of to another student via direct e-mail.  See below for replies.<br><br><div class="gmail_quote">On Sun, Sep 13, 2009 at 3:26 PM,  <span dir="ltr">&lt;<a href="mailto:leeho2@msu.edu" target="_blank">leeho2@msu.edu</a>&gt;</span> wrote:<br>


<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><p>hello<br>
<br>
i have some questions about homework #1<br>
<br>
first,how do i access to an open Suversion server?<br>
<br>
second, is this how the hw#1 work?<br>
i opend up form.html file, then if i fill out name and number, it automatically connect to my process-hw1-form.cgi, and then<br>
process the result?, or<br>
i modify something in form.html, and put them into my process-hw1-form.cgi file, so it can be seen as html file.<br>
<br>
thanks</p></blockquote></div>The instructions for how to access the Subversion server can be found here: <a href="http://ged.msu.edu/courses/2009-fall-cse-491/cse491-2009-lab2.html">http://ged.msu.edu/courses/2009-fall-cse-491/cse491-2009-lab2.html</a><br>

The form.html file is an example of an interface to your CGI script.  All that is required of this part of the project is that your process-hw1-form.cgi script can handle data submitted to it via forms like form.html, so a good plan would be to modify the form action part of form.html to point to wherever you host your process-hw1-form.cgi (probably to say action=&quot;<a href="http://www.cse.msu.edu/cgi-user/leeho2/process-hw1-form.cgi">http://www.cse.msu.edu/cgi-user/leeho2/process-hw1-form.cgi</a>&quot; if you save your CGI script at /user/cgi/leeho2/process-hw1-form.cgi) and submit data with that form.html every time you make a change.<br>

That explanation sounded a bit wordy, let me know if I confused you...<br><br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">hello<br>
<br>
i access to &quot;<a href="http://www.cse.msu.edu/%7Eleeho2/form.html" target="_blank">http://www.cse.msu.edu/~leeho2/form.html</a>&quot;, and then if i hit submit, it gives me an access error<br>
i set the path to &lt;...........action=&#39;<a href="http://www.cse.msu.edu/cgi-user/leeho2" target="_blank">http://www.cse.msu.edu/cgi-user/leeho2</a>&#39;&gt;<br>
is it becasue my process-hw1-form.cgi is wrong?</blockquote><div><br>Like I said in the long explanation above, you should set action=&quot;<a href="http://www.cse.msu.edu/cgi-user/leeho2/process-hw1-form.cgi">http://www.cse.msu.edu/cgi-user/leeho2/process-hw1-form.cgi</a>&quot;.  Leaving it the way it is makes your form try to send data to an invalid URL. <br>

<br>Hope this helps,<br>--Joe Amenta<br></div>