Re: cakephp cms with CCK Funcionality

2010-06-08 Thread calvin
I would suggest giving a text description of what the video is in,
both, this thread and your YouTube video description. You may also
want to record a new video where you narrate what you are doing
(perhaps including a clear and audible intro at the start of the
video, explaining to viewers the purpose of the video). An explanation
of what "CCK" is would also be helpful.

On Jun 7, 7:38 pm, Toan Nguyen Dinh  wrote:
> i 'm still working. i hope get more tips from all members
>
> http://www.youtube.com/watch?v=j4JFlTNvDYM
>
> thanks
>
> kind regards

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


cakephp cms with CCK Funcionality

2010-06-08 Thread Toan Nguyen Dinh
i 'm still working. i hope get more tips from all members

http://www.youtube.com/watch?v=j4JFlTNvDYM

thanks

kind regards

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


How to incorporate site home page with custom cakephp cms

2010-01-19 Thread mklappen
I have created a fairly basic custom content management app using
CakePHP that allows me to enter information into my database through a
number of different web forms. (it's a gaming website that has game
info, reviews, etc...). The app is named 'CMS'.

I developed this mostly to learn the basics of CakePHP but now that I
have it working and have some data, I was wanting to hook it up to my
homepage design so it pulls in the data I've entered into the DB via
my CMS app, However I'm having some 2nd thoughts visualizing how this
should be set up.

Is it better to create a new cakephp app, building the home page and
other pages using the same tables I created/populated in my CMS app?
Or should I start coding my site design into an index.php file with
sql queries to pull content from DB (not using cakephp) and upload
that file to my web server root?

Any tips/recommendations are greatly appreciated,

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: Cakephp CMS - - how to prevent html in comment spam?

2009-11-15 Thread Hiero
Just a tip: For my my CakePHP blog I implemented Debuggable's Akismet
behavior/datasource and it's done an excellent job nabbing comment
spam without the need for captchas.

http://debuggable.com/posts/akismet-datasource:48bbe6f0-b7c0-47e5-8337-15624834cda3

On Nov 14, 1:44 pm, thankyou  wrote:
> I have a CMS in cakephp.  I'm starting to get significant comment spam
> for nude pictures, etc.  The posters are entering HTML, which is
> showing links to their websites.  I want to only allow text and no
> links, html, etc..
>
> Is there an easy way to do this (I'm new to CakePHP)?
>
> Thank you :)

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread euromark (munich)
the probably easiest way there is:

use h() for printing out the content of the comment
it will make all special characters useless

by the way:
use a captcha behaviour for those bots
and you should be fine

i even experimented with passive captchas
not visible to the user and therefore not annoying
but very effective against bots!


