Re: missing controller exception

2013-03-10 Thread Devario Johnson
so you mean in one of the parents there may be something causing an issue. I'll have to take a look on Monday On Sat, Mar 9, 2013 at 5:56 PM, lowpass wrote: > On Fri, Mar 8, 2013 at 11:06 PM, Devario Johnson wrote: > >> Thanks for the suggestion. I've never done anyt

Re: missing controller exception

2013-03-08 Thread Devario Johnson
> Visit this group at http://groups.google.com/group/cake-php?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- - Devario Johnson Senior Web Applications Developer / I.T. Consultant B.A. Communication Technology / Information Systems -- Like Us on Face

Re: missing controller exception

2013-03-06 Thread Devario Johnson
FYI, it was saying this was coming from webroot/index.php...but the site itself works fine. On Wednesday, March 6, 2013 12:56:58 PM UTC-5, Devario Johnson wrote: > > Hi all, Im trying to debug this error. > > when I look at the cakelogs I get this > > [MissingControllerExc

missing controller exception

2013-03-06 Thread Devario Johnson
Hi all, Im trying to debug this error. when I look at the cakelogs I get this [MissingControllerException] Controller class Controller could not be found. where should I look to begin debugging this? I googled around and everyone with a similar issue was referencing an actual controller like

Re: Baking cake 2.4

2013-01-11 Thread Devario Johnson
make sure you are in the 'app' directory then run cake bake...it happens sometimes... On Sunday, January 6, 2013 8:08:07 AM UTC-5, Olufemi Oluoje wrote: > > Pls can anyone send me the link of how to bake cake 2.4. Because I have > been having issues, due to change in the folder structure from 1.

Related data when using pages controller

2013-01-11 Thread Devario Johnson
Just an fyi for anyone who may have an issue in 2.x when viewing a pr($this->Model->find('all'); from the pages controller, make sure that first letter is capitalized (which is what you should be doing anyway). lol I spent a few minutes trying to find out why the heck none of the relations we

Re: Cake PHP doesn't work on Mac but on Windows

2013-01-11 Thread Devario Johnson
Make sure your .htaccess files all copied over correctly. This happens alot on macs if you dont have it set up for hidden files On Thursday, January 10, 2013 8:29:45 AM UTC-5, Theresia Z wrote: > > I have a big problem with Cakephp. We installed it and built an > application on windows, everyth

Re: Cake 2.0 - How to Specify a Primary Key

2013-01-11 Thread Devario Johnson
kudos On Tuesday, January 8, 2013 9:42:28 PM UTC-5, Andras Kende wrote: > > > http://book.cakephp.org/2.0/en/models/model-attributes.html#primarykey > > app/Models/User.php : > > class User extends AppModel { > public $primaryKey = 'users_id'; > } > > > Andras Kende > http://www.kend

Re: interesting utf-8 issue

2012-12-21 Thread Devario Johnson
Yes all links and routes are fine...as soon as I removed the alias everything worked the way they were supposed to. Ill post code to git when I get to a computer On Dec 21, 2012 7:28 PM, "lowpass" wrote: > > On Fri, Dec 21, 2012 at 6:58 PM, Devario Johnson wrote: > > OK t

Re: interesting utf-8 issue

2012-12-21 Thread Devario Johnson
weird things happen on pages controller pages. Namely the HtmlHelper::link is all linking to the same page now But the documentation says to do that.anyone have any luck with figuring this out? On Friday, December 21, 2012 3:10:07 PM UTC-5, Devario Johnson wrote: > > ...of

Re: interesting utf-8 issue

2012-12-21 Thread Devario Johnson
...of course making my addition of html_entitiy_decode to the $title On Friday, December 21, 2012 3:08:55 PM UTC-5, Devario Johnson wrote: > > For anyone that is trying to do this, > > to resolve this, I essentially created a custom helper that extended the > html helper, and

Re: interesting utf-8 issue

2012-12-21 Thread Devario Johnson
5, Devario Johnson wrote: > > Hi Cricket, that was just an example. Not the actual code I was using. > > On Friday, December 21, 2012 2:43:57 PM UTC-5, cricket wrote: >> >> Maybe unrelated, but you don't need the single quotes around $label. >> >> On Fri, D

Re: interesting utf-8 issue

2012-12-21 Thread Devario Johnson
Hi Cricket, that was just an example. Not the actual code I was using. On Friday, December 21, 2012 2:43:57 PM UTC-5, cricket wrote: > > Maybe unrelated, but you don't need the single quotes around $label. > > On Fri, Dec 21, 2012 at 12:01 PM, Devario Johnson > >

interesting utf-8 issue

2012-12-21 Thread Devario Johnson
Hi bakers, so piggy backing off of this https://groups.google.com/forum/#!searchin/cake-php/utf$208/cake-php/ERyfps6CRyQ/oBr_ngD600kJ I noticed something weird in my encoding for a cake 2.2.2 app. Basically in the database config it is set to utf-8 in the header of the default layout it is set

Re: What's the best way to get Twitter Bootstrap into Cake?

2012-12-11 Thread Devario Johnson
Ive used this in the past and it worked well http://blog.loadsys.com/2012/02/14/cakephp-20-and-twitter-bootstrap/ https://github.com/loadsys/twitter-bootstrap-helper On Thursday, December 6, 2012 3:17:53 AM UTC-5, Lourenzo Ferreira wrote: > > I've seen several Plugins and even forks to use Twitt

Re: cakephp admin app

2012-12-11 Thread Devario Johnson
t; Jeremy Burns > Class Outfit > > http://www.classoutfit.com > > On 11 Dec 2012, at 00:05:47, Devario Johnson > > > wrote: > > So I searched a bit, and honestly I have kind of a headache right now, and > can't seem to find exactly what Im looking for. So Im hop

Re: cakephp admin app

2012-12-11 Thread Devario Johnson
velopment/routing.html#prefix-routing > > Jeremy Burns > Class Outfit > > http://www.classoutfit.com > > On 11 Dec 2012, at 00:05:47, Devario Johnson > > > wrote: > > So I searched a bit, and honestly I have kind of a headache right now, and > can't se

cakephp admin app

2012-12-10 Thread Devario Johnson
So I searched a bit, and honestly I have kind of a headache right now, and can't seem to find exactly what Im looking for. So Im hoping someone can point me in the right direction via an article or something. I would like to have an admin section as a new cake app in the structure as follows

Re: Is it possible to get find() to bypass associated model?

2012-09-18 Thread Devario Johnson
in the controller method $this->ModelNameHere->recursive = -1; On Tuesday, September 18, 2012 8:10:33 AM UTC-4, Lightee wrote: > > THanks! This works! > > On Monday, September 17, 2012 5:36:31 PM UTC+8, Andras Kende wrote: >> >> easiest way if only need records from current model: >> >> $records

Re: adding a custom prefix route that will snap in to all urls from the html helper

2012-09-18 Thread Devario Johnson
UPDATE I ended up fixing this with Javascript prepending it...not ideal...but it worked On Monday, September 17, 2012 6:16:09 PM UTC-4, Devario Johnson wrote: > > hi, this may be simple and I came rather close, but I was wondering if > someone could point me in the right direction.

adding a custom prefix route that will snap in to all urls from the html helper

2012-09-17 Thread Devario Johnson
hi, this may be simple and I came rather close, but I was wondering if someone could point me in the right direction. I was looking over the routing docs and doing some other searches but couldnt find exactly what I needed. here is the issue. I have a site that is hosted at a subdirectory that

Re: Weird Cake 2 cache issue when sorting

2012-08-15 Thread Devario Johnson
ok I found the solution. Here it is for anyone that needs it Not sure why any of the other clear caching methods didnt work but in the controller this worked for me $this->disableCache(); -- You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to

Re: Weird Cake 2 cache issue when sorting

2012-08-15 Thread Devario Johnson
btw...if I refresh, it goes away and works fine for that particular sort On Wednesday, August 15, 2012 6:32:45 PM UTC-4, Devario Johnson wrote: > > Hi all, I have a weird thing that I am seeing and I was hoping someone > could shed some light on it. > > Config => Cache.check,

Weird Cake 2 cache issue when sorting

2012-08-15 Thread Devario Johnson
Hi all, I have a weird thing that I am seeing and I was hoping someone could shed some light on it. Config => Cache.check, true / or not true same result => Cache.disable, true / or not same result here is the flow.. User logs in -> sees db data -> sorts it all is well logs out n

Re: 3.0: a peek into CakePHP's future

2012-08-07 Thread Devario Johnson
Make router faster = #win -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr.

Re: 3.0: a peek into CakePHP's future

2012-08-07 Thread Devario Johnson
Make router faster = #win On Thursday, July 5, 2012 10:36:03 PM UTC-4, José Lorenzo wrote: > > Since its creation, more than 7 years ago, CakePHP has grown with a life > of its own. Its main goal has always been to empower developers with tools > that are both easy to learn and use, leverage gre

Re: Installing CakePHP on MAMP

2012-08-07 Thread Devario Johnson
On Thursday, January 24, 2008 5:31:47 PM UTC-5, alex@gmail.com wrote: > > Hey, > I'm having a major problem with installing CakePhp on a MAMP > application on Mac OSX 10.4.10 > > There's nothing wrong with the MAMP Apache Server, I tried out > Codeigniter and it worked just fine. But when

issue with table not being found...

2012-06-03 Thread Devario Johnson
Really quick question, maybe im missing something...but i have a table and it is there, all naming conventions are good etc ... but im getting this when i do a params in the error.php Array ( [className] => Tag [table] => tags [code] => 500 ) class name is the same, table is present...eveythin

Re: Is there a way to generate the excel spreadsheet using cakephp?

2012-06-03 Thread Devario Johnson
http://bakery.cakephp.org/articles/melgior/2010/01/26/simple-excel-spreadsheet-helper On Sunday, June 3, 2012 6:22:49 AM UTC-5, alvin567 wrote: > > Is there a way to generate the excel spreadsheet using cakephp? -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org

Re: CakePHP 2.1.3 & 2.2.0-RC1 released

2012-06-02 Thread Devario Johnson
Awesome...I love that the timzone is in there, I remember having to do a custom one for an app not too long ago. Cake keeps getting better and better On Tuesday, May 22, 2012 8:52:47 PM UTC-5, mark_story wrote: > > The CakePHP core team is proud to announce the immediate availability of > both

Re: Problem with using xampp on cakephp?

2012-06-02 Thread Devario Johnson
what exactly is the issue? I use cakephp with xampp all the time. Are you trying to change your path to your app or something? if so you can just leave that as how it was and it should work fine. there is no reason to alter the index.php under webroot. (unless doing an advanced installation

Re: Serialization of 'Closure' is not allowed

2012-05-19 Thread Devario Johnson
Jimit, you should really just open your own question instead of asking the same question over and over on other people's queries. You should get alot better responses that way, and it helps for others who may be searching for similar answers in the future On Saturday, May 19, 2012 3:56:12 AM U

Facebook php SDK and facebook iframe issues

2011-08-22 Thread Devario Johnson
Hi all, my UI developer and I are interested to know if anyone has come across an issue within the framework (making a facebook app under the facebook php sdk + cake) where iframe apps has rather unstable results when it comes to showing scrollbars. We have everything set to fluid, and he is us

Re: Hashed password displaying

2011-01-22 Thread Devario Johnson
personally I think u should just blank out the password field from the view so that the hashed one is not shown. that would save you from hashing a hash... -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask

Re: Design templates

2011-01-22 Thread Devario Johnson
lol -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com Fo

Re: Thinking about using Cake PHP to develop some sites

2011-01-22 Thread Devario Johnson
Cake is a great framework and it is very scalable. May not be the best option for EVERY site, but it can get everything done within reason. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and h

Re: Creating a Preview page

2011-01-22 Thread Devario Johnson
very nice -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.

Re: CakePHP 1.3.7 released

2011-01-22 Thread Devario Johnson
looking forward to it -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@g

Re: Querying the database in a view

2011-01-22 Thread Devario Johnson
I agree with Clear -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to cake-php+unsubscr...@goog

Re: Paginate HABTM results ?

2011-01-21 Thread Devario Johnson
look up $recursive in the cookbook. it should tell you alot about that. Also, once you have looked that up you should be able to paginate with the basic $this->paginate('Model' array('field conditions')); -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org C

Re: different pagination across views (not controllers)

2011-01-11 Thread Devario Johnson
#x27;YourModel', array('yourColumn' => 'condition')); On Jan 11, 11:07 am, Devario Johnson wrote: > Hi, im sure this is a simple question but i can't find any docs > related to this... > > I have multiple views coming from one controller (as normal) > >

Re: Clueless...Help please

2011-01-11 Thread Devario Johnson
that error usually happens when a call to a find query (in this case a paginate query) is written wrong. That seems like an app error not hosting. On Jan 11, 9:07 am, AD7six wrote: > On Jan 11, 3:37 pm, Ryan Schmidt wrote: > > > On Jan 11, 2011, at 07:10, javier0051 wrote: > > > Code | Context

different pagination across views (not controllers)

2011-01-11 Thread Devario Johnson
Hi, im sure this is a simple question but i can't find any docs related to this... I have multiple views coming from one controller (as normal) I would like to paginate them differently in each view. say view a, b, and c, are paginated ASC and view d, and e, are paginated DESC I have in my cont

Re: header information in outlook

2011-01-06 Thread Devario Johnson
information except reply to: since I am only sending a plain text email this worked fine for me. On Jan 4, 5:02 pm, cricket wrote: > On Mon, Jan 3, 2011 at 2:27 PM, Devario Johnson wrote: > > Hi Bakers. > > > I am developing an application using the core email component, and > &g

header information in outlook

2011-01-04 Thread Devario Johnson
Hi Bakers. I am developing an application using the core email component, and when i send emails to regular mail like gmail it is fine, but when I send them to Outlook, all of the header information is displayed...how do i stop this from happening in outlook? Thanks! Check out the new CakePHP Qu