Radar
Junior Member
Posts: 3
Registered: 8/15/2005
Location: Utah
Member Is Offline
|
| posted on 8/15/2005 at 06:04 AM |
|
|
Redirection
This may not be the right place for me to come and post but it's the only place i found.
I have a website (actually a set of forums) and I'm trying to redirect from another location to those forums but every time I do it doesn't read the
cookie that I've got in place for me(since I'm logged in and have it set to remember me)
I've tried the meta tag way
| Code: |
<meta http-equiv="refresh" content="0;url=http://s10.invisionfree.com/Creative_Elements/">
|
I've also used the javascript way
| Code: |
<SCRIPT LANGUAGE="Javascript">
document.location.href="http://s10.invisionfree.com/Creative_Elements";
</SCRIPT>
|
Neither of them read the cookie at all. Any help on this is greatly appreciated.
|
|
|
tigra
Administrator
Posts: 1905
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 8/15/2005 at 11:32 PM |
|
|
The problem is probably in the way you set/read cookie, not in the way you redirect the browser, also check the scope of the cookies you set. The
scope may be limited to a domain or even directory, make sure you set it explicitly.
|
|
|
Radar
Junior Member
Posts: 3
Registered: 8/15/2005
Location: Utah
Member Is Offline
|
| posted on 8/16/2005 at 12:13 AM |
|
|
I guess that could be the problem -- but I can't check it because my forums are on a set of free forums... (Invisionfree)...
|
|
|
tigra
Administrator
Posts: 1905
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 8/17/2005 at 05:43 PM |
|
|
You'll need access to the code that sets the cookies in order to change the scope. Free stuff providers are usually not very excited about any
modifications.
|
|
|