Re: got an error when running cakephp, after intallation.

2010-06-18 Thread cricket
On Jun 18, 2:41 pm, Abrão Ximenes  wrote:
>
> how to change the following value?
> Configure::write('Security.cipherSeed', '76859309657453542496749683645');
>

Just to add to Jonathon's reply, the cipher seed comes with a default
value. Because it's a default, you really should change it to
something else. It can be any string at all. The simplest thing to do
would be to change several of the digits to something else.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: got an error when running cakephp, after intallation.

2010-06-18 Thread Jonathon Musters
Open the file in the location on that line number and change it.
Being your first working I would suggest the blog tut as a guide as it
handles all these things as well

On 6/18/10, Abrão Ximenes  wrote:
> Hello, i have install cakephp on ubuntu 10.04, but when I tried to run it,
> there was a warning as the following:
>
> *Notice* (1024) : Please change the value of
> 'Security.cipherSeed' in app/config/core.php to a numeric (digits
> only) seed value specific to your application
> [*CORE/cake/libs/debugger.php*, line *688*]
>
>
> how to change the following value?
> Configure::write('Security.cipherSeed', '76859309657453542496749683645');
>
> Thanks
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


got an error when running cakephp, after intallation.

2010-06-18 Thread Abrão Ximenes
Hello, i have install cakephp on ubuntu 10.04, but when I tried to run it,
there was a warning as the following:

*Notice* (1024) : Please change the value of
'Security.cipherSeed' in app/config/core.php to a numeric (digits
only) seed value specific to your application
[*CORE/cake/libs/debugger.php*, line *688*]


how to change the following value?
Configure::write('Security.cipherSeed', '76859309657453542496749683645');

Thanks

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: Error when running cakephp

2010-06-16 Thread Jeremy Burns | Class Outfit
The errors you are seeing are part of the basic Cake set up process. The 
cipherSeed and salt values should be unique to you - so change the defaults to 
something else. It doesn't really matter what you change it to as they are 
random strings. I'd recommend keeping them the same length as the default. You 
could just change a few characters. The important thing is that once you start 
using them you can't change them - they are used to encrypt and decrypt 
passwords, for example. See 
http://book.cakephp.org/view/931/CakePHP-Core-Configuration-Variables for more 
details.

Jeremy Burns
Class Outfit

jeremybu...@classoutfit.com
http://www.classoutfit.com

On 16 Jun 2010, at 14:07, Abrão Ximenes wrote:

