Cake2 + AMF

2012-02-08 Thread Henrique Machado
2 and AMF? Thank you Att, Henrique Machado ITIL V3 Certified -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this

Re: help me

2011-01-19 Thread Henrique Machado
LOL Att, Henrique Machado TI Expert 2011/1/19 Zaky Katalan-Ezra : > I just love this post > http://slash7.com/2006/12/22/vampires/ > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http:

Re: Polymorphic BUG? find() in beforeSave()

2010-09-15 Thread Henrique Machado
'conditions' => array('Banner.class' => 'Line', 'Banner.type' => 'banner'), 'dependent' => true, ), 'Icon' => array( 'className' => 'Picture',

Re: Polymorphic BUG? find() in beforeSave()

2010-09-15 Thread Henrique Machado
Please somebody can help with it? I've provided all scenario, something wrong with my question? Att, Henrique Machado TI Expert 2010/9/15 Henrique Machado > Hello everybody! > > After a whole day trying to make my application work correctly, asking for > help on IRC an

Polymorphic BUG? find() in beforeSave()

2010-09-14 Thread Henrique Machado
updating both (Icon and Banner) .. But sometimes work.. looks random. It's the Behaviour? Or I'm missing something? Thanks in advance Att, Henrique Machado TI Expert Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You rec

User HABTM User/Firend (Social Network )

2010-07-02 Thread Henrique Machado
riend', 'joinTable' => 'users', 'foreignKey' => 'friend_id', ), 'User' => array( 'className'=> 'User', 'joinTable' => 'users',

Re: Data Validation not working

2010-03-18 Thread Henrique Machado
Linux is case sensitive, windows isn't At Linux, You can have at the same directory the files: inventory.php and Inventory.php Henrique Machado TI Expert 2010/3/19 SeeVik > Hello all > > Thanks for guiding me out of this problem. > > @ Dr. Loboto - Yes that was th

Re: Star Rating Help

2009-05-28 Thread Henrique Machado
Great work! Henrique Machado 2009/5/27 schneimi > > I read about some bakery criterias the plugin doesn't match (like > styles and tests), but you are right, I could give it a try anyway. > > You're welcome to use it. Btw I just put up a new version that also >

Re: Star Rating Help

2009-05-21 Thread Henrique Machado
I never saw a decent solution to the cake when it comes to star rating Henrique Machado 2009/5/21 Faza > > I'd start with removing DB connection related settings and replace all > querying to Cake functions - they all look like basic selects/inserts. > > Also you could di

Re: Poll: what do you hate about CakePHP?

2009-05-18 Thread Henrique Machado
What about create a true poll for it? First create a poll for all suggestions, after create a poll to vote on that suggestions and voilá =) Henrique Machado 2009/5/18 Aivaras > Hey, > > actually the most annoying thing is that we cannot download separate parts > of Cake. It woul

Re: Translate Behavior

2009-04-24 Thread Henrique Machado
Thank you! Is that =) Henrique Machado 2009/4/24 jitka (poLK) > > $label = __('Title', true); > echo $form->input('Post.title.cze', array('type' => 'text', 'label' => > $label . ' (cze)')); > echo

Translate Behavior

2009-04-24 Thread Henrique Machado
this test: http://www.mibbit.com/pb/pUw02l Ok, now i can understand a bit, but: If i'm adding a new record, like a post, how can i make title field an array? Is two forms? I'm lost.. ty Henrique Machado --~--~-~--~~~---~--~~ You received this mes

Re: New CakePHP book available.

2009-04-02 Thread Henrique Machado
I bought XD 2009/4/1 Ma'moon > Thats awesome, Thank you very much, and welcome back :-) > > On Wed, Apr 1, 2009 at 4:42 PM, GrumpyCanuck wrote: > >> >> I'm back! >> >> Some of you might remember me from my previous stint on the CakePHP >> mailing list, answering questions with my usual grumpy f

Re: Release: 1.2.2.8120

2009-03-19 Thread Henrique Machado
Great! Good Job! 2009/3/19 joshua > Many thanks to CakePHP team's work! > > On Fri, Mar 20, 2009 at 6:25 AM, Gwoo wrote: > >> >> CakePHP still rising! >> >> We are excited to announce the release of CakePHP 1.2.2.8120[1]. The >> latest stable release fixes several bugs including a security iss

Re: What do you develop in (ide, text editor, etc.)?

2009-03-02 Thread Henrique Machado
Notepad++ for everything 2009/3/2 Samuel DeVore > > To be more serious then I really am feeling when reading the subject > line of this message. I am currently playing with using MacGDBp, > MacCallGrind and Textmate as my workspace > > http://www.bluestatic.org/software/macgdbp/ - connects with

Cakephp and Easyshare

2009-02-04 Thread Henrique Machado
Is easy share powered by cakephp? --~--~-~--~~~---~--~~ 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

Re: Which editor for Mac OS X?

2009-01-23 Thread Henrique Machado
Sorry about it 2009/1/23 leo > > Thanks, but neither of them are free. > > On Jan 23, 3:57 pm, Henrique Machado wrote: > > http://macromates.com/http://www.panic.com/coda/ > > > > 2009/1/23 leo > > > > > > > > > Having spen

Re: Which editor for Mac OS X?

