Notice (8): Undefined index: in cakephp 1.2

2008-04-04 Thread bhushan A
Hi all, I am upgrading my cakephp 1.1 application to cakephp 1.2 . But i am getting error Notice (8): Undefined index:xyz in app/controllers/ abc_controller.php Notice (8): Undefined variable:xyz in app/controllers/ abc_controller.php Can anybody tell me which changes i have to do and

Re: Notice (8): Undefined index: in cakephp 1.2

2008-04-04 Thread Samuel DeVore
not with that amount of information, perhaps some time spent actually putting some useful information in your question you could get some better help. Like what array is is working on, what are some relevant code lines around that error. On Thu, Apr 3, 2008 at 11:50 PM, bhushan A [EMAIL

Re: Notice (8): Undefined index: in cakephp 1.2

2008-04-04 Thread jonknee
What's not clear about the error message? You have a high error reporting level (which is why you are seeing notices) and there are two problems in abc_controller.php. One is you're trying to access an array with an invalid key. The other is you're trying to access a variable that doesn't exist.