Coles Notes version:
index.php?map_id=foo
is loaded into iframe on www.not-my-domain.com. index sets SESSION['map_id']
= foo. Flash file tries to get SESSION['map_id']
thru Authenticate.php, but Authenticate.php has no values set for any SESSION
varaibles.
-- Only first-load, cross domain issue.
Verbose:
I have an index while where I set: SESSION['map_id'] = foo
The index file then loads a flash file. When initialized, the flash accesses an 'Authenticate.php' file which echo's out the SESSION['map_id']
and is loaded into flash via LoadVars
. Flash then displays the appropriate data.
This step cannot be done another way
This all works just fine on our main site. The issue comes when we try to port out to other sites by providing iframe embed codes:
<iframe src="http://www.mydomain.com/?map_id=foo&code=bar" ... ></iframe>
On a fresh load of the embed code from another site (www.anotherdomain.com), it seems that the SESSION
variables have been destroyed, as flash simply says they are empty. ( $map_id
outputs a blank )
The index file will still properly echo $map_id
as 'foo', it just seems the 'Authenticate.php' file cannot access the SESSION
varaibles.
I have ensured session_start()
is present in all appropriate files.