beginner In CakePHP . HELP PLEASE

2012-02-17 Thread kalai
HI to all, I am a beginner in CakePHP. I would like like to get help in my coding. i am currently creating a directory using CakePHP. the problem i am facing 1)when i click edit it is not redirecting to Edit,it just displaying the Session message say "the post is saved" 2) when ever i

Re: Logic to join data to string before write to DB. Anyone help?

2012-02-16 Thread HL
; > > > > Hello, > > > I would like to join data to string before write to DB.  Anyone help > > me solve this out please. Thank you! > > > The data from form will look like this > > [Event] => Array > >         ( > >             [mark] => Arr

Re: Logic to join data to string before write to DB. Anyone help?

2012-02-15 Thread euromark
you can always use foreach(){} - basic PHP one-o-one On 15 Feb., 14:08, diendannhatban wrote: > Hello, > > I would like to join data to string before write to DB.  Anyone help > me solve this out please. Thank you! > > The data from form will look like this

Logic to join data to string before write to DB. Anyone help?

2012-02-15 Thread diendannhatban
Hello, I would like to join data to string before write to DB. Anyone help me solve this out please. Thank you! The data from form will look like this [Event] => Array ( [mark] => Array ( [0] => 1

Re: Cannot change my baked view. Help!

2012-02-13 Thread bobzibub
33. > > > Any suggestions? > > -B -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: Cannot change my baked view. Help!

2012-02-13 Thread euromark
View name: Documents/add.ctp > > I've set Configure::write('debug', 2); // tried 3, 333. > > Any suggestions? > -B -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org

Cannot change my baked view. Help!

2012-02-13 Thread bobzibub
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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at

Re: Need Help: A variable is losing value

2012-02-11 Thread chris varick
;/networks/add_network/" > So I am really confused! :P Thank you for the corrected method though > of saving record via primary key with Model->id=$val I didn't realize > that was the documented way of doing things. > > On Feb 11, 2:46 am, Stephen Speakman > wrote: >

Re: Need Help: A variable is losing value

2012-02-11 Thread chris varick
he > parameter being passed to the controller with 0? > Assuming you're accessing the method like such: /networks/add_network/ > > If you want to avoid creating a new record try: > > $this->Network->id = $nId; > $this->Network->save($this->data); > > K

Re: Need Help: A variable is losing value

2012-02-11 Thread Stephen Speakman
>Network->save($this->data); Kind Regards Stephen On 11/02/2012 08:44, chris varick wrote: I am hoping someone can help me out here. I am pulling my hair out. For some reason when I go to save "edited" information, form a form, it is creating an entire new record in the databas

Need Help: A variable is losing value

2012-02-11 Thread chris varick
I am hoping someone can help me out here. I am pulling my hair out. For some reason when I go to save "edited" information, form a form, it is creating an entire new record in the database instead of just updating the current record at hand. I am using variable $nId to reference the re

Re: Help making a query to select all Posts which have lots of Comments

2012-02-07 Thread Andras Kende
x27;posts', $this->paginate('Post')); > > Thanks. > > -- > 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 qu

Re: Help making a query to select all Posts which have lots of Comments

2012-02-07 Thread andrewperk
x27;, $this->paginate('Post')); > > Thanks. -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Help making a query to select all Posts which have lots of Comments

2012-02-07 Thread andrewperk
t('posts', $this->paginate('Post')); Thanks. -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: A little help with json_encode

2012-02-03 Thread Almog
from the controller. > To keep MVC form I have a function in my AppController(app_controller > on 1.3) which I can call with $this->json(arrayhere) > It encodes to json, and then uses json.ctp element as the layout. > > On Feb 3, 4:23 am, Almog wrote: > > > > > &

Re: A little help with json_encode

2012-02-03 Thread thatsgreat2345
yhere) It encodes to json, and then uses json.ctp element as the layout. On Feb 3, 4:23 am, Almog wrote: > I can use some help have a simple bug but figure out what to do. > > I have echo json_encode($response); > > which works fine unless the response is "0" and t

A little help with json_encode

2012-02-03 Thread Almog
I can use some help have a simple bug but figure out what to do. I have echo json_encode($response); which works fine unless the response is "0" and then I get an empty "responseVars:" If I do echo json_encode($response ->number); I get responseVars: {"number"

Re: Help Understanding Fat Models

2012-01-31 Thread Marius
this in your Post or Tag model, and might call it in > /posts/index, /pages/home, /posts/view, > /users/posts_in_tags_i_have_created, etc. > > For small apps, it may not be necessary to move these functions around! > But, I'd say the more you have in models the better, even if only for

Re: Help Understanding Fat Models

2012-01-30 Thread jeremyharris
Cool, glad it helped. There are other examples around the internet too. -- 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

Re: Help Understanding Fat Models

2012-01-30 Thread Chooch Schubert
ags_i_have_created, etc. > > For small apps, it may not be necessary to move these functions around! > But, I'd say the more you have in models the better, even if only for > testing's sake. It's easier to find out what went wrong when your methods > are smaller and very speci

Re: Help Understanding Fat Models

2012-01-30 Thread jeremyharris
. It's easier to find out what went wrong when your methods are smaller and very specific. Controller methods are usually less specific than model methods. Hope that clears it up a bit. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new Cak

Help Understanding Fat Models

2012-01-30 Thread Chooch Schubert
reciated! {c} -- 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 group, send email to cake-php+unsubscr...@googlegrou

Re: Thickbox not working. Please help

2012-01-23 Thread rockbust
works in firefox but blank box in explorer. Anyone know why?? -- 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: Thickbox not working. Please help

2012-01-23 Thread rockbust
hmm well I put the css in webroot but did not echo it in the layout. Working now, just some issues to work out. -- 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

Thickbox not working. Please help

2012-01-23 Thread rockbust
;, $template['Template']['id'] ), array( 'escape' => false, 'class' => 'thickbox' ) ); If I remove the 'class' => 'thickbox' the link works fine but no thickbox. What am I missing -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

