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');

 To:

 $cakeCache = array('File', array(
 'dir' = dirname(dirname(__FILE__)) . DS . 'tmp',
 'prefix' = 'cakecache_',
 'lock' = false
 ));

 -MI

 ---

 Remember, smart coders answer ten questions for every question they ask.
 So be smart, be cool, and share your knowledge.

 BAKE ON!

 blog:http://www.MarianoIglesias.com.ar

 -Mensaje original-
 De: cake-php@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre
 de Changoso
 Enviado el: Domingo, 13 de Mayo de 2007 06:03 p.m.
 Para: Cake PHP
 Asunto: Help for newbies

 Your cache is NOT working.
 Edit: config/core.php to insure you have the newset version of this
 file and the variable $cakeCache set properly


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



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.org requesting the spelling
mistake be fixed? Check!

Go and post the bug at trac and I promise that *I* will personally
accept the ticket and make sure it gets fixed.

If you can't be bothered to file a ticket, then I wonder if I (or
anyone else) should fix it.  Yes, it seems petty but pettiness is at
the heart of making sure any open source project stays on trac (hah, I
made a pun!) and problems get fixed.

Posting code patches and stuff in the mailing list is nice and
everything...but they are ignored by the core developers unless there
is a ticket entered for it.


-- 
Chris Hartjes
Senior Developer
Cake Development Corporation

My motto for 2007:  Just build it, damnit!

@TheBallpark - http://www.littlehart.net/attheballpark
@TheKeyboard - http://www.littlehart.net/atthekeyboard

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



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: config/core.php to insure you have the newset version of this
file and the variable $cakeCache set properly

is there something else I should change?

On May 13, 4:17 pm, Mariano Iglesias [EMAIL PROTECTED]
wrote:
 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

 ---

 Remember, smart coders answer ten questions for every question they ask.
 So be smart, be cool, and share your knowledge.

 BAKE ON!

 blog:http://www.MarianoIglesias.com.ar

 -Mensaje original-
 De: cake-php@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre
 de Changoso
 Enviado el: Domingo, 13 de Mayo de 2007 06:03 p.m.
 Para: Cake PHP
 Asunto: Help for newbies

 Your cache is NOT working.
 Edit: config/core.php to insure you have the newset version of this
 file and the variable $cakeCache set properly


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



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 this is the first time I am trying to use Cake... I have seen the
 power of Cake and am trying to use it on my own.. but am having some
 problems using it.

 I downloaded Cake 1.2.x.x from the SVN, I moddified the default
 database but I am having some problems.

   Your tmp directory is writable.

 Your cache is NOT working.
 Edit: config/core.php to insure you have the newset version of this
 file and the variable $cakeCache set properly

 Your database configuration file is present.

 Cake is able to connect to the database.
 Release Notes for CakePHP 1.2.0.4986alpha.

 As you can see it tells me about my cache but I assume I have the
 newest version since I am using the SVN!

 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.

 I this the right place to post this? or where could I get more help
 for my problem?!

 Thanx


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



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

---

Remember, smart coders answer ten questions for every question they ask. 
So be smart, be cool, and share your knowledge. 

BAKE ON!

blog: http://www.MarianoIglesias.com.ar


-Mensaje original-
De: cake-php@googlegroups.com [mailto:[EMAIL PROTECTED] En nombre
de Changoso
Enviado el: Domingo, 13 de Mayo de 2007 06:03 p.m.
Para: Cake PHP
Asunto: Help for newbies

Your cache is NOT working.
Edit: config/core.php to insure you have the newset version of this
file and the variable $cakeCache set properly


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



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: http://www.MarianoIglesias.com.ar


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Cake 
PHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---