On 15 Nov., 00:56, Miles J  wrote:
> Well then thats your fault for allowing HTML. Either strip the HTML
> completely or use a BB code system.
>
> http://www.milesj.me/resources/script/decoda
>
> On Nov 14, 3:00 pm, David Roda  wrote:
>
> > can they post php tags too?
>
> > I would be very scared of something like 
>
> > On Sat, Nov 14, 2009 at 4:55 PM, thankyou  wrote:
> > > I do currently use captcha but its obviously not sufficient.  People
> > > can still post 
> > > On Nov 14, 4:00 pm, Miles J  wrote:
> > > > It seems your not doing any validation or filtering, thats a problem
> > > > with your app, not the spam. Try adding a captcha or a spam blocker.
>
> > > >http://www.milesj.me/resources/script/commentia-behavior
>
> > > > On Nov 14, 12:31 pm, LancerForHire  wrote:
>
> > > > > If they are able to post raw html to show nude pictures I can only
> > > > > imagine what else they can do :(
>
> > > --
>
> > > You received this message because you are subscribed to the Google Groups
> > > "CakePHP" group.
> > > To post to this group, send email to cake-...@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=.

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread Miles J
Well then thats your fault for allowing HTML. Either strip the HTML
completely or use a BB code system.

http://www.milesj.me/resources/script/decoda

On Nov 14, 3:00 pm, David Roda  wrote:
> can they post php tags too?
>
> I would be very scared of something like 
>
> On Sat, Nov 14, 2009 at 4:55 PM, thankyou  wrote:
> > I do currently use captcha but its obviously not sufficient.  People
> > can still post 
> > On Nov 14, 4:00 pm, Miles J  wrote:
> > > It seems your not doing any validation or filtering, thats a problem
> > > with your app, not the spam. Try adding a captcha or a spam blocker.
>
> > >http://www.milesj.me/resources/script/commentia-behavior
>
> > > On Nov 14, 12:31 pm, LancerForHire  wrote:
>
> > > > If they are able to post raw html to show nude pictures I can only
> > > > imagine what else they can do :(
>
> > --
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-...@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=.

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread David Roda
can they post php tags too?

I would be very scared of something like 

On Sat, Nov 14, 2009 at 4:55 PM, thankyou  wrote:

> I do currently use captcha but its obviously not sufficient.  People
> can still post 
> On Nov 14, 4:00 pm, Miles J  wrote:
> > It seems your not doing any validation or filtering, thats a problem
> > with your app, not the spam. Try adding a captcha or a spam blocker.
> >
> > http://www.milesj.me/resources/script/commentia-behavior
> >
> > On Nov 14, 12:31 pm, LancerForHire  wrote:
> >
> > > If they are able to post raw html to show nude pictures I can only
> > > imagine what else they can do :(
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-...@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=.
>
>
>

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread thankyou
I do currently use captcha but its obviously not sufficient.  People
can still post  wrote:
> It seems your not doing any validation or filtering, thats a problem
> with your app, not the spam. Try adding a captcha or a spam blocker.
>
> http://www.milesj.me/resources/script/commentia-behavior
>
> On Nov 14, 12:31 pm, LancerForHire  wrote:
>
> > If they are able to post raw html to show nude pictures I can only
> > imagine what else they can do :(

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread Miles J
It seems your not doing any validation or filtering, thats a problem
with your app, not the spam. Try adding a captcha or a spam blocker.

http://www.milesj.me/resources/script/commentia-behavior

On Nov 14, 12:31 pm, LancerForHire  wrote:
> If they are able to post raw html to show nude pictures I can only
> imagine what else they can do :(

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread LancerForHire
If they are able to post raw html to show nude pictures I can only
imagine what else they can do :(

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread Sam Sherlock
and of course strip_tags
- S




2009/11/14 Sam Sherlock 

> Wildflower use an akismet component for this
>
> I think that Croogo uses a simular comp too
>
> not automatically adding comments makes sense
>
> - S
>
>
> 2009/11/14 thankyou 
>
> I have a CMS in cakephp.  I'm starting to get significant comment spam
>> for nude pictures, etc.  The posters are entering HTML, which is
>> showing links to their websites.  I want to only allow text and no
>> links, html, etc..
>>
>> Is there an easy way to do this (I'm new to CakePHP)?
>>
>> Thank you :)
>>
>> --
>>
>> You received this message because you are subscribed to the Google Groups
>> "CakePHP" group.
>> To post to this group, send email to cake-...@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=.
>>
>>
>>
>

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread Sam Sherlock
Wildflower use an akismet component for this

I think that Croogo uses a simular comp too

not automatically adding comments makes sense

- S


2009/11/14 thankyou 

> I have a CMS in cakephp.  I'm starting to get significant comment spam
> for nude pictures, etc.  The posters are entering HTML, which is
> showing links to their websites.  I want to only allow text and no
> links, html, etc..
>
> Is there an easy way to do this (I'm new to CakePHP)?
>
> Thank you :)
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-...@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=.
>
>
>

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread thankyou
I have a CMS in cakephp.  I'm starting to get significant comment spam
for nude pictures, etc.  The posters are entering HTML, which is
showing links to their websites.  I want to only allow text and no
links, html, etc..

Is there an easy way to do this (I'm new to CakePHP)?

Thank you :)

--

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-...@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=.




Re: cakePHP CMS

2008-10-21 Thread mbavio

On Oct 20, 4:53 pm, Predominant <[EMAIL PROTECTED]> wrote:
> Hi Waqar Aziz,
>
> Its a shame we get idiots responding on the list and not helping.

Wow, mate, chillout! You seriously need to turn off your computer and
go visit your gf!

Cheers,
mbavio
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: cakePHP CMS

2008-10-20 Thread Gonzalo Servat
On Mon, Oct 20, 2008 at 5:53 PM, Predominant <[EMAIL PROTECTED]> wrote:

>
> Hi Waqar Aziz,
>
> Its a shame we get idiots responding on the list and not helping.
>
> Take a look at Wildflower. Thats the only one that I am currently
> aware of, and its got some great features.
> Wildflower CMS: http://wf.klevo.sk/
>

I don't recall insulting anyone. Any reason why you feel you have the right
to?

Just for the record, had Waqar asked his question differently showing he
made at least some attempt to do a little research of his own, or at least
pointed out what features he is looking for, he would have probably received
normal responses.

What you're doing is basically feeding the bad habit that people like Waqar
have that resort to the mailing list as the first resource when looking for
answers.

- Gonzalo

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: cakePHP CMS

2008-10-20 Thread Samuel DeVore

On Mon, Oct 20, 2008 at 12:53 PM, Predominant <[EMAIL PROTECTED]> wrote:
>
> Hi Waqar Aziz,
>
> Its a shame we get idiots responding on the list and not helping.


That may be true but 5 min in google or in google groups would result
in the answer as well





>
> Take a look at Wildflower. Thats the only one that I am currently
> aware of, and its got some great features.
> Wildflower CMS: http://wf.klevo.sk/
>
> Best of luck.
>
> Cheers,
> Predominant
>
>
> On Oct 21, 1:25 am, "Samuel DeVore" <[EMAIL PROTECTED]> wrote:
>> Oh man me too, thanks for sharing
>> --
>> (the old fart) the advice is free, the lack of crankiness will cost you
>>
>> - its a fine line between a real question and an idiot
>>
>> http://blog.samdevore.com/archives/2007/03/05/when-open-source-bugs-me/http://blog.samdevore.com/cakephp-pages/my-cake-wont-bake/http://blog.samdevore.com/cakephp-pages/i-cant-bake/
>>
>> On Mon, Oct 20, 2008 at 7:18 AM, Gonzalo Servat <[EMAIL PROTECTED]> wrote:
>> > On Mon, Oct 20, 2008 at 11:46 AM, WAQAR AZIZ <[EMAIL PROTECTED]>
>> > wrote:
>>
>> >> I want a well-developed CMS , that fully supports cakePHP 1.1 / 1.2
>>
>> > That's nice.
>>
>> > - Gonzalo
> >
>

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: cakePHP CMS

2008-10-20 Thread Predominant

Hi Waqar Aziz,

Its a shame we get idiots responding on the list and not helping.

Take a look at Wildflower. Thats the only one that I am currently
aware of, and its got some great features.
Wildflower CMS: http://wf.klevo.sk/

Best of luck.

Cheers,
Predominant


On Oct 21, 1:25 am, "Samuel DeVore" <[EMAIL PROTECTED]> wrote:
> Oh man me too, thanks for sharing
> --
> (the old fart) the advice is free, the lack of crankiness will cost you
>
> - its a fine line between a real question and an idiot
>
> http://blog.samdevore.com/archives/2007/03/05/when-open-source-bugs-me/http://blog.samdevore.com/cakephp-pages/my-cake-wont-bake/http://blog.samdevore.com/cakephp-pages/i-cant-bake/
>
> On Mon, Oct 20, 2008 at 7:18 AM, Gonzalo Servat <[EMAIL PROTECTED]> wrote:
> > On Mon, Oct 20, 2008 at 11:46 AM, WAQAR AZIZ <[EMAIL PROTECTED]>
> > wrote:
>
> >> I want a well-developed CMS , that fully supports cakePHP 1.1 / 1.2
>
> > That's nice.
>
> > - Gonzalo
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: cakePHP CMS

2008-10-20 Thread Samuel DeVore

Oh man me too, thanks for sharing
-- 
(the old fart) the advice is free, the lack of crankiness will cost you

- its a fine line between a real question and an idiot

http://blog.samdevore.com/archives/2007/03/05/when-open-source-bugs-me/
http://blog.samdevore.com/cakephp-pages/my-cake-wont-bake/
http://blog.samdevore.com/cakephp-pages/i-cant-bake/



On Mon, Oct 20, 2008 at 7:18 AM, Gonzalo Servat <[EMAIL PROTECTED]> wrote:
> On Mon, Oct 20, 2008 at 11:46 AM, WAQAR AZIZ <[EMAIL PROTECTED]>
> wrote:
>>
>> I want a well-developed CMS , that fully supports cakePHP 1.1 / 1.2
>
> That's nice.
>
> - Gonzalo
> >
>

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: cakePHP CMS

2008-10-20 Thread Gonzalo Servat
On Mon, Oct 20, 2008 at 11:46 AM, WAQAR AZIZ <[EMAIL PROTECTED]>wrote:

>
> I want a well-developed CMS , that fully supports cakePHP 1.1 / 1.2
>

That's nice.

- Gonzalo

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



cakePHP CMS

2008-10-20 Thread WAQAR AZIZ

I want a well-developed CMS , that fully supports cakePHP 1.1 / 1.2

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



CakePHP CMS

2008-10-17 Thread gemmes

Hi All,


Intending to build a small CMS for my own site.I have heard of
WildFlower CMS. Can anyone reccommend it or others?

Im new to using CakePHP and a CMS that is simple and easy to use would
be great.

many thanks


gemmes

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CakePHP CMS

2007-02-17 Thread Matt Adams

rhet wrote:

> Does anyone know of any good CMS for cake? I would like the
> application to be a plugin.

If you want a CMS, go and find a project that is serious about a CMS and 
use it.  Drupal, Typo3 (which I think is horrid, but it's been around 
for a while and quite popular in Europe, or so I read) if you must use PHP.

I doubt you'll see something with the community support of Drupal come 
from Cake any time soon.  So either create it yourself (which is quite a 
bit of work) or just move on.  There are a lot of other CMS products for 
PHP but a good number of them are half-baked and quite useless in the 
long run.


Just my two cents,

Matt
-- 
BASIC: A programming language.  Related to certain social diseases
in that those who have it will not admit it in polite company.

--~--~-~--~~~---~--~~
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: CakePHP CMS

2007-02-14 Thread [EMAIL PROTECTED]

I'm currently working on a CMS with cakebut probably not a very
large scale one. At least initially.
It will simply be for smaller sites.

One feature will be integration with Flash actually and that's already
setupin other words you can manage the content of a site both the
HTML content and all the text/images within Flash.

A series of technologies/scripts/languages/methods have been used to
create this. The CMS will never be free, it's work for my company, but
may be sold in the future. That is, at least, when it's done.

I think most people can get away using a CMS out there. There are
already so many good ones, it's almost useless to go and make a new
one...unless you have a very specific need and at that point, you'll
probably be one of the only users of your CMS.

What I do want to work on though (whenever I get the chance) is a
CakePHP version of Basecamp because I have some very strong ideas for
improvement there. Basecamp has been really successful but I think it
was more or less a demo for RoR and not a meant as a very strong and
useful application that meets the needs of it's usersin other
words it falls short in too many areas and there's nothing being done
about it.

Anyway, I'm always looking, I hope someone else out there does create
a large scale CMS with CakePHP --- I think it would be very good. The
MVC model is great and even Joomla is changing to one.

-Tom

On Feb 14, 8:49 am, "Samuel DeVore" <[EMAIL PROTECTED]> wrote:
> Also it seems that everyone and their brother seems to think that it
> is a good idea to open a new project in CakeForge that is a CMS.  It
> would be great to have a CMS but I think so much of what a CMS needs
> to be is either way to general for a simple example or it is so
> targeted that it is hard to generalize into a useful project.  Of
> course I am probably wrong, I am old and grumpy after all.
>
> On 2/13/07, sumanpaul <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > OceanCMS is almost dead.
>
> > On Feb 13, 9:18 pm, "fr3nch13" <[EMAIL PROTECTED]> wrote:
> > > the only one i know of is OceanCMS and it's still in alpha:
>
> > >http://cakeforge.org/projects/ocean-cms/
>
> > > On Feb 13, 10:11 am, "rhet" <[EMAIL PROTECTED]> wrote:
>
> > > > Does anyone know of any good CMS for cake? I would like the
> > > > application to be a plugin.
>
> --
> ==
> S. DeVore
> (the old fart) the advice is free, the lack of crankiness will cost you
>
> - its a fine line between a real question and an idiot


--~--~-~--~~~---~--~~
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: CakePHP CMS

2007-02-14 Thread Samuel DeVore

Also it seems that everyone and their brother seems to think that it
is a good idea to open a new project in CakeForge that is a CMS.  It
would be great to have a CMS but I think so much of what a CMS needs
to be is either way to general for a simple example or it is so
targeted that it is hard to generalize into a useful project.  Of
course I am probably wrong, I am old and grumpy after all.

On 2/13/07, sumanpaul <[EMAIL PROTECTED]> wrote:
>
> OceanCMS is almost dead.
>
>
> On Feb 13, 9:18 pm, "fr3nch13" <[EMAIL PROTECTED]> wrote:
> > the only one i know of is OceanCMS and it's still in alpha:
> >
> > http://cakeforge.org/projects/ocean-cms/
> >
> > On Feb 13, 10:11 am, "rhet" <[EMAIL PROTECTED]> wrote:
> >
> > > Does anyone know of any good CMS for cake? I would like the
> > > application to be a plugin.
>
>
> >
>


-- 
==
S. DeVore
(the old fart) the advice is free, the lack of crankiness will cost you

- its a fine line between a real question and an idiot

--~--~-~--~~~---~--~~
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: CakePHP CMS

2007-02-13 Thread sumanpaul

OceanCMS is almost dead.


On Feb 13, 9:18 pm, "fr3nch13" <[EMAIL PROTECTED]> wrote:
> the only one i know of is OceanCMS and it's still in alpha:
>
> http://cakeforge.org/projects/ocean-cms/
>
> On Feb 13, 10:11 am, "rhet" <[EMAIL PROTECTED]> wrote:
>
> > Does anyone know of any good CMS for cake? I would like the
> > application to be a plugin.


--~--~-~--~~~---~--~~
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: CakePHP CMS

2007-02-13 Thread fr3nch13

the only one i know of is OceanCMS and it's still in alpha:

http://cakeforge.org/projects/ocean-cms/

On Feb 13, 10:11 am, "rhet" <[EMAIL PROTECTED]> wrote:
> Does anyone know of any good CMS for cake? I would like the
> application to be a plugin.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



CakePHP CMS

2007-02-13 Thread rhet

Does anyone know of any good CMS for cake? I would like the
application to be a plugin.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---