help for a newb - internal error has occured?

2012-01-18 Thread cyboman
finitely a cakePHP newb. I'm trying to get caught up enough just to make some small changes to the site and at least get it up and running. Any help much appreciated! Cheers, -cyboman -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new C

Help with CakePHP-LinkedIn Plugin

2012-01-17 Thread Tony Smith
rs that I have gotten: Datasource class Apis.Apis could not be found. Fatal error: Cannot redeclare class... Any pointers would be appreciated. Thanks. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.

Re: Authentication Application Tutorial help. Login just reloads login page.

2012-01-15 Thread Jeremy Harris
't have the > following > > bit in your layout: > > > > echo $this->Session->flash('auth'); > > > > That will give you a hint as to what's going on. Or, check your session > > vars (use DebugKit - it's a massive time save). > >

Re: Authentication Application Tutorial help. Login just reloads login page.

2012-01-15 Thread Ella Källman
#x27;); > > That will give you a hint as to what's going on. Or, check your session > vars (use DebugKit - it's a massive time save). -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.

Re: Authentication Application Tutorial help. Login just reloads login page.

2012-01-14 Thread jeremyharris
r 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 group, send email to cake-php+unsubscr...@googlegroups.com For more opt

Authentication Application Tutorial help. Login just reloads login page.

2012-01-14 Thread Ella Källman
I have searched for others with the same problem but I have not found a solution that worked. I don't know how much code you need to help me, please tell me and I will post. Here is my AppController array( 'loginRedirect' => array('cont

Multiple Upload Cakephp - Help Me

2012-01-08 Thread Noer barrihadianto
Questions site http://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: Need help with model design

2011-12-19 Thread Geoff Douglas
ontain('Comment.User'); $this->Event->find('all'); That's it... easy my friend. -- 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 rel

Re: Need help with model design

2011-12-18 Thread Ersin Demirtas
stifling needs of the physical body. > He says his inspiration comes from his uncontrollable desire to > solidify ideas and feelings. Tinei owes much of his training an > encouragement to his brother, Passmore Mashaya, and to Euwitt > Nyanhongo, who are renowned artists in their own right

Re: Need help with model design

2011-12-18 Thread Ersin Demirtas
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 group, send email to > cake-php+unsubscr...@googlegroups.com For more options, visit this group

Re: Need help with model design

2011-12-14 Thread Geoff Douglas
Like Andras said.. Containable is what you need, it is simple and awesome! -- 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

Re: Need help with model design

2011-12-13 Thread Andras Kende
as and feelings. Tinei owes much of his training an > encouragement to his brother, Passmore Mashaya, and to Euwitt > Nyanhongo, who are renowned artists in their own rights. He has had > his works exhibited in the USA, Austria, Canada, Australia and South > Africa. >[created] => 2011-12-

Need help with model design

2011-12-13 Thread Ersin Demirtas
dios Crisp Road Hammersmith London,W6 9RL [tel] => 2032097013 [www] => http://www.cakephp.org [startdate] => 2011-07-04 [enddate] => 2011-12-30 [thumbnail] => http://www.cakephp.org/87dc36fd-6eec-4b33-a314-b97d020c8272.Jpeg [status

validation rule help

2011-12-12 Thread elogic
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: Adding image (png) icon in form->button element - please help.

2011-12-07 Thread Blues Clues
r by false then. > > On 7 Dez., 21:10, Blues Clues wrote: > > > > > Hi: > > > I have a, hopefully, silly problem. Can you help ? > > > I have for Form->Button in my view that looks like this... > > > button('Edit', array('class'=&

Re: Adding image (png) icon in form->button element - please help.

2011-12-07 Thread euromark
why are you purposely setting 'escape'=>true? if you want to use html inside an element you are shooting yourself in the foot this way. it should rather by false then. On 7 Dez., 21:10, Blues Clues wrote: > Hi: > > I have a, hopefully, silly problem. Can you help ? >

Adding image (png) icon in form->button element - please help.

2011-12-07 Thread Blues Clues
Hi: I have a, hopefully, silly problem. Can you help ? I have for Form->Button in my view that looks like this... button('Edit', array('class'=>"btnEdit", 'escape'=>true, 'type'=>"button")); ?> Now, I would like to

Need to Get Started: Please Help! (image upload - delete record)

2011-12-06 Thread iamarto
g the same problem as me. Please get me started in this. same question on ask.cakephp.org: http://ask.cakephp.org/questions/view/image_uploading_examples Your help appreciated. Arto -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP

Re: Datetime picker help

2011-11-26 Thread phpMagpie
I use jQuery UI for my datepicker, this looks a nice solution for date and time: http://trentrichardson.com/examples/timepicker/ -- 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

Re: Datetime picker help

2011-11-26 Thread phpMagpie
http://addyosmani.com/blog/the-missing-date-time-selector-for-jquery-ui/ -- 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

Re: new beginner needs help on cake database confiuration

2011-11-23 Thread Jeremy Burns | Class Outfit
=> 'utf8', > ); > > But still show the message: Cake is NOT able to connect to the > database > > The connection is ok if I just use php mysql_connect... > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.

new beginner needs help on cake database confiuration

2011-11-23 Thread amy
27;', //'encoding' => 'utf8', ); But still show the message: Cake is NOT able to connect to the database The connection is ok if I just use php mysql_connect... -- Our newest site for the community: CakePHP Video Tutorials http://tv.

Re: Help - Multiple Apps, Shared Core, Dispatch Errors - CakePHP 2.0.3

2011-11-21 Thread majna
Or use 'prefix' => Inflector::slug(APP_DIR) -- 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 grou

Re: Help - Multiple Apps, Shared Core, Dispatch Errors - CakePHP 2.0.3

2011-11-20 Thread sotin
prefix' => 'domain1.com_cake_core_', > > Andras Kende > > On Nov 21, 2011, at 12:39 AM, sotin wrote: > > > > > > > > > Hello, > > > I'm hoping someone can help me out with this. I've got two apps using > > a shared Cak

Re: Help - Multiple Apps, Shared Core, Dispatch Errors - CakePHP 2.0.3

2011-11-20 Thread sotin
k you! -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For

Re: Help - Multiple Apps, Shared Core, Dispatch Errors - CakePHP 2.0.3

2011-11-20 Thread Andras Kende
'prefix' => 'domain1.com_cake_core_', Andras Kende On Nov 21, 2011, at 12:39 AM, sotin wrote: > Hello, > > I'm hoping someone can help me out with this. I've got two apps using > a shared CakePHP core (2.0.3). In Apache, I've configured

Help - Multiple Apps, Shared Core, Dispatch Errors - CakePHP 2.0.3

2011-11-20 Thread sotin
Hello, I'm hoping someone can help me out with this. I've got two apps using a shared CakePHP core (2.0.3). In Apache, I've configured each app on it's own subdomain. In my views, I have absolute HTML links that link between subdomains. I'm getting random issues where a

Re: HELP! model associations lost after import

2011-11-17 Thread phpMagpie
://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: HELP! model associations lost after import

2011-11-16 Thread Jeremy Burns | Class Outfit
controllers, i get an appropriate > response. > > any ideas how i can change my pages controller to retrieve associated > models like regular controllers? > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check ou

HELP! model associations lost after import

2011-11-16 Thread billy
this happens no matter what level of recursive i put and when i load the model in regular controllers, i get an appropriate response. any ideas how i can change my pages controller to retrieve associated models like regular controllers? -- Our newest site for the community: CakePHP Video T

Re: Help! Validation does not work, strange thing!

2011-11-16 Thread Jeremy Burns | Class Outfit
), > the form is validating its data, but I need to have it multilingual, > like in my contact form. > > Within my controller I can work with $this->Newsletter. Means I can > connect to my model. I have some other function where I read and save > data from/to my database. > >

Help! Validation does not work, strange thing!

2011-11-16 Thread heohni
from/to my database. I really don't understand, why just the validation data is not present?? Anyone any ideas?? Thanks!! -- 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

Re: Help using paginator

2011-11-11 Thread AD7six
27;); >                 $this->set('equipos', $data); >                 } > > Anyone has a idea of whats happening You do not have an equipoS model. You also don't need to pass any args to paginate. AD -- Our newest site for the community: CakePHP Video Tutorial

