Re: Research about frameworks

2013-05-15 Thread steve van christie
please take a look at : http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks best regards -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakeP

Re: Research about frameworks

2013-05-15 Thread Greg Skerman
I feel you are coming at this from the wrong angle.You should analyze your requirements and come up with the framework which best suits the problem you are trying to solve. Sometimes the answer will be "no framework at all", other times you may find something is needed but the likes of cakephp are

Re: Html helper generate invalid code: No space between attributes!

2013-05-15 Thread Salines
*Sorry, html helpers working correctly.* bugs make twitter bootstrap helper. Dana četvrtak, 16. svibnja 2013. 01:43:11 UTC+2, korisnik Salines napisao je: > > *Hello * > * > * > I noticed that htmlhelper generated errors and creates not valid html code. > > Html -> charset(); ?> > > generate:

Re: create has many link

2013-05-15 Thread steve van christie
i'm trying to create it, but still can't work as expected. *Controller/AppController.php* class AppController extends Controller { public function beforeFilter() { $this->Auth->allow('index'); $this->loadModel('Category'); $this->set('categories', $this->Category->find('

Html helper generate invalid code: No space between attributes!

2013-05-15 Thread Salines
*Hello * * * I noticed that htmlhelper generated errors and creates not valid html code. Html -> charset(); ?> generate: with missing quote // other errors generated by html helper http://validator.w3.org/check?uri=http%3A%2F%2Ffarm.ba%2F&charset=%28detect+automatically%29&doctype=Inline&gr

Form validation multiple model errors

2013-05-15 Thread raymond . vanrijs
Hi, Got a client update form with a lot of client data split over 2 DB tables (so 2 CakePHP models). My form named 'Client' have fields like: Bedrijfsnaam *

Research about frameworks

2013-05-15 Thread Fabio Schunig
Hello! I'm doing a research about frameworks for PHP. Currently, I'm researching the frameworks Zend, CakePHP, CodeIgniter, Yii and Symfony. I'm new in the subject, and I'm reading a lot of tutorials and manuals. The materials are good, and I could learn a lot of what these frameworks can do.

Re: CSS in CakeEmail

2013-05-15 Thread Joost de Keijzer
Your "site" css is probably not very suited for mail styling. Inline styles are what's most supported but difficult to manage. I use https://github.com/ndejong/CakephpEmogrifierPlugin to "convert" header

how to use include function in cakephp????

2013-05-15 Thread Sunil Kushwaha
-- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP" group. To unsubscribe from this group and stop receiving emails from it, send an email to cake-php+uns

Re: removing in Form->end closing, in cakephp 1.3

2013-05-15 Thread John Sposato
It's the VALUE property that you need to set to 'Search' if you want the button to say search. On Friday, May 10, 2013 8:52:39 PM UTC-4, Chris wrote: > > hi Andre,... thank you for your reply,... > > this: Form->end(array('text'=>'Search', 'div'=>false)); > ?> remove the ... > however value of

Re: Acl giving permissions on afterSave function of a Model?

2013-05-15 Thread Ciul
Hi again. I don't if this is the correct or best way to achieve it but, ok, here I go: *Following the Blog tutorial:* *public function afterSave($create) { * * * *$acoNode = array( 'Post' => array('id' => $this->data['Post']['id'])* *);* * * *$aroNode = array(* *'User' => array('id' => $this->d

Acl giving permissions on afterSave function of a Model?

2013-05-15 Thread Ciul
Hi there everyone. I'm starting to give my first steps with Acl and it's going well until now. Ok, now, I want to give permissions to some Acos after creating an Object that is an Aro. Example: Give permission to a User to update, delete a Post that he has just created. I wanted to use the aft