[eluser]John_Betong_002[/eluser]
I know it is no consolation but it works fine for me
Here is a checklist:
1. are your different application folders OK
2. do you have an existing working application?
3. have you tried renaming your application folder
4. have you set session_start(); in your index.php?
Can you try this code in your index.php and post the results?
Code:
...
...
$application_folder = isset($_SESSION['_MENU_']) ? $_SESSION['_MENU_'] : 'default_application';
if(1) // toggle to 0 to ignore
{
echo '<br />$application_folder: ', $application_folder;
echo '<pre>';
print_r($_SESSION);
echo '</pre>';
die;
}
...
...