blood73
blood73
I want to clear queued jobs. I tried this: ``` $queued_jobs = Resque\Redis::instance()->lrange('queue:eaisto', 0, -1); if (!empty($queued_jobs) && count($queued_jobs) >= MAX_QUEUE_COUNT) { foreach ($queued_jobs as $job) { $payload = json_decode($job,...
Do you want to request a **feature** or report a **bug**? bug. What is the current behavior? Consumable In-App. Steps to reproduce: Start purchase flow. Press "Buy" button on Google...
I used InnoDB and MariaDB. In PHPMyAdmin I can see: Aborted clients | 208 k | The number of connections that were aborted because the client died without closing the...
Столкнулся с периодическим зависанием на стороне Rucaptcha. Возможно ли добавить какое-то ограничение на выполнение recognize по времени? Возможно, что-то уже есть для этого?
Способ, описанный в документации https://github.com/jumper423/decaptcha/blob/master/docs/RuCaptchaReCaptchaV3-ru.md для обхода Recaptcha V3 не работает. Возвращается ошибка: ``` [message:protected] => ERROR_EMPTY_METHOD [string:Exception:private] => [code:protected] => 0 [file:protected] => /var/www/html/autocheck/vendor/jumper423/decaptcha/src/core/DeCaptchaBase.php [line:protected] => 184 ```
I tried to use several databases with docker container. In the PHP I have: ``` $db = new MysqliDb( $config['db_host'], $config['db_user'], $config['db_password'], $config['db_name'], '4307' ); $db->addConnection('ua', [ 'host' => $config['db_host'],...