Cakephp Autocomplete Tutorial ajax error

2015-01-31 Thread ajt
In CakePHP, I am trying to create a autocomplete function from a textbox, using this tutorial: http: //bakery.cakephp.org/articles/matt_1/2011/08/07/yet_another_jquery_autocomplete_helper_2 I keep getting a Undefined index: autoCompleteText I solved the helper issue as it finds the helper

CakePHP autocomplete tutorial ajax error

2015-01-31 Thread ajt
Hi, In CakePHP, I am trying to create a autocomplete function from a textbox, using this tutorial: http://bakery.cakephp.org/articles/matt_1/2011/08/07/yet_another_jquery_autocomplete_helper_2 I keep getting a Error: AutoCompleteHelper could not be found. Undefined index: autoCompleteText I

Re: cant get autocomplete function to find helper class

2015-01-31 Thread ajt
I checked the docs and the autocomplete tutorial is for cakephp 1.X To use it for cakephp 2.X I couldnt get it to work so I am stuck -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed

Re: 3.0 - Cakephp plugins gone from /plugins

2015-01-31 Thread Joe T.
SOLVED: Somewhere along the line, Congfigure::load() was changed to OMIT the ".php" file extension from config files. So Configure::load('app.php') is no longer correct, instead requiring Configure::load('app') i'm not sure when that change was made, why Configure thinks i'm trying to load a Pl