Re: Cookies from CAKE and other branding

2010-07-03 Thread Vangel


On Jun 29, 8:38 pm, "Larry E. Masters aka PhpNut" 
wrote:
> Sounds like you are not using the proper settings in core.php to set the
> cookie name. Look @ the doc comments in the file they should explain how to
> do this.
>
> As for the "branding" override all of the templates from the core views,
> simple enough, and you can even create your own bake templates to use in all
> of your other projects so you are not "cleaning out" your installs every
> time.
>

thanks Larry.
 I have done most of the templating including those for emails. And
you are right I should have looked at the obvious place. I was using a
fresh svn checkoout and did not replace the config directory. I have
arranged a basic drop in template that I can copy over to apps and
begin working immediately. So I completely missed the config which I
dont usually replace but edit manually. I am not sure though that I
have overriden all the core templates for "branding".

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: Cookies from CAKE and other branding

2010-07-03 Thread Vangel
Thank you
did not expect the "it is free so take it or leave it " speech from
you.

my concern is security. but ofcourse who the heck cares, lets thrash
people.

thank for the help.

On Jun 29, 8:59 pm, AD7six  wrote:
> On Jun 29, 5:01 am,Vangel wrote:
>
> > I am quite sick of cake doing tons of branding everywhere. (emails,
> > cookies, css etc etc)
> >  Its starting to look like some other frameworks already.
>
> I'm a bit sick of wingy .. people complaining about something they
> obtained for free as if they're owed something. Is it really too much
> to ask for users to think a bit, do functional tests on their code and
> read the ample documentation? (que attempted witty retort regarding
> well that's open source philosophy etc.)
>
>
>
> > I have set cookies etc, but Cake still sets its own CAKEPHP cookie. I
> > absolutely do not want to give any indication to snoopers and sniffers
> > about what framework I am using. Anyone here has done any research
> > into cleaning out cakes footprints please post some notes.
>
> you only need to:
>  set the cookie name
>  if you use the email component - set the xMailer
>
> anything else whereby you could potentially come across the cakephp
> showing up in the source is a file you should be editing anyway - like
> email layouts, error messages and the default home page.
>
> > I will post a few clean ups I found. I think I will be putting
> > together a clean version of cake for all future projects. Cleaning it
> > out every time is a giant waste of time .
>
> the cleaning it out bit sounds like a giant waste of time.
>
>
>
> > This can be used a topic to discuss on how to remove the default
> > messages and other related branding so you are not caught unaware of
> > your clients receiving emails from EmailComponent signed by Cakephp
> > and similar things.
>
> You mean you use your clients for testing? do they get a discount for
> that?

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: Cookies from CAKE and other branding

2010-06-30 Thread designv...@gmail.com
> I'm a bit sick of wingy .. people complaining about something they
> obtained for free as if they're owed something. Is it really too much
> to ask for users to think a bit, do functional tests on their code and
> read the ample documentation? (que attempted witty retort regarding
> well that's open source philosophy etc.)

WELL SAID.

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: Cookies from CAKE and other branding

2010-06-29 Thread Shaz
... adding to the above, what's wrong with a little bit of CakePHP
branding?
Most clients I've had don't particularly care about the code as long
as it works, let alone know what a framework is

On Jun 29, 1:59 pm, AD7six  wrote:
> On Jun 29, 5:01 am, Vangel  wrote:
>
> > I am quite sick of cake doing tons of branding everywhere. (emails,
> > cookies, css etc etc)
> >  Its starting to look like some other frameworks already.
>
> I'm a bit sick of wingy .. people complaining about something they
> obtained for free as if they're owed something. Is it really too much
> to ask for users to think a bit, do functional tests on their code and
> read the ample documentation? (que attempted witty retort regarding
> well that's open source philosophy etc.)
>
>
>
> > I have set cookies etc, but Cake still sets its own CAKEPHP cookie. I
> > absolutely do not want to give any indication to snoopers and sniffers
> > about what framework I am using. Anyone here has done any research
> > into cleaning out cakes footprints please post some notes.
>
> you only need to:
>  set the cookie name
>  if you use the email component - set the xMailer
>
> anything else whereby you could potentially come across the cakephp
> showing up in the source is a file you should be editing anyway - like
> email layouts, error messages and the default home page.
>
> > I will post a few clean ups I found. I think I will be putting
> > together a clean version of cake for all future projects. Cleaning it
> > out every time is a giant waste of time .
>
> the cleaning it out bit sounds like a giant waste of time.
>
>
>
> > This can be used a topic to discuss on how to remove the default
> > messages and other related branding so you are not caught unaware of
> > your clients receiving emails from EmailComponent signed by Cakephp
> > and similar things.
>
> You mean you use your clients for testing? do they get a discount for
> that?

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: Cookies from CAKE and other branding

2010-06-29 Thread AD7six


On Jun 29, 5:01 am, Vangel  wrote:
> I am quite sick of cake doing tons of branding everywhere. (emails,
> cookies, css etc etc)
>  Its starting to look like some other frameworks already.

I'm a bit sick of wingy .. people complaining about something they
obtained for free as if they're owed something. Is it really too much
to ask for users to think a bit, do functional tests on their code and
read the ample documentation? (que attempted witty retort regarding
well that's open source philosophy etc.)

>
> I have set cookies etc, but Cake still sets its own CAKEPHP cookie. I
> absolutely do not want to give any indication to snoopers and sniffers
> about what framework I am using. Anyone here has done any research
> into cleaning out cakes footprints please post some notes.

you only need to:
 set the cookie name
 if you use the email component - set the xMailer

anything else whereby you could potentially come across the cakephp
showing up in the source is a file you should be editing anyway - like
email layouts, error messages and the default home page.

> I will post a few clean ups I found. I think I will be putting
> together a clean version of cake for all future projects. Cleaning it
> out every time is a giant waste of time .

the cleaning it out bit sounds like a giant waste of time.

>
> This can be used a topic to discuss on how to remove the default
> messages and other related branding so you are not caught unaware of
> your clients receiving emails from EmailComponent signed by Cakephp
> and similar things.

You mean you use your clients for testing? do they get a discount for
that?



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: Cookies from CAKE and other branding

2010-06-29 Thread Larry E. Masters aka PhpNut
Sounds like you are not using the proper settings in core.php to set the
cookie name. Look @ the doc comments in the file they should explain how to
do this.

As for the "branding" override all of the templates from the core views,
simple enough, and you can even create your own bake templates to use in all
of your other projects so you are not "cleaning out" your installs every
time.

-- 
/**
* @author Larry E. Masters
* @var string $userName
* @param string $realName
* @returns string aka PhpNut
* @access public
*/


On Mon, Jun 28, 2010 at 10:01 PM, Vangel  wrote:

> I am quite sick of cake doing tons of branding everywhere. (emails,
> cookies, css etc etc)
>  Its starting to look like some other frameworks already.
>
> I have set cookies etc, but Cake still sets its own CAKEPHP cookie. I
> absolutely do not want to give any indication to snoopers and sniffers
> about what framework I am using. Anyone here has done any research
> into cleaning out cakes footprints please post some notes.
> I will post a few clean ups I found. I think I will be putting
> together a clean version of cake for all future projects. Cleaning it
> out every time is a giant waste of time .
>
> This can be used a topic to discuss on how to remove the default
> messages and other related branding so you are not caught unaware of
> your clients receiving emails from EmailComponent signed by Cakephp
> and similar things.
>
> 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


Cookies from CAKE and other branding

2010-06-29 Thread Vangel
I am quite sick of cake doing tons of branding everywhere. (emails,
cookies, css etc etc)
 Its starting to look like some other frameworks already.

I have set cookies etc, but Cake still sets its own CAKEPHP cookie. I
absolutely do not want to give any indication to snoopers and sniffers
about what framework I am using. Anyone here has done any research
into cleaning out cakes footprints please post some notes.
I will post a few clean ups I found. I think I will be putting
together a clean version of cake for all future projects. Cleaning it
out every time is a giant waste of time .

This can be used a topic to discuss on how to remove the default
messages and other related branding so you are not caught unaware of
your clients receiving emails from EmailComponent signed by Cakephp
and similar things.

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