# |
Mar 15th 2018, 12:12 |
yadav.manu36 |
ye i have loaded |
# |
Mar 15th 2018, 12:11 |
alysson-azevedo |
@yadav.manu36 did you loaded the component RequestHandler on your controller? |
# |
Mar 15th 2018, 12:01 |
yadav.manu36 |
File uploaded https://cakesf.slack.com/files/U83JZGBTR/F9QCB5WKC/-.txt / https://slack-files.com/T053DPNCM-F9QCB5WKC-7616a31410 |
# |
Mar 15th 2018, 12:00 |
yadav.manu36 |
I am using RESTful Routes in plugin and i am getting "Template file \"Api\\Users\\json\\index.ctp\" is missing." error please check below Router::prefix('api', function ($routes) { $routes->plugin( 'UserManager', ['path' => '/user-manager'], function (RouteBuilder $routes) { $routes->setExtensions(['json']); $routes->resources('Users'); $routes->fallbacks(DashedRoute::class); } ); }); |
# |
Mar 15th 2018, 11:58 |
yadav.manu36 |
Hi all |
# |
Mar 15th 2018, 11:52 |
johnwayne |
@edgaras.jan thank you for helping, but if I count the response time second it is mostly the same, main problem is ->query()->update() for each price |
# |
Mar 15th 2018, 11:19 |
alysson-azevedo |
nevermind, i need to use `Cake\Http\Client\Response` instead `Cake\Http\Response` |
# |
Mar 15th 2018, 11:17 |
alysson-azevedo |
i mean, i cant even find the "isRedirected()" method in the `Cake\Http\Response` class |
# |
Mar 15th 2018, 11:16 |
slackebot |
/home/alysson/ws/rx/apirx/vendor/cakephp/cakephp/src/Http/Client.php:366 |
# |
Mar 15th 2018, 11:16 |
alysson-azevedo |
Hi, i'm trying write some tests to my code, but i getting some strange error. ``` $response = new Response(); $mock->expects($this->once()) ->method('send') ->will($this->returnValue([$response])); ... ``` But when i run the code, php throws the error: Error : Call to undefined method Cake\Http\Response::isRedirect() /home/alysson/ws/rx/apirx/vendor/cakephp/cakephp/src/Http/Client.php:401 |
# |
Mar 15th 2018, 10:40 |
sandeep556 |
How to built tree list for multi-tree where data are organize according to scope first. |
# |
Mar 15th 2018, 10:32 |
bnb_dev |
php -m is showing the PDO, pdo_mysql and pdo_sqlite |
# |
Mar 15th 2018, 10:31 |
edgaras.jan |
@johnwayne you can use `$matchedData = Hash::combine($matchedData, '{n}.place_id', '{n}');` before outer loop |
# |
Mar 15th 2018, 10:27 |
bnb_dev |
ok |
# |
Mar 15th 2018, 10:26 |
sandeep556 |
@saeideng can we built tree list for multi list, where one list come after other list. currently it maxed-up with each other |
# |
Mar 15th 2018, 10:26 |
edgaras.jan |
@johnwayne rebuild array, so $key is place_id, so you skip inner loop by using `$csvPrice = $matchedData[$dbPrice['place_id']];` |
# |
Mar 15th 2018, 10:25 |
edgaras.jan |
if you can't enable pdo_sqlite, define debug_kit connection using mysql or other engine |
# |
Mar 15th 2018, 10:24 |
bnb_dev |
ok |
# |
Mar 15th 2018, 10:24 |
edgaras.jan |
check your app logs/error.log |
# |
Mar 15th 2018, 10:24 |
bnb_dev |
ok |
# |
Mar 15th 2018, 10:24 |
edgaras.jan |
sqlite3 and pdo_sqlite are different extensions |
# |
Mar 15th 2018, 10:23 |
bnb_dev |
I used this one php5.6-sqlite3 |
# |
Mar 15th 2018, 10:22 |
johnwayne |
@garas how do you mean? |
# |
Mar 15th 2018, 10:22 |
bnb_dev |
I think installed the sqllite3 |
# |
Mar 15th 2018, 10:21 |
edgaras.jan |
check cake error log for 'DebugKit not enabled. You need to either install pdo_sqlite, define the "debug_kit" connection name.' |
# |
Mar 15th 2018, 10:20 |
edgaras.jan |
does php has pdo_sqlite extension? |
# |
Mar 15th 2018, 10:19 |
bnb_dev |
? |
# |
Mar 15th 2018, 10:19 |
bnb_dev |
so how can I use DebugKit for theme and theme folder is in plugins |
# |
Mar 15th 2018, 10:18 |
bnb_dev |
actually I am using theme from plugins folder |
# |
Mar 15th 2018, 10:17 |
bnb_dev |
but it's toolbar is not showing |
# |
Mar 15th 2018, 10:17 |
edgaras.jan |
reindex $matchedData by place_id, so you avoid inner loop |
# |
Mar 15th 2018, 10:17 |
bnb_dev |
I enabled debug_kit |
# |
Mar 15th 2018, 10:14 |
johnwayne |
The problem is when we have a lot of data, then is too slow because in foreach loop he make update each time after price is matched |
# |
Mar 15th 2018, 10:13 |
johnwayne |
Hello, does anybody can help me with refactoring bulk update... here is working solution https://pastebin.com/Wr7cseQj |
# |
Mar 15th 2018, 09:52 |
sandeep556 |
Ok |
# |
Mar 15th 2018, 09:51 |
sandeep556 |
like i want to change city state from Brazil to ... |
# |
Mar 15th 2018, 09:51 |
sandeep556 |
Yes i did this but how to change from one scope to other |
# |
Mar 15th 2018, 09:51 |
saeideng |
you can not move nodes from one scope to other scope IMO |
# |
Mar 15th 2018, 09:50 |
saeideng |
you can separate tree(s) with `scope` |
# |
Mar 15th 2018, 09:49 |
sandeep556 |
Ok thanks |
# |
Mar 15th 2018, 09:49 |
neon1024 |
All I can think is that you would need to regenerate the tree afterwards, but I’ve no idea if that would work. |