cakephp

What framework would allow for the largest coverage of freelance developers in the media/digital marketing sector

This question is not about which is the best, it is about which makes the most business sense to use as a company's platform of choice for ongoing freelance development. I'm currently trying to decide what framework to move my company in regarding frameworks for web application work. Options are ASP.NET MVC Django CakePHP/Symfony etc...

HABTM Data Corrupted During __saveMulti()?

I'm using Cake 1.2.6 and last night I noticed that a HABTM relationship wasn't being saved when I submit a form. I have a HABTM relationship between Committee and Volunteer. The primary key for a Volunteer is a UUID while the primary key for a Committee is a human readable string (e.g. BOARDOFDIRECTORS, FAIRCOMMITTEE, FAIRASSOCIATES, e...

which cakephp relationship should be used for groups of users? can haveMany use array for foreign_ID?

In my tennis application, my 'match' table has two players (obviously). I've used player1_id and player2_id as a way to track the user ids. I haven't included a user_id foreign key though. There is also a 'user' table where I want to pull player's names from. Because 'match' has more than one user and users have more than one model, ...

Making HABTM relationships unique in CakePHP

I have two models, called Book and Tag, which are in a HABTM relationship. I want a couple (book, tag) to be saved only once. In my models I have var $hasAndBelongsToMany = array( 'Tag' => array( 'className' => 'Tag', 'joinTable' => 'books_tags', 'foreignKey' => 'book_id', 'associationForeignKey' => '...

[CakePHP] Can not Bake table model, controller and view

I developed small CakePHP application, and now I want to add one more table (in fact, model/controller/view) into system, named notes. I had already created a table of course. But when I run command cake bake model, I do not get table Notes on the list. I can add it manually, but after that I get some errors when running cake bake contr...

Problem in integrating Wordpress blog's in Cakephp Website

Hello Everyone, I was working on a site of Cakephp which was successfully delivered.But recently Client again appered and asked me to put the Wordpress blog in it,to cover up the Blogging thing in his site.He wants to share the authentication between the Cakephp and WP.Whoever registers in his site,then Logins in it and if he clicks on t...

How can I find all records for a model without doing a long list of "OR" conditions?

I'm having trouble composing a CakePHP find() which returns the records I'm looking for. My associations go like this: User ->(has many)-> Friends , User ->(has many)-> Posts I'm trying to display a list of all a user's friends recent posts, in other words, list every post that was created by a friend of the current user logged in. T...

Debugging a Browser Redirect Loop

Hi all, I am using CakePHP with the Auth and ACL components. My page loads fine for non-registered users, but if I try to log in as a registered user I get an infinite redirect loop in the browser. I am sure that this is some sort of permissions problem, but the problem exists even for users who have permissions for everything. The o...

CakePHP - How can i define route to a non-cakephp file that doesnt have any controllers associated with it?

Im working in CakePHP now. I'd like to know how i can define a route to a non-cakephp file that doesnt have any controllers associated with it? I have placed this file(sitemap.php) in webroot folder, for my convenience. Now i need to route to it somehow! ...

JQuery adding li to ul after information has been saved to the database.

I currently have everything working/saving to the database using $.post, but I am unsure of how to display the new list without reloading the page once the data is saved. I have also tried $(document).ready() but have had no luck there either. <script> saveBullet = function(action) { $.post('/ManufacturersProductsLinesFeatures/...

CakePHP - Generated query not working correctly with SQL Server

I have a CakePHP app that is being moved to Sql Server from MySql. There is one query that does not seem to transfer correctly: $this->Model->find('all', array( 'conditions' => array( 'Model.column' => array(1, 2, 3) ) ) ); When I use this syntax with mysql, it seems to 'unpack' the array correctly, and...

TCPDF grey background for few cells?

I'm using TCPDF in CakePHP and trying to make some background (grey) for few cells. Well here the idea: so the grey thing would somehow have to be define outside of the cells containg text. Any ideas? Paul ...

Is it possible to get the Model error code inside the controller in CakePHP?

I have a simple unsubscribe function in my Unsubscribed controller. if ($this->Unsubscribe->save($this->data['Unsubscribes'])) { // success $this->Session->setFlash('Your email has been unsubscribed!'); $this->redirect('/unsubscribes/unsubscribe'); } else { // error $this->Session->setFlash('There was an error!'); $th...

A find condition about hasMany relationship in cakephp

Hi all,I'm working an action for message search in my project,and here are the two models:Msgcontent and Msgblock.Relationship is Msgblock hasMany Msgcontent.What I want to do is get all the Msgblock records that contain Msgcontent with some searching keyword.My code as follows: if($keyword) { $conditions['and'] = array( ...

In CakePHP 1.3 is there any advantage of using $this->Controller->Session over $this->Session in a component?

I'm using a modified version of Felix Geisendörfer's SimpleAuth/SimpleAcl components that I've combined into a single Component, Simple_Authable. I changed his startup() function to initialize() to not clutter the beforeFilter function in my app_controller. One of the things that this component does is check who the active user is and ...

cakephp app authentication -> wordpress authentication

Hi, i have a cakephp app and included a wordpress blog. Does anyone have experience how i can extend the cake-app-authentication, so that the user is automatically logged in to the wordpress blog? thanks ...

CakePHP - Can you make forms submit params as named params?

So GET forms make the usual urls like .../search/?q=apple Can you make a form create urls like .../search/q:apple/ ...

CakePHP belongsTo relationship with a variable 'model' field.

I've got a problem with a belongsTo relationship in CakePHP. I've got an "Action" model that uses the "actions" table and belongs to one of two other models, either "Transaction" or "Tag". The idea being that whenever a user completes a transaction or adds a tag, the action model is created to keep a log of it. I've got that part workin...

Validate Jeditable field

I'm using Jeditable (posting to CakePHP) for input on my page. I want users to only fill in numbers in the Jeditable fields, so my idea was to also use the jQuery validation plugin to validate if only numbers are used, I already use this in other parts of my site. Jeditable dynamically creates a form with an input when you click on the ...

MVC: Structuring Feed Output

The framework I'm using on my project follows the MVC Pattern. I"M building JSON feeds and need to structure them in a different way then what the system gives me by default from the ORM. Where should I be handling the task of mangling and shaping my data that I'll serve up, in the model, view or controller? Right now I'm doing it in my...