Re: Paginator Links, need urgent help

2011-11-11 Thread heohni
does the right thing, it sorts by DESC and the > > links is nicly > > getting lower > > > But now I can see that cake added a class named asc > class="sortdefault asc" hr. > > I have no idea where this comes from and what it does...? > > > But an

Re: Help using paginator

2011-11-11 Thread thom
ameisthom.blogspot.com -- 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 group, send email to cake-php+unsubscr...@go

Re: Paginator Links, need urgent help

2011-11-10 Thread Andras Kende
ge again which is sorted by ASC and > the links is still > getting higher > > When I click again it does the right thing, it sorts by DESC and the > links is nicly > getting lower > > But now I can see that cake added a class named asc class="sortdefault asc&quo

Paginator Links, need urgent help

2011-11-10 Thread heohni
click again it does the right thing, it sorts by DESC and the links is nicly getting lower But now I can see that cake added a class named asc http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubsc

Re: Help: how to use cakephp for subdomains

2011-11-10 Thread WebbedIT
* lays down his shield and breathes a sigh of relief * :) -- 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 group

Re: Need a little help with HABTM joins

2011-11-10 Thread WebbedIT
new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: Help using paginator

2011-11-10 Thread euromark
r 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Help using paginator

2011-11-10 Thread Jean Luis Morillo
happening thx in advance.. -- 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 group, send email to cake-php+

