Log message #4180212

# At Username Text
# Mar 19th 2019, 18:30 jnguyen its being called within another controller
# Mar 19th 2019, 18:30 ricksaccous you are calling it wrong
# Mar 19th 2019, 18:30 slackebot2 dd($HealthRecord); //$this->HealthRecord->save($healthRecord); }```
# Mar 19th 2019, 18:30 jnguyen ```public function test() { $this->loadModel('HealthRecord'); $HealthRecord =$this->HealthRecord->newEntity(); $data = [ 'user_id' => $this->Auth->user('id'), 'type' => 'test', 'entry' => ['test' => '1'], 'meta' => json_encode(['test' => '1']), ]; $HealthRecord = $this->HealthRecord->patchEntity($HealthRecord,$data);
# Mar 19th 2019, 18:30 jnguyen it isnt
# Mar 19th 2019, 18:29 ricksaccous this code isn't in a plugin is it?
# Mar 19th 2019, 18:29 jnguyen ah
# Mar 19th 2019, 18:29 ricksaccous in the controller
# Mar 19th 2019, 18:29 ricksaccous i mean
# Mar 19th 2019, 18:29 jnguyen health_records
# Mar 19th 2019, 18:29 ricksaccous so how are you calling the table?
# Mar 19th 2019, 18:28 ricksaccous oh okay
# Mar 19th 2019, 18:28 jnguyen and yeah I did use migrations to create the table
# Mar 19th 2019, 18:28 jnguyen my mistake it was HealthRecordsTable.php
# Mar 19th 2019, 18:22 ricksaccous @jnguyen also maybe use migrations in this project, after you get more of a hang of things
# Mar 19th 2019, 18:21 ricksaccous based on conventions
# Mar 19th 2019, 18:21 ricksaccous so HealthRecordsTable.php is what the table class should be called
# Mar 19th 2019, 18:20 ricksaccous it's always Table.php
# Mar 19th 2019, 18:20 ricksaccous baked that*
# Mar 19th 2019, 18:20 ricksaccous it should not have backed that
# Mar 19th 2019, 18:20 ricksaccous not Tables.php
# Mar 19th 2019, 18:20 ricksaccous HealthRecordsTable.php
# Mar 19th 2019, 18:20 ricksaccous it should have been called
# Mar 19th 2019, 18:15 jnguyen not sure pasting the code would help because the baking seems to be all correct
# Mar 19th 2019, 18:14 jnguyen ```SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sparkplug.health_record' doesn't exist```
# Mar 19th 2019, 18:14 jnguyen so my exact problem is I made a table called health_records, baked the model and it produced an entity called HealthRecord.php and the table HealthRecordsTables.php. Tried to save data to it and it threw me this error
# Mar 19th 2019, 18:11 ricksaccous ie it's not finding my MagicRunes table
# Mar 19th 2019, 18:11 ricksaccous and stated exactly what the problem was
# Mar 19th 2019, 18:10 ricksaccous prob would be easier if you pasted the code in a gist or something
# Mar 19th 2019, 18:10 jnguyen ah figured
# Mar 19th 2019, 18:10 jnguyen sorry mean pluarl
# Mar 19th 2019, 18:10 ricksaccous table class should be plural
# Mar 19th 2019, 18:10 ricksaccous no
# Mar 19th 2019, 18:09 jnguyen if im correct the table itself has to be singular correct?
# Mar 19th 2019, 18:09 jnguyen Hey guys, so I just baked a model, the table is plural and the entity is singular, but im getting a base table not found because its looking for the singular version of the table
# Mar 19th 2019, 14:58 emiliano thanks a lot
# Mar 19th 2019, 14:58 emiliano my problem, is the aws elastic beanstalk jeje
# Mar 19th 2019, 14:56 jeremyharris yeah htaccess can do that
# Mar 19th 2019, 14:55 emiliano is there any way to tell you to generate all the urls in https, htaccess?
# Mar 19th 2019, 14:55 emiliano Hi guys, how are you? I'm working with cake 3.5 and aws elastic-beanstalk, is there any way to focus urls to https? When I use a json call, I generate the url in http and I have mixed content, i dont no way
# Mar 19th 2019, 14:40 feLiruc I did exactly what you said guys, I created a string with the correct index, and increment it everytime the user add one more line... but, for me this is so kluge...