i think there’s a misinterpretation of the APPPATH purpose.
see index.php:
/*
|---------------------------------------------------------------
| DEFINE APPLICATION CONSTANTS
|---------------------------------------------------------------
|
| EXT - The file extension. Typically ".php"
| FCPATH - The full server path to THIS file
| SELF - The name of THIS file (typically "index.php)
| BASEPATH - The full server path to the "system" folder
| APPPATH - The [b]full server path[/b] to the "application" folder
|
*/
it’s supposed to be the full server path. however, on line #30 of login.php (at least) it’s used as if it were a relative path:
$this->codextemplates->css('template-css',base_url().APPPATH.'views/templates/'.$this->template.'/css/codex_'.$this->template.'.css');
for some configurations it may work, but not for me. look at my login page stylesheet link:
<link rel="stylesheet" href="http://192.168.1.130/sim/C:/Inetpub/wwwroot/sim/codex/application/views/templates/clean_blue/css/codex_clean_blue.css" type="text/css">
are you planning to solve this?
UPDATE:
codex_search_form.php lines 37 and 82 have the same problem.