# |
Aug 10th 2008, 02:48 |
ammadsaleem |
I want to remeber the url of the last page accessed by the user so that I can redirect the user after login to that page |
# |
Aug 10th 2008, 02:46 |
stabb |
ACTION sighs |
# |
Aug 10th 2008, 02:16 |
Ins|de |
hi there, how can i set an url in a CSS relative to cake/img folder dinamicaly? |
# |
Aug 10th 2008, 02:10 |
Bobby |
and it still isn't sending |
# |
Aug 10th 2008, 02:10 |
Bobby |
so i've set delivery = 'mail' (cakephp 1.2) |
# |
Aug 10th 2008, 01:59 |
Bobby |
ok, the manual didn't show that |
# |
Aug 10th 2008, 01:59 |
Bobby |
oh you must set it? |
# |
Aug 10th 2008, 01:56 |
Bloc |
either smtp or sendmail |
# |
Aug 10th 2008, 01:56 |
Bloc |
have u set the transport method? |
# |
Aug 10th 2008, 01:55 |
Bobby |
Hi does anyone know if I have to do anything special to get the built in email component to work? like use a specific mailer class? or something? because its currently not working right now and it's not giving any errors, its just returning false on Email->send() and it's not sending |
# |
Aug 10th 2008, 01:52 |
andresmh |
i want to build a simple website that lets users upload pictures and be able to post comments about pictures. kind of like a simple version of flickr. are there any modules or apps in cake for this? |
# |
Aug 10th 2008, 01:10 |
stabb |
ACTION goes slideshow crazy |
# |
Aug 10th 2008, 00:44 |
tomas- |
thanks |
# |
Aug 10th 2008, 00:43 |
tomas- |
Veracious, yeah it will |
# |
Aug 10th 2008, 00:43 |
Veracious |
dunno if that's good or not though but should work |
# |
Aug 10th 2008, 00:43 |
tomas- |
Veracious, yeah if i have to... =( |
# |
Aug 10th 2008, 00:42 |
Veracious |
tomas-: how about: $this->redirect("/controller/action/$id") ? |
# |
Aug 10th 2008, 00:41 |
darki |
okay ;) |
# |
Aug 10th 2008, 00:41 |
Veracious |
in my code it's $role |
# |
Aug 10th 2008, 00:41 |
Veracious |
argh, that role is just any variable |
# |
Aug 10th 2008, 00:40 |
tomas- |
$this->redirect(array('action'=>'edit')); # Where would $id go? |
# |
Aug 10th 2008, 00:40 |
darki |
great thanx :) |
# |
Aug 10th 2008, 00:40 |
Veracious |
before the Model2->save() use this: role = $this->Model1->findByField($value) to get the knewly added data from the database |
# |
Aug 10th 2008, 00:40 |
tomas- |
how can i specify parameters to the 'redirect()' method given an array list of 'controller','action',etc? i need to append values to the pathinfo, not sure how |
# |
Aug 10th 2008, 00:38 |
Veracious |
oh, and before that |
# |
Aug 10th 2008, 00:38 |
Veracious |
of course |
# |
Aug 10th 2008, 00:38 |
Veracious |
then it does =) |
# |
Aug 10th 2008, 00:38 |
Veracious |
oh yeah |
# |
Aug 10th 2008, 00:38 |
darki |
maybe it does when i have foreign keys? |
# |
Aug 10th 2008, 00:38 |
Veracious |
you just add stuff in database |
# |
Aug 10th 2008, 00:38 |
Veracious |
the order does not matter |
# |
Aug 10th 2008, 00:38 |
Veracious |
yeah, if you want to |
# |
Aug 10th 2008, 00:37 |
Veracious |
for that to work |
# |
Aug 10th 2008, 00:37 |
darki |
and beffore that "$this->Model1->save" to save the first model |
# |
Aug 10th 2008, 00:37 |
Veracious |
and you need to have a relation defined in Model1 to Model2 |
# |
Aug 10th 2008, 00:37 |
Veracious |
darki: '$this->Model1->Model2->save()' to save the 2nd Model |
# |
Aug 10th 2008, 00:36 |
darki |
veracious: and then with "this->data->save()" all models are saved? |
# |
Aug 10th 2008, 00:35 |
skua |
what the best way to make a LIKE %$foo% filtering with conditions ? |
# |
Aug 10th 2008, 00:35 |
Veracious |
last one is in the controller |
# |
Aug 10th 2008, 00:35 |
Veracious |
'$form->create()' to create a form. '$form->input('Model1.field1)' and '$form->input('Model2.field1)' to make the form input elements. '$this->Model1->Model2->create()' to initialize the 2nd Model |
# |
Aug 10th 2008, 00:27 |
darki |
hi - how can i fill more than one model with data from one view? |