# |
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? |
# |
Apr 24th 2017, 15:14 |
bravo-kernel |
otherwise you need to configure CORS on the Apache level |
# |
Apr 24th 2017, 15:14 |
bravo-kernel |
if it's cake the easy way out is using https://github.com/ozee31/cakephp-cors, this opens all CORS headers |
# |
Apr 24th 2017, 15:14 |
danielfpedro |
xampp |
# |
Apr 24th 2017, 15:14 |
danielfpedro |
locahost apache |
# |
Apr 24th 2017, 15:13 |
bravo-kernel |
@danielfpedro seems like CORS headers are not configured (correctly). What sort of webserver does your API run on? |
# |
Apr 24th 2017, 15:08 |
danielfpedro |
anyone? |
# |
Apr 24th 2017, 15:06 |
slackebot1 |
[/var/www/checkimage/vendor/cakephp/cakephp/src/Database/Driver/PDODriverTrait.php, line 47] |
# |
Apr 24th 2017, 15:06 |
digitalfotografen |
I am installing a cake app on my clients Red Hat server. We are using PHP 7.0.7 and MySQL 5.7 . I don't have sudo permissions. I get this error regarding database connection (both when using CLI and WWW connection) . Please give me som clues on how to solve this. I suspect it is a PHP/Mysql configuration problem Exception: SQLSTATE[HY000] [2002] No such file or directory in |
# |
Apr 24th 2017, 15:06 |
danielfpedro |
I'm making a REST API and using ::resources to map the routes... I'm getting a 404 error on OPTIONS pre flight wich is obvious but I dont know how to get rid of this... I already tryed some solution that I research but nothing worked |
# |
Apr 24th 2017, 15:04 |
spylinux |
how can i specify this table in this format: name_number (table_12345) |
# |
Apr 24th 2017, 15:04 |
spylinux |
i'm new on Cake, i'm using cakephp 3.4, and i want to use an different name of table, like table_11111 (a name plus _number) |
# |
Apr 24th 2017, 15:03 |
danielfpedro |
guys |
# |
Apr 24th 2017, 15:03 |
spylinux |
Hi everyone! |