cakephp tag

92 questions


2 answers
47 views
0
I want to save the check box CSV in CakePHP 2.6.0.

Create three tables in the database: create table users( id int not null auto_increment primary key, name varchar(50), comment_id varchar(50), created datetime not null, modified datetime not null);cr...

2 years ago

1 answers
44 views
0
How to set when model name and controller name are special(?) in cakephp association

Environment and Current Statecakephp 2.7 (this is my first attempt at framework)mysqlDB StructureSitesidsite_namesite_urlArticlesidsite_id (in conjunction with Sites id)article_titlearticle_urlpub_dat...

2 years ago

1 answers
54 views
0
CakePHP does not display modified correctly.

I recently started studying CakePHP.I'm suffering from an error right away...I think it's a rudimentary problem, so If anyone knows, please reply.<div class=topics index> <h2><?phpecho_...

2 years ago

3 answers
62 views
0
How to Determine if a View File Is Available in CakePHP

Is there a way to determine if CakePHP has a view file?I'd like to separate what to do with or without a view file.

2 years ago

2 answers
40 views
0
Retrieve linked data from different tables in CakePHP

RoomsControllerpublic function index(){ $this->Room->recursive=0; $this->Prg->commonProcess(); $this->paginate=array( 'Room' = > array( 'conditions' = > array( $this->Room-&...

2 years ago

1 answers
41 views
0
Update using hasMany in CakePHP does not work

I am using cakePHP 2.4.9.Combine the following two tables using the hasMany model for addition, editing, and updating.events tableCREATE TABLE `events`( `id`int(10) unsigned NOT NULL AUTO_INCREMENT, `...

2 years ago

1 answers
40 views
0
I want to specify the page to be displayed in the page country of cakephp3.

I'm a beginner at cakephp.Is it possible to specify which page to display in the page country of cakephp?I am thinking about the following:1. Display a list form with pageation.2. Display the detailed...

2 years ago

1 answers
44 views
0
I don't know how to average CakePHP3 multiple columns.

I am currently working on a post site with CakePHP3.of the scores in the article currently posted and comments and scores posted by other users.Based on the score, we are trying to reflect the average...

2 years ago

1 answers
63 views
0
I want to separate apps by subdirectory, not subdomains

in Apache 2.4/var/www/html/larvel (includes Ravel 5.1)/var/www/html/cakephp with CakePHP 3.2When placed like this, http://example.com/laravelhttp://example.com/cakephpWould it be possible to access it...

2 years ago

1 answers
45 views
0
The session disappears quickly

I have a question about the session of cakephp.On one page$session=$this->getRequest()->getSession();$session->write('username', 'test');and on another page.$session=$this->getRequest()-&g...

2 years ago
« - 9 - »

© 2024 OneMinuteCode. All rights reserved.