# |
Apr 25th 2017, 06:37 |
rchavik |
any thing else? |
# |
Apr 25th 2017, 06:37 |
rchavik |
i think one possible issue is unsupported password format |
# |
Apr 25th 2017, 06:36 |
rchavik |
what are possible causes of mysql connection failure (all details are correct)? |
# |
Apr 25th 2017, 02:12 |
temp1029 |
Er, never mind, I think I've got it |
# |
Apr 25th 2017, 02:08 |
temp1029 |
If I want to save both new associated records and maintain existing associations, is there an easy way to do this? Basically, I have a form used for updating a record, but I also want the user to be able to add new associated records from the same form, without having to go to a separate form first. |
# |
Apr 25th 2017, 02:05 |
slackebot1 |
!now |
# |
Apr 25th 2017, 02:05 |
slackebot1 |
Command sent from Slack by temp1029: |
# |
Apr 25th 2017, 02:05 |
slackebot1 |
!time |
# |
Apr 25th 2017, 02:05 |
slackebot1 |
Command sent from Slack by temp1029: |
# |
Apr 24th 2017, 23:53 |
pedroseco |
Hi, can Plugin::loadAll() use the autoload option? Can’t seem to make this work. |
# |
Apr 24th 2017, 21:34 |
cakephp274 |
Ok, got it working now! :D |
# |
Apr 24th 2017, 21:28 |
cakephp274 |
thanks |
# |
Apr 24th 2017, 21:28 |
cakephp274 |
Yeah, I'm going with a button and rewrite the logic in the controller |
# |
Apr 24th 2017, 21:26 |
dereuromark |
or use a button with a specific value posted, then you can use the form |
# |
Apr 24th 2017, 21:24 |
dereuromark |
but it is not connected the form then |
# |
Apr 24th 2017, 21:24 |
dereuromark |
use a custom action - $this->Form->postLink(__('Approve'), ['action' => 'approve', $contactAd->id], ['class' => 'btn btn-success']); etc |
# |
Apr 24th 2017, 21:14 |
cakephp274 |
but I can't seem to figure out how to send the decline reason along |
# |
Apr 24th 2017, 21:14 |
cakephp274 |
I have 2 tables: Request en DeclineReasons. When you deny a request, you go to a new page where you can select the decline reason. When you do this, I want to send a post to the decline method which should change the status of the request to declined and set the decline reason to the actual decline reason id |
# |
Apr 24th 2017, 21:12 |
cakephp274 |
Alright, thanks! I was hoping this was a good solution to my problem, let me phrase my problem for you: |
# |
Apr 24th 2017, 21:11 |
dereuromark |
use normal buttons if you want to do what you want to do |
# |
Apr 24th 2017, 21:11 |
dereuromark |
you are mixing things, the post link and the form should not be connected |
# |
Apr 24th 2017, 21:09 |
cakephp274 |
Hello. If I have a form in CakePHP 3.0 and a postLink below it, how can I access the form data in the method I'm reffering to with the postlink? I've tried $this->request->param('reason') but it doesn't work |
# |
Apr 24th 2017, 19:34 |
half2me |
I could format each individually, but I would like the global default to change |
# |
Apr 24th 2017, 19:34 |
half2me |
Is there a way I can change the default formatting of date/time fields in my entities? |
# |
Apr 24th 2017, 18:40 |
half2me |
for example, if I know some of its children have changed |
# |
Apr 24th 2017, 18:40 |
half2me |
is there a way I can tell an entity to manually update its counter-cache? |
# |
Apr 24th 2017, 18:37 |
bravo-kernel |
@danielfpedro FWIW I just checked my Crud demo api and it produces 404's, respecting CORS |
# |
Apr 24th 2017, 18:36 |
half2me |
how would I go about updating these? |
# |
Apr 24th 2017, 18:36 |
half2me |
But when I have a counter-cache on another model which is supposed to reflect how many of my Entites are linked for example… |
# |
Apr 24th 2017, 18:34 |
half2me |
When I use `$table->link($myEntity, $otherEntities);` Counter-cache is not update :S |
# |
Apr 24th 2017, 15:36 |
pedroseco |
On Cake\Network\Http\Client is there any method I could use to get a filename from a remote request? |
# |
Apr 24th 2017, 15:32 |
danielfpedro |
I think you use a rawQuery |
# |
Apr 24th 2017, 15:31 |
spylinux |
anyone can help me? In book.cake i can't find this...just specify table with letters name, i can't find nothind to find in table with numbers in name, like name_87654 |
# |
Apr 24th 2017, 15:20 |
bravo-kernel |
yeah, I probably misread your intro, apologies |
# |
Apr 24th 2017, 15:19 |
danielfpedro |
@bravo-kernel I know whats happening but I dont know houw to solve lol... `$routes->resources('Visitas');` map the routes and method so they think "hmm 'wherever/test.json' with OPTIONS method, nothing to do here" and return 404... so I think is not even reaching the CORS allowing part... got it? |
# |
Apr 24th 2017, 15:16 |
bravo-kernel |
ok |
# |
Apr 24th 2017, 15:16 |
danielfpedro |
@bravo-kernel I dont think it is because cors is already enabled... Since I dont use `$routes->resources('Visitas');` its all ok including the pre flight request so I think is more a route thing |
# |
Apr 24th 2017, 15:15 |
bravo-kernel |
that links directly to the instruction |
# |
Apr 24th 2017, 15:15 |
bravo-kernel |
@danielfpedro http://www.bravo-kernel.com/2017/03/how-to-make-your-cakephp-3-api-produce-jsonapi/#5-Enabling-CORS-middleware |
# |
Apr 24th 2017, 15:15 |
spylinux |
I cant specify the name table |
# |
Apr 24th 2017, 15:15 |
spylinux |
I just need to perform a simple Select in a table with nema in this format: table_227364, how can i do a simple find() in this table? |