> I got a new problem as the following: 
> Please change the value of 'Security.cipherSeed' in app/config/core.php to a 
> numeric (digits only) seed value specific to your application 
> [CORE/cake/libs/debugger.php, line 688]
> How to change the following line ( in var/www/cakephp/app/config/core.php):
> 
> Configure::write('Security.cipherSeed', '76859309657453542496749683645');
> 
> Thanks
> 
> 
> On Wed, Jun 16, 2010 at 4:48 PM, arif hossen  wrote:
> Dear,
> 
> Change your security salt value:
> Give some value in security salt as your wish.
> 
> 
> Configure::write('Security.
> salt', 'abcxyzfIxfs2guVo');
> 
> 
> 
> 
> On Wed, Jun 16, 2010 at 4:30 PM, John Andersen  
> wrote:
> Check that you have not deleted the quotes around your constants!!!
> Your code should contain something similar as this:
> 
> [code]
> Configure::write('Security.salt',
> 'UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo');
> [/code]
> 
> Enjoy,
>   John
> 
> On Jun 16, 12:12 pm, Abrão Ximenes  wrote:
> > How to fix the following problems? :
> >
> > *Notice* (8) : Use of undefined constant
> > ‘Security - assumed '‘Security' [*APP/config/core.php*, line *203*]
> >
> > *Notice* (8) : Use of undefined constant salt’ -
> > assumed 'salt’' [*APP/config/core.php*, line *203*]
> >
> > *Notice* (8) : Use of undefined constant
> > ‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’ - assumed
> > '‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’' [*APP/config/core.php*,
> > line *203*]
> >
> > *Notice* (1024) : Please change the value of
> > 'Security.cipherSeed' in app/config/core.php to a numeric (digits
> > only) seed value specific to your application
> > [*CORE/cake/libs/debugger.php*, line *688*]
> >
> > Thanks
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en
> 
> 
> 
> -- 
> Regards,
> Mohammad Arif Hossen
> Software Enginner at
> Epsilon Consulting and Development Services(ECDS)
> www.ecds-tech.com
> www.arifhossen.wordpress.com
> +88 01714355911 
> 
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
>  
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en
> 
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
>  
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: Error when running cakephp

2010-06-16 Thread Abrão Ximenes
I got a new problem as the following:

Please change the value of 'Security.cipherSeed' in
app/config/core.php to a numeric (digits only) seed value specific to
your application [*CORE/cake/libs/debugger.php*, line *688*]

How to change the following line ( in var/www/cakephp/app/config/core.php):

Configure::write('Security.cipherSeed', '76859309657453542496749683645');

Thanks


On Wed, Jun 16, 2010 at 4:48 PM, arif hossen wrote:

> Dear,
>
> Change your security salt value:
> Give some value in security salt as your wish.
>
>
> Configure::write('Security.
> salt', 'abcxyzfIxfs2guVo');
>
>
>
>
> On Wed, Jun 16, 2010 at 4:30 PM, John Andersen wrote:
>
>> Check that you have not deleted the quotes around your constants!!!
>> Your code should contain something similar as this:
>>
>> [code]
>> Configure::write('Security.salt',
>> 'UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo');
>> [/code]
>>
>> Enjoy,
>>   John
>>
>> On Jun 16, 12:12 pm, Abrão Ximenes  wrote:
>> > How to fix the following problems? :
>> >
>> > *Notice* (8) : Use of undefined constant
>> > ‘Security - assumed '‘Security' [*APP/config/core.php*, line *203*]
>> >
>> > *Notice* (8) : Use of undefined constant salt’ -
>> > assumed 'salt’' [*APP/config/core.php*, line *203*]
>> >
>> > *Notice* (8) : Use of undefined constant
>> > ‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’ - assumed
>> > '‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’' [*APP/config/core.php*,
>> > line *203*]
>> >
>> > *Notice* (1024) : Please change the value of
>> > 'Security.cipherSeed' in app/config/core.php to a numeric (digits
>> > only) seed value specific to your application
>> > [*CORE/cake/libs/debugger.php*, line *688*]
>> >
>> > Thanks
>>
>> Check out the new CakePHP Questions site http://cakeqs.org and help
>> others with their CakePHP related questions.
>>
>> You received this message because you are subscribed to the Google Groups
>> "CakePHP" group.
>> To post to this group, send email to cake-php@googlegroups.com
>> To unsubscribe from this group, send email to
>> cake-php+unsubscr...@googlegroups.comFor
>>  more options, visit this group at
>> http://groups.google.com/group/cake-php?hl=en
>>
>
>
>
> --
> Regards,
> Mohammad Arif Hossen
> Software Enginner at
> Epsilon Consulting and Development Services(ECDS)
> www.ecds-tech.com
> www.arifhossen.wordpress.com
> +88 01714355911
>
>  Check out the new CakePHP Questions site http://cakeqs.org and help
> others with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: Error when running cakephp

2010-06-16 Thread arif hossen
Dear,

Change your security salt value:
Give some value in security salt as your wish.


Configure::write('Security.
salt', 'abcxyzfIxfs2guVo');




On Wed, Jun 16, 2010 at 4:30 PM, John Andersen wrote:

> Check that you have not deleted the quotes around your constants!!!
> Your code should contain something similar as this:
>
> [code]
> Configure::write('Security.salt',
> 'UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo');
> [/code]
>
> Enjoy,
>   John
>
> On Jun 16, 12:12 pm, Abrão Ximenes  wrote:
> > How to fix the following problems? :
> >
> > *Notice* (8) : Use of undefined constant
> > ‘Security - assumed '‘Security' [*APP/config/core.php*, line *203*]
> >
> > *Notice* (8) : Use of undefined constant salt’ -
> > assumed 'salt’' [*APP/config/core.php*, line *203*]
> >
> > *Notice* (8) : Use of undefined constant
> > ‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’ - assumed
> > '‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’' [*APP/config/core.php*,
> > line *203*]
> >
> > *Notice* (1024) : Please change the value of
> > 'Security.cipherSeed' in app/config/core.php to a numeric (digits
> > only) seed value specific to your application
> > [*CORE/cake/libs/debugger.php*, line *688*]
> >
> > Thanks
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>



-- 
Regards,
Mohammad Arif Hossen
Software Enginner at
Epsilon Consulting and Development Services(ECDS)
www.ecds-tech.com
www.arifhossen.wordpress.com
+88 01714355911

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: Error when running cakephp

2010-06-16 Thread John Andersen
Check that you have not deleted the quotes around your constants!!!
Your code should contain something similar as this:

[code]
Configure::write('Security.salt',
'UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo');
[/code]

Enjoy,
   John

On Jun 16, 12:12 pm, Abrão Ximenes  wrote:
> How to fix the following problems? :
>
> *Notice* (8) : Use of undefined constant
> ‘Security - assumed '‘Security' [*APP/config/core.php*, line *203*]
>
> *Notice* (8) : Use of undefined constant salt’ -
> assumed 'salt’' [*APP/config/core.php*, line *203*]
>
> *Notice* (8) : Use of undefined constant
> ‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’ - assumed
> '‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’' [*APP/config/core.php*,
> line *203*]
>
> *Notice* (1024) : Please change the value of
> 'Security.cipherSeed' in app/config/core.php to a numeric (digits
> only) seed value specific to your application
> [*CORE/cake/libs/debugger.php*, line *688*]
>
> Thanks

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Error when running cakephp

2010-06-16 Thread Abrão Ximenes
How to fix the following problems? :

*Notice* (8) : Use of undefined constant
‘Security - assumed '‘Security' [*APP/config/core.php*, line *203*]

*Notice* (8) : Use of undefined constant salt’ -
assumed 'salt’' [*APP/config/core.php*, line *203*]

*Notice* (8) : Use of undefined constant
‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’ - assumed
'‘UubWwvniR2G0FgaC9miDYhG93b0qyJfIxfs2guVo’' [*APP/config/core.php*,
line *203*]

*Notice* (1024) : Please change the value of
'Security.cipherSeed' in app/config/core.php to a numeric (digits
only) seed value specific to your application
[*CORE/cake/libs/debugger.php*, line *688*]


Thanks

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en