Re: Help for newbies

2007-07-12 Thread Chris Hartjes
On 7/12/07, BikePilgrim <[EMAIL PROTECTED]> wrote: > > And I'm sure I'm not the only one annoyed by this but it's "ensure" > and "newest". Can someone please fix that? > > Thanks Let's see... Open source project? Check! Ability to look at source code? Check! Ability to post bug at trac.cakephp.o

Re: Help for newbies

2007-07-12 Thread BikePilgrim
And I'm sure I'm not the only one annoyed by this but it's "ensure" and "newest". Can someone please fix that? Thanks On May 13, 2:17 pm, "Mariano Iglesias" <[EMAIL PROTECTED]> wrote: > This is a known issue. Try editing your app/config/core.php, and replace: > > $cakeCache = array('File'); > >

Re: Help for newbies

2007-05-14 Thread Changoso
Ok I changed my file as you are saying " $cakeCache = array('File'); To: $cakeCache = array('File', array( 'dir' => dirname(dirname(__FILE__)) . DS . 'tmp', 'prefix' => 'cakecache_', 'lock' => false )); " but I am still having the: " Your cache is NOT working. Edit: con

Re: Help for newbies

2007-05-14 Thread Changoso
I've fixed thw "The other problem is that I dont have that neat style that Cake usually gives.. it just shows me a white page but no style." what I did, it was a vhost and that way xammp doesnt mess with the root file. On May 13, 4:02 pm, Changoso <[EMAIL PROTECTED]> wrote: > Hello! > > well th

RE: Help for newbies

2007-05-13 Thread Mariano Iglesias
Or update to latest SVN, mainly: https://trac.cakephp.org/changeset/5078 -MI --- Remember, smart coders answer ten questions for every question they ask. So be smart, be cool, and share your knowledge. BAKE ON! blog: h

RE: Help for newbies

2007-05-13 Thread Mariano Iglesias
This is a known issue. Try editing your app/config/core.php, and replace: $cakeCache = array('File'); To: $cakeCache = array('File', array( 'dir' => dirname(dirname(__FILE__)) . DS . 'tmp', 'prefix' => 'cakecache_', 'lock' => false )); -MI -