yeah.... i could imagine.
I have a feeling that what i'm trying to do is impossible:
Read from BOTH joomla session values, and the normal server session files, in the same php script. At first i thought to change the session_save_path, but that obviously wouldn't work since joomla handles sessions via databases...
for example:
<?php
define( '_JEXEC', 1 );
define('JPATH_BASE','/home/examp/public_html/');
define( 'DS', DIRECTORY_SEPARATOR );
require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
$App =& JFactory::getApplication('site');
$getmyname=$_SESSION['joomla_name'];
/*Some code to disengage from joomla sessions, and then back to normal sessions on the server*/
$_SESSION['user_value_a']=$getmyname;
?>
I only need the joomla session values right before passing them over to the 'server side', and then i never need to touch joomla again. right now, i have it so that there is a page that sets a cookie=$_SESSION['joomla_name']; , and then it redirects to another page, and then $_SESSION['user_value_a']= the cookie that was previously set.
It was the only thing i could think of to work around this, but like i said, cookies are too open to vulnerabilities