Hi!
I'm building a site with multiple iframes. Because every iframe has to get some information from SESSION variables, I'm now and then getting access denied warnings. How to fix this? I know that one solution is to store variables in a database but I'm not so keen on doing this. warnig message and the code for template are listed below!
Error below:
Warning: session_start() [function.session-start]: open(c:\php\sessions\sess_h6r9hhs9ttae7devjejhud7vv3, O_RDWR) failed: Permission denied (13) in C:\Documents and Settings\Iztok\My Documents\My Website\bla\globals_var.php on line 6
globals_var.php
<?
/ Buffer /
ob_start();
/ SESSION /
session_start();
?>
Globals_var.php is included in every file (template). And because I use frames, this file is loaded 2 times.
Bye,
Arnold