Hi,
I followed the django tutorial and got my site running on runserver +
sqlite3 with no problems

I then moved the site onto apache + mod_python and (after receiving
some help from this group) managed to get the same site semi-running

The admin page, home page, and a few others are working as they were
with runserver... but I now have a strange problem with one of my
pages

I have a submit input on one of my pages and when I run the site on
runserver it still works fine (I just tried it now)
However, when I run the exact same site on Apache the url that is
returned by "submit" is different, and this obviously causes the
pattern matching in urls.py to fail

Here is the html + template script that causes the problem

        {% if error_message %}<p><strong>{{ error_message }}</strong></p>{%
endif %}

        <form action="/swenglish/test/submit/" method="get">
                {% for entry in entry_list %}
                        <label for="swe_question{{ forloop.counter }}">{{ 
entry.eng_val }}</
label>
                        <input type="text" name="{{ entry.eng_val }}"/><br />
                {% endfor %}
                <input type="submit" value="submit" />
        </form>

With runserver it returns the following when I press submit:
      "http://127.0.0.1:8000/swenglish/test/submit/";

With Apache it returns the followingwhen I press submit:
      "http://localhost/swenglish/test/submit/?thank
+you=tack&much=mycket&he=han&fun=roligt&bye=hej+da&snow=sno"

Any help would be greatly appreciated!
Alex
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to