Re: referer url

2008-01-28 Thread [EMAIL PROTECTED]
Thanks for that! i found the variable in "ALL_HTTP" and it's working now. Thanks again.. -- http://mail.python.org/mailman/listinfo/python-list

Re: referer url

2008-01-28 Thread Tim Chase
> 1) CGI so i'm doing it right. that's helpful to know > 2) this is impossible as i'm doing the exact same thing with another > language and it utterly works. Just making sure...same browser/setup/configuration, different language? > 3) the same as above kinda figured...most servers give you

Re: referer url

2008-01-28 Thread [EMAIL PROTECTED]
Thanks for the reply. 1) CGI so i'm doing it right. 2) this is impossible as i'm doing the exact same thing with another language and it utterly works. 3) the same as above 4) no.. this gets nerve breaking! -- http://mail.python.org/mailman/listinfo/python-list

Re: referer url

2008-01-28 Thread Tim Chase
> I was wondering, if there is a way to retrieve the referer url with > python (web-based). > I tried this: > > import os > print os.getenv('HTTP_REFERER') > > but it's not working, even thought other http variables do function, > this one is alway

referer url

2008-01-28 Thread [EMAIL PROTECTED]
Hello all! I was wondering, if there is a way to retrieve the referer url with python (web-based). I tried this: import os print os.getenv('HTTP_REFERER') but it's not working, even thought other http variables do function, this one is always a None. Thanks in ad