Re: get vs. post in production vs. dev server

2011-02-21 Thread Josh Cartmell
I forgot to mention my development server is fastcgi/apache. Thnaks On Feb 21, 11:15 am, Josh Cartmell wrote: > I have a simple login form on every page like this: > > {% csrf_token %} > > type="password"> > > > > It was working great on the dev server.  Then I went into

get vs. post in production vs. dev server

2011-02-21 Thread Josh Cartmell
I have a simple login form on every page like this: {% csrf_token %} It was working great on the dev server. Then I went into production. Now every form submission is being interpreted as a GET rather than a POST unless I am actually on the page /shop/account/ (the forms action). Has