Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
52 views

how to creating php template file

controller $data["controller"] = $table; $data["rows"] = $this->base_model->get();//get table attributes and names $write_add = $this->load->view("generate/add",$data,TRUE);//load file ...
1
vote
1answer
42 views

cakephp: cake bake created no validation rules, why?

I used the cake bake model all, with my db (cakephp 1.3) which created all models with associations, but no validation rules were created. why is that?
1
vote
1answer
266 views

Cake Bake error

i am trying to use cakes baking console and when i use cake bake model all i am getting the following error Attendance Table Structure CREATE TABLE IF NOT EXISTS `mydb`.`attendences` ( `id` ...
1
vote
1answer
81 views

find the user who is trying to create a directory

Hello I am using cakePHP's bake console to create a cakePHP application. But when I run the scripts, it says that the present user does not have permission to create a folder in the directory. So to ...
1
vote
2answers
666 views

cakephp baking in windows 7

I'm new to cakephp so have just been working through the cookbook and am now working through "Beginning CakePHP from Novice to Professional" by Apress. I have got to the Bake section of the book but I ...
1
vote
1answer
283 views

CakePHP 1.3 (newest), fatal error while baking views

I've just downloaded the newest beta of CakePHP 1.3 for a new project (not a serious one, so no worries with the beta, still learning stuff, I'm right now trying to get grip on acl/auth). I've baked ...
1
vote
1answer
337 views

having trouble with cakePHP Bake and one of the database tables

I am using Bake to create models for my database tables. I have run into a little problem. I have 25 tables .... I strated baking the models until for one of the database tables the bake started ...
0
votes
3answers
50 views

Getting CakePHP 2.0 to Bake

I'm having some trouble getting the Bake feature of CakePHP 2.0 working.. I think it is down to the way I've got my folder structure set-up, i.e: http://i.stack.imgur.com/6fViJ.png (it won't let me ...
0
votes
1answer
99 views

cakephp bake console acting weird?

I'm pretty new to CakePHP and i'm running through both the Cake Book and the Apress Book CakePHP from novice to professional, but i can't seem to understand what's going on on my bake console. I've ...
0
votes
1answer
102 views

how to setup environment of 'cake bake' for multiple applications?

I am stuck in setting up environment for running cake bake. In my development machine (using WAMP), I have several applications: /{wwwroot} /myapp-1 /myapp-2 /myapp-3 According to some ...
0
votes
1answer
123 views

Multiple PHP and console warnings when using Bake in Cake

guys. I've been trying to bake some models, controllers, and views in CakePHP 1.3 - however, when I run the command from console, I've been running into a lot of warnings and unexpected behavior. For ...
0
votes
2answers
313 views

cannot bake CakePHP - permission denied while setting chmod +x for cake/console/cake - on NTFS mounted partition

Just learning CakePHP and its Bake feature. I tried to run ../cake/console/cake bake from the app folder, but I get the error ../cake/console/cake: Permission denied chmod 777 nor chmod +x don't ...
0
votes
1answer
77 views

Rename DB Fields after Bake

i realised (after baking and much customisation) that i can use DB fields called 'created' and 'modified' (as long as the are type Datetime and default NULL) to get built in functionality to save ...
0
votes
1answer
59 views

Accessing array of variables in CakePHP bake script?

I'm trying to modify the CakePHP bake script so that I can incorporate saving of images from an image helper in an appropriately named field. How do I go about getting the list of fields/variables in ...
0
votes
1answer
409 views

Having trouble getting cake bake to work

I've installed the latest version of CakePHP on a Ubuntu 10.10 machine. I was able to run through a beginner tutorial just fine so I think my configuration is close to being correct. I can't get cake ...
0
votes
3answers
149 views

CakePHP Default Bake Paths :: Can they be changed?

I recently downloaded a Cake site from a live server, and I am trying to bake some aspects. But I am getting files not found errors (even though they do exist), but the structure is different that the ...
0
votes
2answers
102 views

Baking tables in cake php

Im baking tables in cakephp. One table named abc which I baked successfully and I need to remove this table from database and also from the cakephp folder. I deleted all models, controllers, views and ...
0
votes
1answer
138 views

Cakephp Problems with the bake script

I have apache, php, and Mysql installed on my computer. I have added the PHP directory and C:\Apache\htdocs\cake\cake\console to my environmental variables path. When i load the path to the console on ...
0
votes
1answer
357 views

bake cakephp configure console profile

i've just installed CakePHP and I'm pretty new with Mac,Shells and Terminal.. Cakephp is now running correctly and as stated by my tutorial (Beginning-Cakephp-from novice to professional) i'm now ...
0
votes
1answer
563 views

CakePHP: -bash: cake: command not found

I've used CakePHP a few times before but this is the first time I'm trying out Bake. On my Mac I'm running CakePHP 1.3, PHP5.3.3, and MySQL. I've created my database tables and the app connects to the ...
0
votes
2answers
204 views

Parse error: syntax error, unexpected T_STRING While Cake Bake Model

I'm getting Parse error: syntax error, unexpected T_STRING while i cake bake model because the model generated has single quotes not closed like ' Photo' => array( ...
0
votes
2answers
296 views

CakePHP one to many Combo box

Hey I have two models User and City, where a user belongs to a city and a city has many users. On the city table I have city_id and city_name. I've used used cake bake and created the user model and ...
0
votes
1answer
659 views

cakephp bake view Errors

I have previously baked a controller for a model that I have created. When attempting to bake the view using cakephp I get the following errors: Interactive Bake Shell ...
0
votes
2answers
3k views

CakePHP, Set “cake” Environment Variable?

Here's a quickie that I assume has a simple answer (maybe? Hopefully?), but I just can't find one: I'm using the "cake" console in cakephp on Mac OS X 10.6.2. How do I set up the environment ...
0
votes
1answer
259 views

problem baking view in cakephp

I've created a custom view template (see link below), which I'm using to bake my views in cakephp. http://book.cakephp.org/view/789/Modify-default-HTML-produced-by-baked-templates Everything works ...
0
votes
1answer
930 views

How can I set up 'bake' with MAMP on OS X with projects in 'Sites'?

I'm trying to set up 'cake bake' on OS X. I'm using MAMP and every time I try to 'bake', I get this: -bash: cake: command not found I have the Apress Beginning CakePHP book, but the suggestions in ...
-1
votes
1answer
43 views

CakePHP Model Associations

Here's the deal, i have 2 models: Rus and Audios. I want to use records from Audios in Rus controller, so i go and type in associations like this: <? class Rus extends AppModel { var $name = ...