Re: Need a little help with HABTM joins

2011-11-09 Thread Ernesto
nothing happens. users cannot de-associate Articles and Pieces -- 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: how to use cakephp for subdomains

2011-11-09 Thread AD7six
css controller. > > New information - new answer :) > > AD Oops forgot this bit: check your 3 .htaccess files -- 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 t

Re: Help: how to use cakephp for subdomains

2011-11-09 Thread AD7six
west 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, v

Re: Need a little help with HABTM joins

2011-11-09 Thread WebbedIT
odify the ArticlePieces data. -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: Need a little help with HABTM joins

2011-11-09 Thread WebbedIT
asMany form where the users can > modify the ArticlePieces data. -- 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 f

Re: Help: how to use cakephp for subdomains

2011-11-09 Thread WebbedIT
when write /app/webroot/css/style.css in address > > bar, it showing css. > > but when write /css/style.css .cake send missing controller. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakep

Re: Help: how to use cakephp for subdomains

2011-11-08 Thread webfacer
ke send missing controller. -- 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 group, send email to ca

Re: Help: how to use cakephp for subdomains

2011-11-08 Thread Mamdoohi
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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com

Re: Need a little help with HABTM joins

2011-11-08 Thread Ernesto
diretcly to the "edit" action - in both edit actions there's a simple hasMany form where the users can modify the ArticlePieces data. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org

