Benny Benassi
Benny Benassi
So whenever we try to read a dropbox file which vas validated by Yii::$app->dropboxFs->has() we get a string saying /tmp/XYZXYZ(xyz is random string) same issue with reading stream same with...
**Describe the bug** ``` FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project ''. > The project name must not be empty. Set...
### Description By default docker has this IP table rule ``` -A FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT ``` As I understand it needs conntracker to work....
Hey there. I'm getting this error from one of the linux machine only. Happens on this line: https://github.com/phpseclib/phpseclib/blob/3.0/phpseclib/Net/SSH2.php#L4328 ``` Undefined offset: 1 ``` ``` #0 /var/www/foobar/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php(4328): yii\base\ErrorHandler->handleError() #1 /var/www/foobar/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php(3831): phpseclib3\Net\SSH2->close_channel()...
### What steps will reproduce the problem? ->cache(true)->sum('attribute') in mysql doesn't work. ->cache(true)->one() - works ### What is the expected result? doing 100x ->cache(true)->sum('attribute') would do sql query only 1...
My scenario: pty.spawn('program.exe').on('exit', function(){ }); //Without any delay I call windows function to kill all program.exe And I don't get any on exit callback, however If I do set timeout...
``` child_process.spawn('C:\\Windows\\System32\\runas.exe', ['/user:' + self.data.id, 'cmd.exe']); ``` Works perfectly. It gives output asking for user password but when I do ``` pty.spawn('C:\\Windows\\System32\\runas.exe', ['/user:' + self.data.id, 'cmd.exe']); ``` It says that...
[?25l C:\hosting\7596>echo off [1G[?25h How to set to ignore these tags ?
### Current Behavior Can't send more than 1040 console commands (same with WS sockets, same with API) At some point sending commands return status code good via API but they...
``` class DummyJob extends BaseObject implements RetryableJobInterface { public function execute($queue): void { sleep(5); } public function getTtr(): int { return 1; } public function canRetry($attempt, $error): bool { return...