[eluser]clintonbeattie[/eluser]
A quick update and one that will help all people using the Wrox book.
The errors will not be shown if you do the following, although they are still being flagged in the logs folder...
Error handling in codeigniter:
To log your errors, but not display them to screen, you set the error_reporting to “0” (error_reporting(0)

in the index.php at the root of the code igniter folder,
not the application folder, and your log threshold at 1 or more in the config/config.php ($config['log_threshold'] = 1
All errors will be visible in system/logs/log.php
These are the errors in log.php...
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2009-01-13 20:08:05 --> Severity: Notice --> Undefined property: MOrders::$2.58 C:\xampp\htdocs\codeigniter\system\application\models\morders.php 74
ERROR - 2009-01-13 20:08:09 --> Severity: Notice --> Undefined property: MOrders::$5.16 C:\xampp\htdocs\codeigniter\system\application\models\morders.php 74
ERROR - 2009-01-13 20:08:12 --> Severity: Notice --> Undefined property: MOrders::$9.03 C:\xampp\htdocs\codeigniter\system\application\models\morders.php 74
ERROR - 2009-01-13 20:08:30 --> Severity: Notice --> Undefined index: cart C:\xampp\htdocs\codeigniter\system\application\controllers\welcome.php 75
ERROR - 2009-01-13 20:08:32 --> Severity: Notice --> Undefined index: cart C:\xampp\htdocs\codeigniter\system\application\models\morders.php 11
So problems averted for the time being. There could be more issues later on.
Best,
Codeigniter rocks...when I'm not fixing errors lol