Jan Mikeš
Jan Mikeš
Working workaround: ``` php $control->onConfirmation[] = function($data) use ($control) { $this->confirmOrder($control, $data); }; ``` ``` php public function confirmOrder($control, $data) { $control->confirmExpressCheckout(); } ``` Though i dont know it is...
Yep. As well I can see the order in both customer's and seller's accounts, but it is has "Pending" status and money are not transfered. It seem to me that...
I added logging before calling `confirmExpressCheckout()`: ``` php public function confirmOrder($control, $data) { \Tracy\Debugger::log($data, "confirm-order"); $control->confirmExpressCheckout(); } ``` I have noticed following data in all results, it might be the...
@michallhlavka that is actually not true Anyways since this was big problem for me (receiving no money on merchant's account and having all payments as pending) and i was not...
> I guess it may be useful on self-hosted runners. Sorry, i do not understand the comment. The cache can work for github runners too, but to make cache work...
> You could apt-get remove packages you no longer need after the build. Good start, not sure which are those though 😄 > Yes, you can definitely remove the build...
After removing files via ``` find ./bthrift/ -type f ! -name '*.so*' -delete find ./fizz/ -type f ! -name '*.so*' -delete find ./fmt/ -type f ! -name '*.so*' -delete find...
FYI, so far after removing for non-bistro everything except *.so* results: Before: ``` nobody@66b52e09ab45:/home$ du -hs . 4.1G . ``` After: ``` nobody@66b52e09ab45:/home$ du -hs . 2.6G . ``` Not...
Hi, for last few days i am playing with Bistro and so far i like it! There were some struggles with building and using with docker, but im fine now...
> Internally, people tend to interact with Bistro via the REST Thank you, looks like this is the way to go a was anyways my favorite solution. I was just...