Tagged Questions
-1
votes
0answers
22 views
Table for model not found in datasource default — Cakephp
I am having this really weird problem. I am having trouble with "table not found" error, yet the thing is, in the very first place, as per indicated in my database configuration file, I have this ...
1
vote
2answers
35 views
CakePHP SQL conversion - basic ORDER BY
I have a table where I'd like to get all id's that equal 26 first, then have the rest sorted in descending order, so something like:
row id
--- --
1 26
2 26
3 26
4 27
5 ...
-1
votes
2answers
78 views
please help me fix sql query in cake php
I am wondering where to write select query is written in cake php I only see following code in controller
function getpages($position = 'top') {
return $this->Page->find('all', ...
0
votes
1answer
35 views
Column not found: 1054 Unknown column 'Comment.deferred_id' in 'field list'
So I am pretty new to this and I am creating a web application with Cakephp framework and a MySQL database. I had a column in my "Comment" table called deferred_id which referenced the id in my ...
0
votes
1answer
43 views
Advice on complex CakePHP page [closed]
I was just looking to get advice from people who have experience with CakePHP.
Basically I've done most of my site using CakePHP, and most of it was very standard stuff. Pages to add, edit and view ...
0
votes
2answers
43 views
How to use CakePHP to do a query bounded by data in two indirectly-related tables
Presume the Query works:
SELECT
users.id,
subscriptions.name,
users.user_type
FROM users
LEFT JOIN users_subscriptions
ON users.id = users_subscriptions.user_id
LEFT JOIN ...
0
votes
1answer
27 views
Is it possible to create custom functions when use sqlite in cakephp
I need to create a custom function silimar with mysql. But this must be in sqlite to run tdd.
I have not found how to do this in documentation or in code structure.
Reference: ...
-1
votes
1answer
59 views
Why is not the same between query in php and query in SQL Server?
I have a CakePHP project with a SQL server, but I am confused when running this query:
result = $this->Manager->query('SELECT TOP(10) name, id
FROM ...
0
votes
2answers
38 views
Error when using custom query in cakephp?
I have using cakephp for my website. And i use sql server 2012 with it.
I have confused that when i use:
$this->set('types',$this->Manager->query('select * from product_types'));
to get ...
0
votes
1answer
44 views
cakephp 2.X override table prefix dynamically on join action
I a cakephp setup to manage multiple web-sites in which they a number of common models, with the table prefix 'main_'. And there's common model Fbuser is using a table 'main_fb_users'
And now, I have ...
0
votes
2answers
51 views
get data from different tables based on the value which is a common field of all the tables
I've 5 tables..,
Activity, Users, Admin, Individual, Employer
Activity, Admin, Individual, Employer belongs to Users table as shown
Activity Admin Individual ...
0
votes
1answer
55 views
Sqlmap inline parameters
Hi ive just hear about an error in cakephp that allows sql inyection;
https://twitter.com/cakephp/status/328610604778651649
I was trying to test my site using sqlmap, but i cant find how to specify ...
1
vote
1answer
109 views
using sql union on same table in cakephp find query
let's say I have a query like this:
(SELECT * FROM user WHERE id < 5 order by id DESC LIMIT 1)
UNION
(SELECT * FROM user WHERE id = 5)
UNION
(SELECT * FROM user WHERE id > 5 LIMIT 1)
How can ...
0
votes
3answers
37 views
find entries to the left and right of a certain entry in a mysql table in a single query
Let's say I have a table in a database like this table. Let's say that I want to get the entries on the left and right of the entry whose the primary key is equal to 5 (or any other primary key). So ...
0
votes
3answers
150 views
cakephp complex find query example
I would like to perform a find('all') query on a table in a CakePHP application with the following conditions:
1- The primary key value is equal 17
AND
2- The value of another column my_column_id ...
0
votes
1answer
48 views
Getting PK of updated records in cakephp/sql server
I have used bulk update to sync datas between two tables as below
$sqlProc="
UPDATE cards
SET cards.card_no = t2.card_number,
cards.expiry_date=t2.expiry_date OUTPUT INSERTED.Id AS 'updated_id'
...
0
votes
1answer
58 views
Combining two queries into one with CakePHP
I'm working on a photo gallery project. I want to list the 20 most recently created albums and also show each of those albums' most recently uploaded photo (if it has one). The way I'm doing it now is ...
0
votes
1answer
32 views
Complex CakePHP query refactoring
I have just inherited a project and I need to re-work a bit of code so that the pagination of an infinite scroller still work properly.
Right now the code is grabbing all of the categories and their ...
0
votes
1answer
90 views
CakePHP Associations error? Won't save associated table
I created a user profile where users can add their information. So on URL section I want them to put their other links like Facebook, www.facebook.com/user etc.
But when I click Save nothing updates?
...
0
votes
3answers
72 views
Normalise data into one table
I'm trying to insert rows into a table (usersteps) from the table steps for all users only if the step id does not exist.
INSERT INTO userssteps
(status,user_id,step_id)
SELECT
'0' ,
(SELECT ...
0
votes
3answers
160 views
CakePHP data not saving/adding to database
Submitting the data only reloads the page, no errors or messages is given by CakePHP.
The code follows the same/similar structure as the blog tutorial.
The view code
<?php
echo ...
0
votes
2answers
98 views
Cakephp pagination with joined tables
I want to join the "sectors" table to my pagination results. Here is what happens:
I set the paginate variable so that it will join Sector:
$this->paginate = array(
'joins' => array(
...
0
votes
1answer
62 views
Search one or more authors query cakephp
I have a search form, and I want to let the user to search one or more authors who writes a book.
I have this code that put the string in an array:
if (strpos($a,' ')||strpos($a,',')) {
...
0
votes
2answers
232 views
Secondary Drop Down with Preloaded options
I have Sub-Categories that are related to a Main Category. My sub cat table has the main category id as a foreign key. I'd like to preload all subcategories using javascript and avoid an extra php ...
0
votes
1answer
209 views
CakePHP 2: Get full SQL error log in error.log
I want to be able to log full SQL queries in error.log specifically when a SQL error occurs. My debug is set to 2 in core.php.
The output is appearing as follows:
2013-01-29 19:53:21 Error: ...
2
votes
1answer
82 views
How to execute this query in cakephp
Do you know how can i do this query in cakephp with the helper find?
$req = "SELECT * FROM brand
WHERE nom LIKE '$nom%' AND
genre LIKE '$genre%' AND
...
0
votes
1answer
388 views
CakePHP unable to save file to DB - Unknown column 'Array' in 'field list'
I found a tutorial showing how to upload a file and store it in DB as blob. This is my code in FilesController:
$zip_file=$this->data['File']['zip'];
$fileData = fread(fopen($zip_file['tmp_name'], ...
0
votes
1answer
51 views
Can I make two seemingly unrealated associations between two tables?
I am developing a resume app and have created a table called areas using the CakePHP Tree Behaviour. In this table, I have a bunch of countries and cities.
The original purpose of this table was to ...
1
vote
1answer
147 views
cakephp 2.X doing update/save for 2 models/tables
I have 2 tables/models (don't have any relation with each other) which have to be updated at the same time, and if either one can't complete the update process, the other one won't be updated....
if ...
2
votes
2answers
105 views
Convert sql statement to cakephp statment
I am using cakephp 2.1 and written sql statement as follows.
SELECT * FROM industry
LEFT JOIN movie ON movie.industry_id = industry.id
LEFT JOIN (
SELECT MAX(id) AS TID ,movie_id FROM trailer
...
0
votes
1answer
58 views
How to retrieve data only from 1 table (without its relational table) in CakePHP?
I have 3 tables (projects, sentiments, and tweets). All those tables have a relationship. What I need is to retrieve data only from table projects.
When I am retrieving the data with ...
0
votes
1answer
218 views
cakephp - Delete user not working
I want to be able to delete a user, but when i try to it throws the following error. "Error: The requested address '/cakephp/users/delete/8?url=users%2Fdelete%2F8' was not found on this server."
The ...
0
votes
1answer
321 views
cakephp complex query multiple 'OR' condition
i want to make query like this with cakephp:
WHERE text LIKE '%keyword%'
AND
(
(text LIKE '%something%')
OR (text LIKE '%something%')
OR (...)
)
AND
(
(text LIKE '%other%')
...
0
votes
1answer
178 views
CakePHP has and belongs to many conditions with NOT EXISTS
$conditions = Array
(
[table] => products_pages
[alias] => ProductsPage
[type] => inner
[foreignKey] =>
[conditions] => Array
(
[0] => ProductsPage.product_id = ...
0
votes
3answers
408 views
CakePHP sql queries
I'm sort of new to CakePHP and can't figure out how sql queries work here. I have a delete button which erases news about players. What it's not doing (and it should) is also take care of number of ...
3
votes
2answers
141 views
Sanitize help on Raw sql
I have some complex queries in my plugin which require me to use the ->query() and not the ->find() methods.
I couldn't understand how to sanitize the raw sql so I guessed someone here can ...
0
votes
0answers
106 views
Cakephp complex pagination
I have a problem to solve in CakePhp.
I have an Habtm relationship that in practice is a belongTo relationship.
I explain better.
I have objects, and every object has multiple categories. Each ...
1
vote
1answer
108 views
Cakephp 2.0: complex find query
I'm trying to pull some info out of two tables linked by the hasMany and belongsTo associations.
requisitions hasMany locations and locations belongsTo requisitions
TABLE `requisitions` (
`id` ...
0
votes
0answers
84 views
Attribute-value / key-value system with virtualFields in CakePHP
I want to extend the Expandable Behavior by Debuggable.com by using CakePHP's virtualFields and not the merging the other model with the current one in the afterFind method as it currently is.
The ...
0
votes
1answer
149 views
converting sql query into cakephp format
Hi
i need the following sql query into cakephp find() format. the query it self is working fine but i need to change it.
$this->Part->query(
"SELECT `parts`.`id`,`parts`.`part_name`
...
1
vote
2answers
913 views
Error: SQLSTATE[42000]: Syntax error or access violation with cakePHP
I am using the framework cakePHP for my application. I programmed it on localhost with xampp and try to upload it on my website now. It worked without any problems on localhost. Now there is only this ...
0
votes
1answer
73 views
Way to create more manageable array when looping through an array with multiple joins?
I have an array that I am passing to my view and it's joined with multiple tables. Let's call this array Submissions. All submissions contain SubmissionVotes and a typical data submission object looks ...
0
votes
0answers
172 views
Get all posts for user in CakePHP [closed]
I have following DB schema:
posts belongs to customer
customer has many posts
users belongs to customer
customer has many users
User--belongsTo-->Customer--hasMany-->Post
How can I get all posts for a ...
4
votes
1answer
98 views
cakephp new item notification system
im trying to create a cakephp website which has a notification system telling people when they log in how many new items they have.
I currently have the site logging every time a visitor logs into ...
1
vote
2answers
188 views
Cakephp2.0 retrieving data find()
I have a find argument that is throwing errors, debugkit is saying unknown column, when looking at the table now I can see it there.
There is an invoices tables which has - id, sender_id, ...
5
votes
2answers
181 views
Cakephp find's returning null
hi all I'm trying to do two things with a find,
the model disputes belongsTo invoices.
find all invoices where
invoice.receiver_id=account.id
and
dispute.invoice_id=invoice.id
currently the ...
2
votes
1answer
347 views
Room booking sql query
I have a problem in writing the sql to get the available rooms from the tables. my table structures are given below.
table : booking
booking_id | room_id | start_datetime | ...
1
vote
3answers
62 views
Routes between the database table associations
i have a database table look like this
id parent_id
1 NULL
2 1
3 2
4 5
5 3
3 6
7 4
8 6
9 5
10 1
I want to know now is there any way to mount a route based on these ...
0
votes
2answers
290 views
CakePHP - HABTM find() don't make the JOIN to other tables
My title will look like naive but I have to say I read/searched/tested everything possible, but my find() method don't implement the JOIN to related tables in the SQL query. I used it several times in ...
1
vote
1answer
47 views
Is there a function that executes sql? Specifically sql generated by the CakeSchema?
Is there a function that executes mysql? Specifically mysql generated by the CakeSchema?
This is an example of the data I want to import:
$this->Schema = new CakeSchema();
$Schema = ...

