Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sessions/Frames question

Status
Not open for further replies.

DeepBlerg

Technical User
Jan 13, 2001
224
AU
Hi,

If I've got the following page on a domainlike test.com

Code:
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
  <frame src="mainTop.php" name="topFrame" scrolling="NO" noresize>
  <frame src="[URL unfurl="true"]http://www.external_site.com/generic_page.php"[/URL] name="mainFrame">
</frameset>

The generic_page.php uses sessions (and is on a different domain), it has buttons that navigate through a few different signup steps and it loses its own PHP sessions as the user goes through the steps.

Is there a way to make sessions active on the generic_page.php?
 
You might need to change session.cookie_path in php.ini to send the cookie to both domains. I think if you set it to . (single dot) it would send the cookie to any domain you accessed which is probabbly not what you want !
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top