2009-01-23 Thread Henrique Machado
http://macromates.com/ http://www.panic.com/coda/ 2009/1/23 leo > > Having spent months trying to find an adequate editor for Windows, I > eventually settled on Komodo. Now I'm working on a Mac and Komodo is > available, but version 5 is so slow it's unusable. I reverted to v4, > but while it is

How to count users login?

2009-01-21 Thread Henrique Machado
I need to provide an access count to my users Like "This is you 4 time here" I'm using the Auth component, my doubt is where put my $this->User->updateAll(array('User.access'=> 'User.access+1'), array('User.id' => $user['User']['id'])); I need to be sure that the user is logged successfull to i

Re: mercado cakephp (era- Re: abnormal flash)

2009-01-19 Thread Henrique Machado
mais um =) 2009/1/19 Marcelo Andrade > On Sun, Jan 18, 2009 at 1:03 PM, Delirium tremens > wrote: > > > > Existe mercado de trabalho para programador de CakePHP no Brasil??? > > Tenho que sair logo. > > Cara, essa é uma boa pergunta. Eu também sou muito entusiasmado > com o Cake e gostaria mui

Re: Beginner: Cake PHP and XAMPP (windows)

2009-01-15 Thread Henrique Machado
Or try Wamp that is ready to go 2009/1/15 Bernardo Vieira > > Xampp comes with mod_rewrite disabled by default. Edit > c:\xampp\apache\conf\httpd.conf, uncomment the LoadModule mod_rewrite > line, restart apache and you should be good do go. > > Celso wrote: > > Hello! I am new in cakephp, I am

Re: FlyUpload RFP Web Development Project, about $10k

2009-01-15 Thread Henrique Machado
http://cakephp.org/jobs 2009/1/14 khalid.j.sha...@gmail.com > > We are looking for a good team of developers to build out > www.flyupload.com. > > We are looking at products and services from > www.depositfiles.com > www.esnips.com > www.imagebam.com > > I know the last web site would take days

Re: "Nr. Affected Errors" Message after installing Cakephp

2009-01-14 Thread Henrique Machado
set debug = 0 at core.php 2009/1/14 dipeshsoftw...@gmail.com > > Hi, > > I am new to cakephp work and after installing cakephp I do get a > message > > Nr. ...Affected Errors > > for all my request. > > How can i disable/comment this message? > > Thanks! > > > > --~--~-~--~~

Re: Problem with text encoding

2009-01-10 Thread Henrique Machado
I'm using notepad++ too Always save your file in UTF-8 Without BOM in the status bar need to appear: Ansi as UTF-8 good luck 2009/1/10 brian > > It seems that you're running into the infamous UTF-8 byte-order mark > issue. I do all my work on Linux and am unfamiliar with Notepad++ so I > ca

Re: Points to bake a web 2.0 app

2009-01-08 Thread Henrique Machado
I reallycan't remember right now. > > Henrique Machado wrote: > > Hello everybody! > > > > I would like to hear you about my new project. > > > > Me and a friend (not a Baker or PHP programmer) want to build an > > application that looks a lot like th

Points to bake a web 2.0 app

2009-01-07 Thread Henrique Machado
Hello everybody! I would like to hear you about my new project. Me and a friend (not a Baker or PHP programmer) want to build an application that looks a lot like the youtube, but the video are tutorials and in their great majority are paid. The user seller will upload your video tutorial and se

Re: Bug in text->truncate()?

2008-12-09 Thread Henrique Machado
What returns? 2008/12/9 Günther Theilen <[EMAIL PROTECTED]> > > Hi, > > I have a problem with truncate() and German umlauts (äöü). > (The DB and the php code is in utf-8) > > $test = "xäx"; > debug ($text->truncate($test, 9)); > > I would expect it to return > xä... > but it returns

Re: Plugin Auto-install!

2008-11-21 Thread Henrique Machado
I'll look for it! Thank you 2008/11/20 Dr. Tarique Sani <[EMAIL PROTECTED]> > > On Wed, Nov 19, 2008 at 10:15 PM, Henrique Machado <[EMAIL PROTECTED]> > wrote: > > Hello Bakers! > > > > I'm thinking about create an custom CMS (for my purposes) w

Re: problem naming controller

2008-11-19 Thread Henrique Machado
Its nothing about inflectors? 2008/11/19, mchollan <[EMAIL PROTECTED]>: > > > Carlos, > > I see what you are saying, and I wrestled this for a short time on my > own. The reason I believe You get those errors when you use what you > believe is the correct naming convention is actually how you r

Plugin Auto-install!

2008-11-19 Thread Henrique Machado
Hello Bakers! I'm thinking about create an custom CMS (for my purposes) with cakephp. I need to do it more modular as possible. And more automatic-install as possible. Eg: "News plugin" Is right do an install.php to create tables for it? and relationships? I' m in the right way? Some ideas p

Re: How to get the category cover from a product table?

2008-08-19 Thread Henrique Machado
sage we'd say the opposite. But this is the way cake works > things. > > Now when you do your pagination and set $categories in the view: > > foreach ($categories as $cat) { > echo $cat['Category']['nome']; // Category title > echo $html->image($cat[&#

How to get the category cover from a product table?

2008-08-18 Thread Henrique Machado
Hello! This is my first messa ge here. Sorry my bad english, i'm from brazil Scenario: Category hasMany Products Products belongsTo Category category table: `id` int(10) unsigned NOT NULL auto_increment, `nome` varchar(255) collate utf8_unicode_ci default NULL, `created` datetime default