Re: Want solution for CSRF problem in django please........

2013-08-15 Thread JAI PRAKASH SINGH
Thanking you sir .
I  paste  {% csrf_token %}  after form tag  in my contact_form.html

and it worked!!
thank you lot


On Thu, Aug 15, 2013 at 6:50 PM, Jonathan Baker <
jonathandavidba...@gmail.com> wrote:

> The bullet points in the error message provide some possible solutions.
> I'd start by adding {% csrf_token %} after your opening  tag in the
> template. Also of note though is that you've imported 'csrf' and
> 'RequestContext' in your view but you don't appear to be using them
> anywhere (at least not in the views code snippet you provided here).
>
>
> On Thu, Aug 15, 2013 at 7:16 AM, JAI PRAKASH SINGH <
> jaiprakashsingh...@gmail.com> wrote:
>
>> code in views.py
>>
>> =
>>
>> from django.http import HttpResponseRedirect
>> from django.core.mail import send_mail
>>
>>
>> def contact1(request):
>> errors = []
>> if request.method == 'POST':
>> if not request.POST.get('subject', ''):
>> errors.append('Enter a subject.')
>> if not request.POST.get('message', ''):
>> errors.append('Enter a message.')
>> if request.POST.get('email') and '@' not in request.POST['email']:
>> errors.append('Enter a valid e-mail address.')
>> if not errors:
>> send_mail(
>> request.POST['subject'],
>> request.POST['message'],
>> request.POST.get('email', 'nore...@example.com'),
>> ['siteow...@example.com'],
>> )
>> return HttpResponseRedirect('/contact/thanks/')
>> return render(request, 'contact_form.html',{'errors': errors})
>>
>>
>> ===
>> code in contact_form.html
>> =
>> 
>> 
>> Contact us
>> 
>> 
>> Contact us
>>
>> {% if errors %}
>> 
>> {% for error in errors %}
>> {{ error }}
>> {% endfor %}
>> 
>> {% endif %}
>>
>> {% csrf_token %}
>> Subject: 
>> Your e-mail (optional): 
>> Message: > cols="50">
>> 
>> 
>> 
>> 
>>
>>
>>
>>
>> =
>> error
>>
>> Forbidden (403)
>>
>> CSRF verification failed. Request aborted.
>>  Help
>>
>> Reason given for failure:
>>
>> CSRF cookie not set.
>>
>>
>> In general, this can occur when there is a genuine Cross Site Request
>> Forgery, or when Django's CSRF 
>> mechanismhas
>>  not been used correctly. For POST forms, you need to ensure:
>>
>>- Your browser is accepting cookies.
>>- The view function uses 
>> RequestContextfor
>>  the template, instead of
>>Context.
>>- In the template, there is a {% csrf_token %} template tag inside
>>each POST form that targets an internal URL.
>>- If you are not using CsrfViewMiddleware, then you must use
>>csrf_protect on any views that use the csrf_token template tag, as
>>well as those that accept the POST data.
>>
>> You're seeing the help section of this page because you have DEBUG = Truein 
>> your Django settings file. Change that to
>> False, and only the initial error message will be displayed.
>>
>> You can customize this page using the CSRF_FAILURE_VIEW setting.
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>>
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
> Jonathan D. Baker
> Developer
> http://jonathandbaker.com
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Django users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/django-users/NqLEzga6HoY/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Re: Want solution for CSRF problem in django please........

2013-08-15 Thread Jonathan Baker
The bullet points in the error message provide some possible solutions. I'd
start by adding {% csrf_token %} after your opening  tag in the
template. Also of note though is that you've imported 'csrf' and
'RequestContext' in your view but you don't appear to be using them
anywhere (at least not in the views code snippet you provided here).


On Thu, Aug 15, 2013 at 7:16 AM, JAI PRAKASH SINGH <
jaiprakashsingh...@gmail.com> wrote:

