Answer the question
In order to leave comments, you need to log in
Why is the ip not coming?
I can't understand why ip usera
ip = request.META.get('HTTP_X_FORWARDED_FOR', '') doesn't come
on the old site, everything works the same, hosting is running
. What could be the problem?
def buy(request, id):
form = AppForm(request.POST)
if request.method == 'POST' and form.is_valid():
new_form = form.save()
return redirect("/orders")
buy = Product.objects.get(id=id)
ip = request.META.get('HTTP_X_FORWARDED_FOR', '')
return render(request, 'shop/buy.html', {'product':buy, 'ip': ip})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question