Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #57534

Re: Cookie aint retrieving when visiting happens from a backlink.

From Nick the Gr33k <nikos.gr33k@gmail.com>
Newsgroups comp.lang.python
Subject Re: Cookie aint retrieving when visiting happens from a backlink.
Date 2013-10-25 18:29 +0300
Organization A noiseless patient Spider
Message-ID <l4e2p0$cv$1@dont-email.me> (permalink)
References (8 earlier) <mailman.1513.1382703109.18130.python-list@python.org> <l4dnnc$qmk$1@dont-email.me> <mailman.1514.1382704567.18130.python-list@python.org> <l4dple$6mf$1@dont-email.me> <l4e21o$99a$3@dont-email.me>

Show all headers | View raw


Στις 25/10/2013 6:17 μμ, ο/η Denis McMahon έγραψε:
> If the client is not sending the expected cookie to the server, then the
> most likely problem is that the client does not associate that particular
> cookie with the server url. If this is the case, then the problem is that
> when you initially sent the cookie to the client, you did not define the
> server url in the cookie in a manner that would cause the client to
> associate the cookie with the url in the subsequent request. This is not
> a python problem, it's an http cookies problem, and the answer lies in
> the cookie you are creating.

Assiciate the cookie with the url?
You mean add a domain directive to the cookie like:

# initialize cookie and retrieve cookie from clients browser
try:
	cookie = cookies.SimpleCookie( os.environ['HTTP_COOKIE'] )
	cookieID = cookie['name'].value
except:
	cookieID = random.randrange(0, 9999)
	cookie['ID'] = cookieID
         cookie['ID']['domain'] = "superhost.gr"
	cookie['ID']['path'] = '/'
	print( cookie )

If this is how you mean it does not solve anything, problem persits.
I googled lots of hours and days about this but this is not mentioned in 
any thread and i', stuck.

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Cookie aint retrieving when visiting happens from a backlink. Νίκος Αλεξόπουλος <nikos.gr33k@gmail.com> - 2013-10-25 10:22 +0300
  Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-25 18:32 +1100
    Re: Cookie aint retrieving when visiting happens from a backlink. Νίκος Αλεξόπουλος <nikos.gr33k@gmail.com> - 2013-10-25 11:25 +0300
      Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-25 19:33 +1100
        Re: Cookie aint retrieving when visiting happens from a backlink. Νίκος Αλεξόπουλος <nikos.gr33k@gmail.com> - 2013-10-25 11:46 +0300
          Re: Cookie aint retrieving when visiting happens from a backlink. Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-25 10:03 +0100
          Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 13:30 +0300
            Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-25 21:51 +1100
              Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 14:46 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-25 23:11 +1100
                Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 15:20 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-25 23:35 +1100
                Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 15:54 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-25 15:21 +0100
                Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 18:04 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-25 16:12 +0100
                Re: Cookie aint retrieving when visiting happens from a backlink. Antoon Pardon <antoon.pardon@rece.vub.ac.be> - 2013-10-26 16:05 +0200
                Re: Cookie aint retrieving when visiting happens from a backlink. Denis McMahon <denismfmcmahon@gmail.com> - 2013-10-25 15:17 +0000
                Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 18:29 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-26 02:34 +1100
                Re: Cookie aint retrieving when visiting happens from a backlink. Joel Goldstick <joel.goldstick@gmail.com> - 2013-10-25 11:36 -0400
                Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-25 18:49 +0300
                Re: Cookie aint retrieving when visiting happens from a backlink. Steve Simmons <square.steve@gmail.com> - 2013-10-25 17:28 +0100
                Re: Cookie aint retrieving when visiting happens from a backlink. Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-25 19:17 +0100
                Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-26 11:19 +1100
      Re: Cookie aint retrieving when visiting happens from a backlink. Piet van Oostrum <piet@vanoostrum.org> - 2013-10-26 21:17 -0400
        Re: Cookie aint retrieving when visiting happens from a backlink. Roy Smith <roy@panix.com> - 2013-10-26 21:34 -0400
        Re: Cookie aint retrieving when visiting happens from a backlink. Piet van Oostrum <piet@vanoostrum.org> - 2013-10-26 22:24 -0400
          Re: Cookie aint retrieving when visiting happens from a backlink. Nick the Gr33k <nikos.gr33k@gmail.com> - 2013-10-27 08:45 +0200
    Re: Cookie aint retrieving when visiting happens from a backlink. Νίκος Αλεξόπουλος <nikos.gr33k@gmail.com> - 2013-10-25 11:26 +0300
  Re: Cookie aint retrieving when visiting happens from a backlink. Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-10-25 15:13 +0000
    Re: Cookie aint retrieving when visiting happens from a backlink. Chris Angelico <rosuav@gmail.com> - 2013-10-26 02:28 +1100

csiph-web