1
vote
4answers
108 views
Dynamic layouts in CakePHP
Sorry about the question title, but I couldn't find a more appropriate way to phrase this.
I am currently building a CakePHP powered website and I'm not quite sure how to approach the following …
0
votes
0answers
7 views
Kayak-like filter sliders using jQuery and AJAX pagination in CakePHP
Hey everyon, I was looking at this tutorial and was wondering if anyone has an example of the completed effect.
I just want to know if it filters through the result when using the sliders but also …
0
votes
1answer
17 views
City belongsThroughCountyTo Province association, how to simplify the code?
Tables:
Province hasMany County, County belongsTo Province, County hasMany City, City belongsTo County
So basically something like: City belongsThroughCountyTo Province
Situation:
In a search form …
0
votes
1answer
42 views
what are the best PHP forums? [closed]
What are the best PHP forums? If you can list as many as possible please.
Thank you in advance;-)
0
votes
0answers
19 views
file upload cakephp
when uploading an image to the server using cakephp
$this->Model->Behaviors->attach('ImageUpload', Configure::read('photo.files'));
photo uploaded successfully, and the database fields also
but …
0
votes
3answers
52 views
adding a logo in cake framework by editing default.ctp
where do i put the code for the image, then where would i put the actual image file itself
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" …
1
vote
1answer
42 views
CakePHP ACL confusion, how do I apply ACLs to objects, not actions?
Can anyone suggest a scalable design pattern for implementing access control on Photos and Albums, each with individual privacy settings (i.e. owner, group member, public)?
I'm using CakePHP, and …
0
votes
1answer
21 views
How to use OR Condition in Paginate function in Cakephp ??
Hi! I am facing a problem while fetching values using paginate function in cakephp. In the "to" field of message I have CSV fields of userid. To search messages for a single user. I am using the code …
2
votes
1answer
23 views
Redirecting paginator->sort to the first page in Cakephp
How do I do a paginator sort and also specify it to go to the first page:
echo $paginator->sort('Make', 'Car.make');
If you're on page 6 and want to sort the list by car make. It sorts the list but …
3
votes
6answers
1k views
Problem installing cake php
I have installed wampserver on my pc. I unzipped the cake php installation files in the "www" folder of wampserver. Now, when I try to run- "http://localhost/cakephp", I get a whole list of errors …
0
votes
1answer
29 views
CakePHP is truncating a text field, probably encoding related
Here's what I'm trying to do:
I'm parsing incoming email, and using it to create posts in the system. This works almost completely, but there's a few bugs to work out. The one that's currently …
1
vote
2answers
37 views
cakephp appmodel save question
I'm just getting familiar with cakephp (thanks to the developer before me), and ran into something funny. I have finally found out what went wrong, but still do not know why. In very pseudo code:
a …
1
vote
2answers
45 views
feedback / confirmation pages using cake
whats the best way to implement text feedback after entering the two fields and clicking SUBMIT?
http://nyu.neighborrow.com/items
0
votes
0answers
33 views
Subqueries while using Linkable or Containable Behaviors in CakePHP?
Hi is there a way to create a subquery while using the Linkable or Containable behavior with CakePHP?
Thanks in advance!
0
votes
3answers
35 views
cake php use of table relations
Whats the usage of creation relations like
var $belongsTo = array(
'UserType' => array(
'className' => 'UserType',
'foreignKey' => 'user_type_id',
…
