Do not leave these in the files on a live server, take them out when you are finished.
index.php - at the top add these:
PHP Code:
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
error_reporting(E_ALL);
In the same place add this to the .htaccess file.
Code:
php_flag display_errors 1
That will allow you to see the errors. Remember to take those all out when finished.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )