-3
votes
1answer
24 views

Best PHP framework for ecommerce website [closed]

I've built a food ecommerce website where users can seach different restaurants and order food online. I've added the cart functionality and build the basic website. Now that I have to build unique ...
0
votes
1answer
13 views

Cakephp AppError file under Lib folder not getting included

I am using cakephp 2.2 I have created a class AppError under app/Lib folder. when i am including it under bootstrap file I am not able to use its function. It seem it is not included I used ...
0
votes
4answers
23 views

After deleting the particular multidimensional array element in PHP, the Next array elements are not positioning automatically

I've created the multidimensional array in the following format Array ( [0] => Array ( [id] => 10 [quantity] => 3 ) [1] => Array ( [id] => 9 [quantity] => 2 ) [2] => Array ( [id] ...
0
votes
3answers
15 views

php Import Excel sheet to mysql cakephp 1.3

I will have millions of records in my Excel sheet provided by client, and I am finding a better ready made component or helper in CakePHP 1.3 version to import excel sheet to MySQL database records. ...
0
votes
0answers
35 views

Password Confirm Validation CakePHP

I have searched far and wide, tried every trick in the book, but I still can't get my CakePHP application to perform simple Password Confirm validation. I've tried creating a custom validation rule ...
2
votes
0answers
20 views

Pagination and filtering issue in jquery and cakephp

In the form there are filters. Based on the click of the button I make an ajax call. $.getJSON('<?php echo $this->Html->url(array('controller'=>'buying', 'action'=>'purchase_orders')); ...
0
votes
0answers
13 views

How do I update a tree branch in cakephp?

How do I update a sort_order field for EVERY child based on a parent ID in cakephp?
0
votes
0answers
12 views

Cakephp - notices and exceptions for error messages in restful API

I have error messages being sent out with regular Notice errors outputting when there are any undefined variables for example. The problem is that it throws in HTMl instead of XML for my Restful web ...
0
votes
1answer
27 views

Get constants of Model

CakePHP: 2.3.5 class Table extends AppModel { const STATUS_FREE = 0; const STATUS_BUSY = 1; const STATUS_INCHECK = 2; const STATUS_LINK = 3; const STATUS_CLEAN = 4; const ...
1
vote
0answers
13 views

Cakephp 1.3 - How is the validation error message added to the div of the field?

Due to the appearance of the website I'm working on, I've had to modify how radio fields appear on the screen in Cakephp. To do this, I create a radio input with the 'div' set to false, then I add my ...
0
votes
2answers
27 views

How to show data from different related models in cakephp?

I'm fairly new to cakePHP and I'm trying to build a simple webapp. I have a 3 Models: Property, Operation and Category. My relationships are: Category -> hasMany -> Property Operation -> ...
-4
votes
0answers
22 views

When i write my site.com/ or anything it will give me database error [closed]

I have used Cakephp and IIS7. web.config file is also added. Not getting the reason behind this issue. Request Object on IIS shows below path [base] => /funforday/app/webroot/index.php [webroot] => ...
1
vote
1answer
16 views

Get saved id from HABTM save

I'm saving data into my table fine, but I want to get the ID of the HABTM record that was saved. The saving array looks like: Array ( [User] => Array ( [id] => 1 ...
0
votes
0answers
16 views

I am using cake php and want to make subdomain as username.domain.com

currently by some changes in config/routs.php when i call "username.domain.com" it redirect to "domain.com/controller/view/username" that is right and it is shows url as ...
0
votes
0answers
21 views

how to create store procedure in cakephp models

Hi I want to create mysql stored procedure using models in cakephp. Because i dont have to access database directly. my stored procedure is, CREATE PROCEDURE testfun() BEGIN SELECT id ...
1
vote
1answer
25 views

How to run cakephp array in php eval function [closed]

Have the string $conditions which i intend to run with the eval function but I keep getting the error: Error: syntax error, unexpected ',' File: ~\app\Controller\UsersController.php(62) : eval()'d ...
-2
votes
0answers
35 views

How to reduce RAM memory in huge cakePHP application? [closed]

I'm fixing application based on CakePHP framework version 1.3. Monitoring reveals that there is huge usage of RAM and CPU in server. Are there any good practices or advices how to use CakePHP ...
1
vote
1answer
27 views

how to add active class in current page in CakePhp

i have a problem similar to this question How to identify active menu link in CakePHP i have a page in my default.ctp file in which i want to add 'active' class on links. how can i identify the ...
0
votes
2answers
29 views

CakePHP Calling a function in a model when you're in a controller

I am getting this error when calling a function to a model. Database Error Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that ...
0
votes
1answer
36 views

Advanced Organization of my database, need tips

Original post is mostly solved, check Edit #2 for my most recent questions I hope it's easy for you guys to understand what i'm trying to do. I'm working on a project with cakePHP where it will allow ...
0
votes
1answer
37 views

Foreach for 3 variables in an array

I am trying to loop three variables inside an array with a foreach loop. My model to get my array is this function pieChart($limit = null, $conditions = null) { //Get Data for PieChart ...
0
votes
1answer
17 views

CakePHP saving models with similar data

I have following code. I'm trying to make it simpler and shorter. I created $data1 array and added relevant data with array_merge and saved it to my model. But note that $data1 and $exists has same ...
-4
votes
0answers
31 views

Get data from Android app and send to CakePHP or MVC website [closed]

I am developing an Android app in which I am getting data from the user. I want to send information to the website database from the app. Do you guys have some ideas for me how to code that? What I ...
-2
votes
0answers
25 views

turn off cakephp prefix when calling a controller [closed]

how do I force this line of code to ignore the prefix routing of admin when I call it? $variable = $this->function(); It keeps trying to call the function through the prefix route of: ...
0
votes
0answers
42 views

cakephp confirm you have created the file app/config/database.php iis7

I am getting below error. Windows hosting account on godaddy and web server is IIS7. I have mostly tried all way around, not sure if i have missed any option. Missing Database Connection Error: ...
-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
votes
0answers
23 views

Not load data in page 2 when pagination in cakephp

In my controller, I filter data like below code. $conditions = array( 'PointHistory.del_flag' => CONST_FLAG_OFF, ); ...
0
votes
1answer
53 views

Two variables set to null inside ( ) of function

In my model I have this function pieChart($conditions = null) { //Get Data for PieChart $this->RecordDrug->virtualFields['sum'] ='COUNT(*)'; $records = array(); ...
0
votes
0answers
32 views

Call a static method from CakePHP Plugin

I have a class with a static method called hash from a plugin class called "ControllerUtility" The function is located in ControllerUtility/Model/ControllerUtility.php public static function hash( ...
0
votes
1answer
27 views

cookie is not saving Cakephp

Cake is not saving the cookie, at least not that I can see, and when I revisit the page I am not auto logged in.i actually want to implement the 'remember me functionality '.i am using this component ...
1
vote
2answers
45 views

foreach line and add something else

hello i have something with this code bellow $text = nl2br($_POST['inputtext']); foreach(explode("<br />",$text) as $ok){ echo "944".$OK."<BR />"; } what i have tried is when i ...
2
votes
1answer
40 views

cakePHP Could not find validation handler

I'm struggeling with my cakePHP validation Scenario: In my DB I have one table "alliances" and one "federations". In "federations" connections between alliances are stored. "alliances" has got stupid ...
0
votes
1answer
27 views

Calling a python script in Cakephp

I wrote a service class called search_categorization_service.php. Now I am making a call to python scrpt in this class class SearchCategorizationService { function searcher($query) { ...
-2
votes
1answer
27 views

Piechart not show label if the value is a low percentage [closed]

I have a pie chart with many different kinds of values, resulting in almost 40 slices and the majority of them are below 10%. Is it possible to now display the label on the pie graph for only these ...
0
votes
0answers
24 views

Can we create pagination for something other than tables?

I have an array which consisits of multiple tables. I just want to implement pagination such that only 3 tables are displayed (in Cakephp). But i am unable to create pagination as the data is in an ...
0
votes
1answer
24 views

Cakephp not destroying session at browser close

so my problem is that whenever i log in to the site using the Auth in cakephp and close it, it still brings me up to the index page of the site. i really don't know why cakephp does this, even if i ...
0
votes
2answers
40 views

Exclude value if under a certain percentage

I am trying to make a pie chart, using chartjs, to display almost all the data in a database. What it does is count how many times a certain word is used in the database and it uses that count as the ...
0
votes
0answers
27 views

Very strange behaviour from cake php after logging out

Ok this is the scenario: Admin logs in Admin logs out Normal user logs in Redirected to admin page! If I delete cookies stored however before logging in as a normal user, login works as expected. ...
-1
votes
0answers
28 views

Unique username in cakephp

I want to validate unique username and email validation, right now I am using a custom validation method that checks for unique username. What is the best way in cakephp to manage unique fields, that ...
0
votes
0answers
28 views

How to store data for a form builder web application?

I'm making an app that will allow users to design their own forms. Once they have built their forms they will enter data. The forms are unique to a project, with things like users logins and groups ...
1
vote
0answers
30 views

Automatically convert from dashes to underscores using the Cake PHP router

I've been setting up some routes like this: Router::connect('/background/a-page', array('controller' => 'background', 'action' => 'a_page')); Router::connect('/background/another-page', ...
0
votes
0answers
26 views

Use multiple themed css files within one theme - CakePHP

I have themed folders within my cakephp project one for each client. I am creating a mobile version and need to have a mobile theme for it. In this mobile theme I want to load one of the css files ...
0
votes
1answer
24 views

How to give string in the url in RESTful api in Cakephp?

As per the this Cakephp CookBook the simple setup for RESTful api : HTTP Method URL.method Controller action invoked GET /recipes*.method* RecipesController::index() GET ...
0
votes
1answer
33 views

how to set session timeout when user is idle for 5 min in cakephp

how to set session timeout when user is idle for 5 min in cakephp if in that 5 min user make query(or go to any page in site) in cake php then that session again refresh to 5 min. session only and ...
0
votes
1answer
34 views

Cakephp - Delete entry that isn't exist in new POST data

I'm making something like Online Restaurant Menu where the admin can edit it. The database looks like this: CATEGORIES id | name 1 | Western Food FOODS id | category_id | name 1 | 1 ...
1
vote
3answers
38 views

Mysql join query on same table

I have table like CREATE TABLE IF NOT EXISTS `categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `parent_id` int(11) NOT NULL DEFAULT '0', `status` ...
0
votes
0answers
28 views

cakephp not posting form as expected

Please do not go for close or delete question as its really a problem. I have uploaded code at Runnable But some how if you see in firebug you will notice form is not posted at users/login action. ...
0
votes
1answer
25 views

CakePHP containable for join not searching additional table

I'm trying to join two tables and I found this post on accomplishing it using containables. The tables I'm trying to join are orders and order_items. Here's the code in my Order and Order_Item ...
0
votes
1answer
40 views

cakephp 2.3 ajax form submission

I am trying to create a simple form to submit data to the database with ajax. here is my view <?php echo $this->Html->script('jquery', FALSE); ?> <?php echo ...
0
votes
3answers
26 views

Adding a user from index doesn't work using CakePhp

I'm using CakePhp 2.3 and am trying to allow a user to create an account from the home page. I'm new to cakephp and so far I've followed implementation described here: ...

1 2 3 4 5 111