Still in the process of trying your app:
I have downloaded, configured and installed the latest version:
Suggestions:
//cosmetic
1. file: ‘./application/views/template_content.php’
line: 66
add:
<span>
<?php echo date(‘l, jS F Y H:i:s’,time());?>
</span>
// errors
2. file: ‘./application/views/configuration.php’
line: 27..32
remove preceding slash from href=”/documentation/configuration/...
// think it is best to set default to 0
3. file: ‘./application/config/constants.php’
line: 21
add:
define(‘USE_SSL’, isset($_SERVER[‘HTTPS’]) && $_SERVER[‘HTTPS’]); // original default: 1
// easier to set profiler
4.a file: ‘./application/config/constants.php’
line: 23
add:
define(‘ENABLE_PROFILER’, 1); // requires following step
// part of above step
4.b file: ‘./application/core/MY_Controller.php’
line: 28
edit:
$this->output->enable_profiler( defined(‘ENABLE_PROFILER’) && ENABLE_PROFILER);
My next big question is, is it possible to run SSL using a XAMPP localhost?
If possible then can you point me in the right direction as where to start searching or modify your introduction documentation to say that SSL is absolutely essential.
edit: corrected path for My_Controller.php and constants.php