Re: Need a little help with HABTM joins

2011-11-08 Thread WebbedIT
join table it;s a good idea to modelise it. HTH, Paul. -- 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 group, sen

Re: Need a little help with HABTM joins

2011-11-07 Thread Giorgio Tedesco
id and ArticlePiece.Piece_id ENG: post an example of ur actual array.. please.. :) -- 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 unsubs

Re: Need a little help with HABTM joins

2011-11-07 Thread Ernesto
ENG: Thanks for the effort but this isn't my problem ITA: Grazie del tentativo ma non é quello il mio problema :) -- 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

Re: Need a little help with HABTM joins

2011-11-07 Thread Ernesto
Hi. thx for the answer. This will not solve my issue. i want to load all the Pieces, even if they're not related to the Article Model -- 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

Re: Need a little help with HABTM joins

2011-11-07 Thread WebbedIT
d models :\ -- 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: Need a little help with HABTM joins

2011-11-07 Thread Giorgio Tedesco
additional fields, don't worry. Just to remember, when u save, to put a correct array. -- 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.

Re: Need a little help with HABTM joins

2011-11-07 Thread Ernesto
this will load only related models :\ -- 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 group, send email to cake

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread 100rk
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: Need a little help with HABTM joins

2011-11-07 Thread Giorgio Tedesco
I'd use a condition... or use $this->Article->ArticlePiece->findById(1); -- 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.

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread AD7six
: 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread 100rk
dabox.com -- 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 group, send email to cake-php+unsubscr...@googlegroups.co

Need a little help with HABTM joins

2011-11-07 Thread Ernesto
1 [piece_id] => 3 [quantity] => //no cost, no quantity = not related [cost_each] => //no cost, no quantity = not related ) ) ) Sorry for my bad english -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread AD7six
HP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. 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

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread 100rk
Some apache setups needs line (in .htaccess, httpd.conf, or virthost config) RewriteBase / -- 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

Re: Help: how to use cakephp for subdomains

2011-11-07 Thread AD7six
On Nov 6, 9:54 am, Hamid Mamdoohi wrote: > I create subdomain for my site. > I use cakephp for that but when call $html->css('style') method to add tag > and run it. cake can't load css file and send error of missing controller. > please help me. Doesn't soun

Re: Help: how to use cakephp for subdomains

2011-11-06 Thread Zaky Katalan-Ezra
27;t load css file and send error of missing controller. > please help me. > > -- > 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 quest

Re: Help: how to use cakephp for subdomains

2011-11-06 Thread Sam Sherlock
my site. > I use cakephp for that but when call $html->css('style') method to add tag > and run it. cake can't load css file and send error of missing controller. > please help me. > > -- > Our newest site for the community: CakePHP Video Tutorials > http://

Help: how to use cakephp for subdomains

2011-11-06 Thread Hamid Mamdoohi
I create subdomain for my site. I use cakephp for that but when call $html->css('style') method to add tag and run it. cake can't load css file and send error of missing controller. please help me. -- Our newest site for the community: CakePHP Video Tutorials http://tv.cake

Re: Error Debugging Help

2011-11-03 Thread zuha
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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit

Re: Error Debugging Help

2011-11-03 Thread Thiago Belem
> this exception is being thrown? Or what CakeRequest is asking for which > causes this exception? > > -- > 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 > oth

Re: Error Debugging Help

2011-11-03 Thread zuha
kePHP 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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at

Re: Error Debugging Help

2011-11-03 Thread Thiago Belem
> outputs a better error? Any ideas would be helpful. > > -- > 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 un

Error Debugging Help

2011-11-03 Thread zuha
p://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 group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

Re: Meio Image Upload in CakePhp 2.0 fail plz help

2011-10-28 Thread driss
thanks it works now just fine thank you -- 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 group, send email to

Re: Meio Image Upload in CakePhp 2.0 fail plz help

2011-10-27 Thread Vitor Pacheco
tor Pacheco* Skype: vitor.pacheco.costa Msn: vitor-...@hotmail.com Cel.: 71 8626-7909 Tel.: 71 3378-5778 / 71 3287-3475 -- 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 Cake

<    1   2   3   4   5   6   7   8   9   10   >