# |
Sep 15th 2019, 15:32 |
ndm |
Some kind of incompatible PHPUnit version / test suite compatibility workarounds... |
# |
Sep 15th 2019, 15:30 |
valerij.bancer |
Any idea of `PHP Warning: Cannot redeclare class PHPUnit\Framework\Test in /home/travis/build/cakemanager/cakephp-utils/vendor/cakephp/cakephp/tests/phpunit_aliases.php on line 9` error? |
# |
Sep 15th 2019, 15:29 |
valerij.bancer |
Hi, is there anybody here today? |
# |
Sep 15th 2019, 15:22 |
ra7bi |
Sure thanks |
# |
Sep 15th 2019, 15:22 |
ndm |
Check your Application class / bootstrap. |
# |
Sep 15th 2019, 15:21 |
ndm |
That error indicates that the `Elastic` factory locator hasn't been registered, which indicates that the plugin isn't being loaded (correctly). |
# |
Sep 15th 2019, 15:14 |
ra7bi |
``` $this->loadmodel('Example', 'Elastic'); ``` will throw error ```Unknowen repository type Elastic make sure you register a type before trying to use it . ``` |
# |
Sep 15th 2019, 15:13 |
ra7bi |
@ndm i meant , i've two datasource 1- Mysql which is default , 2- ElasticSearch i want whenever i insert data into mysql it should go also to elastic this is what i want to end up with , but the error seems related to elastic server configuration im just double checking |
# |
Sep 15th 2019, 15:10 |
ndm |
I don't know what exactly you mean by "_inserting at the same time_", but this is both isn't directly related to the error that you're receiving. AFAIU there doesn't _need_ to be anything more in those classes, ie that's the minimum configuration. |
# |
Sep 15th 2019, 15:03 |
ra7bi |
@ndm i need to understand for example what should be on this class ``` class ArticlesType extends Type ``` also ```class Article extends Document``` my endpoint is to insert into mysql and elasticSearch at same time |
# |
Sep 15th 2019, 14:58 |
ndm |
@ra7bi What kind of example are you looking for? I'm not familiar with the plugin, but being able to use the `Elastic` provider shouldn't require anything other than loading the plugin, which registers the `Elastic` factory at bootstrapping time. |
# |
Sep 15th 2019, 14:34 |
ra7bi |
i do , but they dont have example |
# |
Sep 15th 2019, 14:32 |
jeff.black |
Double check the doc. https://book.cakephp.org/elasticsearch/2.x/en/ |
# |
Sep 15th 2019, 13:57 |
ra7bi |
dont know what should i do |
# |
Sep 15th 2019, 13:57 |
ra7bi |
im getting error ``` Unknowen repository type Elastic make sure you register a type before trying to use it . ``` |
# |
Sep 15th 2019, 13:56 |
ra7bi |
hey , anyone using ElasticSearch plugin ? |
# |
Sep 15th 2019, 06:29 |
COOurb |
because when I call index of it's model I get error and Table 'project.people' doesn't exist |
# |
Sep 15th 2019, 06:28 |
COOurb |
hey, cakephp, is word "Organizations" is key-word? |
# |
Sep 15th 2019, 06:28 |
COOurb |
haha, very funny. |
# |
Sep 14th 2019, 21:01 |
brandon |
Figured it out. The path to migrations is 'config/migrations' on Windows but on *nix, it is 'config/Migrations' which doesn't exist |
# |
Sep 14th 2019, 20:45 |
brandon |
The database communication appears to be ok as it creates the phinxlog table. |
# |
Sep 14th 2019, 20:37 |
brandon |
Hi all. I am having issues with migration plugin. I created 2 migrations (create table and seed) which works perfectly on my PC but when I commit to repo and pull down and try to run the migrate command, it acts as if there are no files in config/migrations when both are there. The status command doesn't list any migrations. Any ideas? |
# |
Sep 14th 2019, 17:57 |
peppejaripappalardo |
with the new authentication component, how i can get user identity anywhere? |
# |
Sep 14th 2019, 16:39 |
admad |
not yet |
# |
Sep 14th 2019, 16:25 |
cnizzardini |
Can the cake shell be used independently of cake? |
# |
Sep 14th 2019, 15:19 |
jotpe |
Is this then correct? `<?= $this->Form->control('emailaddresses[0].email', ['label' => __('E-Mail'), 'required']) ?>` |
# |
Sep 14th 2019, 15:18 |
jotpe |
Btw. I save a User, which hasMany Emailaddresses. In my registration form I want to save just one Emailaddress. |
# |
Sep 14th 2019, 15:17 |
jotpe |
Not sure. It's a nested Model and I had to modify the FormHelper control fieldnames |
# |
Sep 14th 2019, 15:11 |
admad |
best way to handle this would be to sets default in db table itself. Then the forrmhelper inputs will auto fill the fields with those defaults |
# |
Sep 14th 2019, 15:10 |
jotpe |
Thanks :slightly_smiling_face: |
# |
Sep 14th 2019, 15:09 |
jotpe |
Okay |
# |
Sep 14th 2019, 15:09 |
admad |
yes |
# |
Sep 14th 2019, 15:09 |
jotpe |
So beforeMarshal then? |
# |
Sep 14th 2019, 15:09 |
admad |
validation is done on incoming data, not entity properties |
# |
Sep 14th 2019, 15:08 |
slackebot |
<jotpe> |
# |
Sep 14th 2019, 15:08 |
admad |
why would you set invalid defaults? :slightly_smiling_face: |
# |
Sep 14th 2019, 15:08 |
jotpe |
Did this in the constructor: $this->status = self::STATUS_UNCONFIRMED; |
# |
Sep 14th 2019, 15:08 |
jotpe |
@admad thanks, but the it's not validated correct? |
# |
Sep 14th 2019, 14:50 |
admad |
or set in entity's constructor |
# |
Sep 14th 2019, 14:50 |
admad |
set default in database table itself |
# |
Sep 14th 2019, 14:06 |
jotpe |
Hi! Is there a way to set initial values for new entities? I don't want to set the value every time I create a Entity. |