I can\'t seem to get session data passed from my codeigniter application back to a script in my includes folder. From what I\'ve read on other answers, I need to set my
Improving on @acupajoe's answer, you don't have to copy-paste the CI index.php
. Instead change the include
part into this:
Then change in index.php
:
$system_path = isset($temp_system_path) ? $temp_system_path : 'system';
and
$application_folder = isset($temp_application_folder) ? $temp_application_folder : 'application';