> code in views.py
>
> =
>
> from django.http import HttpResponseRedirect
> from django.core.mail import send_mail
> from django.core.context_processors import csrf
> from django.template import RequestContext
>
> def contact1(request):
> errors = []
> if request.method == 'POST':
> if not request.POST.get('subject', ''):
> errors.append('Enter a subject.')
> if not request.POST.get('message', ''):
> errors.append('Enter a message.')
> if request.POST.get('email') and '@' not in request.POST['email']:
> errors.append('Enter a valid e-mail address.')
> if not errors:
> send_mail(
> request.POST['subject'],
> request.POST['message'],
> request.POST.get('email', 'nore...@example.com'),
> ['siteow...@example.com'],
> )
> return HttpResponseRedirect('/contact/thanks/')
> return render(request, 'contact_form.html',{'errors': errors})
>
>
> ===
> code in contact_form.html
> =
> 
> 
> Contact us
> 
> 
> Contact us
>
> {% if errors %}
> 
> {% for error in errors %}
> {{ error }}
> {% endfor %}
> 
> {% endif %}
>
> 
> Subject: 
> Your e-mail (optional): 
> Message:  cols="50">
> 
> 
> 
> 
>
>
>
>
> =
> error
>
> Forbidden (403)
>
> CSRF verification failed. Request aborted.
>  Help
>
> Reason given for failure:
>
> CSRF cookie not set.
>
>
> In general, this can occur when there is a genuine Cross Site Request
> Forgery, or when Django's CSRF 
> mechanismhas
>  not been used correctly. For POST forms, you need to ensure:
>
>- Your browser is accepting cookies.
>- The view function uses 
> RequestContextfor
>  the template, instead of
>Context.
>- In the template, there is a {% csrf_token %} template tag inside
>each POST form that targets an internal URL.
>- If you are not using CsrfViewMiddleware, then you must use
>csrf_protect on any views that use the csrf_token template tag, as
>well as those that accept the POST data.
>
> You're seeing the help section of this page because you have DEBUG = Truein 
> your Django settings file. Change that to
> False, and only the initial error message will be displayed.
>
> You can customize this page using the CSRF_FAILURE_VIEW setting.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Jonathan D. Baker
Developer
http://jonathandbaker.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Want solution for CSRF problem in django please........

2013-08-15 Thread JAI PRAKASH SINGH
code in views.py

=

from django.http import HttpResponseRedirect
from django.core.mail import send_mail
from django.core.context_processors import csrf
from django.template import RequestContext

def contact1(request):
errors = []
if request.method == 'POST':
if not request.POST.get('subject', ''):
errors.append('Enter a subject.')
if not request.POST.get('message', ''):
errors.append('Enter a message.')
if request.POST.get('email') and '@' not in request.POST['email']:
errors.append('Enter a valid e-mail address.')
if not errors:
send_mail(
request.POST['subject'],
request.POST['message'],
request.POST.get('email', 'nore...@example.com'),
['siteow...@example.com'],
)
return HttpResponseRedirect('/contact/thanks/')
return render(request, 'contact_form.html',{'errors': errors})


===
code in contact_form.html
=


Contact us


Contact us

{% if errors %}

{% for error in errors %}
{{ error }}
{% endfor %}

{% endif %}


Subject: 
Your e-mail (optional): 
Message: 








=
error

Forbidden (403) 

CSRF verification failed. Request aborted.
 Help 

Reason given for failure:

CSRF cookie not set.


In general, this can occur when there is a genuine Cross Site Request 
Forgery, or when Django's CSRF 
mechanismhas
 not been used correctly. For POST forms, you need to ensure:

   - Your browser is accepting cookies.
   - The view function uses 
RequestContextfor
 the template, instead of 
   Context.
   - In the template, there is a {% csrf_token %} template tag inside each 
   POST form that targets an internal URL.
   - If you are not using CsrfViewMiddleware, then you must use csrf_protecton 
any views that use the 
   csrf_token template tag, as well as those that accept the POST data.

You're seeing the help section of this page because you have DEBUG = Truein 
your Django settings file. Change that to 
False, and only the initial error message will be displayed. 

You can customize this page using the CSRF_FAILURE_VIEW setting.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.