Connecting Tech Pros Worldwide Help | Site Map

Cookie in frame

  #1  
Old January 26th, 2006, 06:45 AM
Super Mango
Guest
 
Posts: n/a
Hi,

I have this login that works fine when the page is presented as-is, but
I want to allow other site owner to put any page from my site in a
frame in their own site.

The thing is that when the page is called from a different domain, the
cookie is not sent to the server.

What can I do?

Thanks,

  #2  
Old January 26th, 2006, 10:15 AM
Erwin Moller
Guest
 
Posts: n/a

re: Cookie in frame


Super Mango wrote:
[color=blue]
> Hi,
>
> I have this login that works fine when the page is presented as-is, but
> I want to allow other site owner to put any page from my site in a
> frame in their own site.
>
> The thing is that when the page is called from a different domain, the
> cookie is not sent to the server.
>
> What can I do?[/color]

Nothing simple.
Cookies are NOT send crossdomain.
Think about it when that was possible:
1) Every visit to any site would include your WHOLE set cookies. A waste of
bandwidth
2) sucurity. If ANY site could retrieve all your cookies, then they could
easily hijack your current session to somewhere.
You don't want that.

So: If you want to propagate your cookie to another domain, send it yourself
explicitly.
like (GET):
http://www.otherdomain.com/somescrip...jksdahfjkasdhf

(or via POST)

I am not sure what the other site wants to do with the cookie, but that is
the way to send it.
[color=blue]
>
> Thanks,[/color]


Regards,
Erwin Moller
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
JS Cookie in PHP jigsaw puzzle game does NOT work. tpgames answers 7 March 15th, 2007 03:45 PM
Cookies fail when using URL Frame re-direct Don Juan answers 12 April 25th, 2006 07:45 PM
Frames and cookies in IE jonhyland@hotmail.com answers 3 November 19th, 2005 08:35 AM
Getting cookie in url when - cookieless="true" moondaddy answers 4 November 18th, 2005 10:12 AM