Ionize - Free & Open Source creative CMS |
[eluser]tomcode[/eluser]
I've done a test install on http://www.tienstiens.fr/ionize-0-90/. I got 500 Internal Server Errors as soon as I tried to access the admin area, beeing redirected to http://www.tienstiens.fr/ionize-0-90/en/...user/login I fixed that by replacing in line 102 the call to output for a load->view, file application/controllers/admin/user.php Code: // $this->output('access/login'); Unfortunately all the admin uri http://www.tienstiens.fr/ionize-0-90/en/admin/ cause also a 500 so I cannot access the admin panel. Edit : I've done several runs now, CI is apparently running completely through : ... DEBUG - 2009-12-09 00:39:01 --> File loaded: themes/admin/views/javascript_lang.php DEBUG - 2009-12-09 00:39:01 --> File loaded: themes/admin/views/desktop.php DEBUG - 2009-12-09 00:39:01 --> Final output sent to browser DEBUG - 2009-12-09 00:39:01 --> Total execution time: 0.1031 Very strange. Edit 2 : I traced it all down, it's a header setting. Looks the admin area uses CI's Output->_display() function to send headers and content, while the public pages won't. For the admin pages a header is set : Code: header('text/html; charset=utf-8', true); If I add the header to the root index.php, I get the 500 also for the public pages. Leaves me with the question why the header causes a 500 error. |
Welcome Guest, Not a member yet? Register Sign In |