Dambas

Results 17 comments of Dambas

And i also have issue on php 8.0.5 when try to exec command `phalcon project test` PHP Fatal error: Uncaught Error: Class "Phalcon\Config" not found in D:\domains\phalcon-project\vendor\phalcon\devtools\src\Builder\Component\AbstractComponent.php:48 Stack trace: #0...

ok, i fixed it by: 1. AbstractComponent.php change `15: use Phalcon\Config;` to `use Phalcon\Config\Config;` 2. ProjectBuilder.php change `15: use Phalcon\Config;` to `use Phalcon\Config\Config;` 3. BuilderException.php change `15: use Phalcon\Exception;` to...

I have a similar error and I didn't have enough laravel-echo documentation to figure it out on my own. I'm using laravel-broadcasting and a custom authentication method (authEndpoint) which simply...

I finally figured out what I needed. I simply re-inherited the Broadcast::auth($request) method, and then did what I needed serverside: ``` Route::middleware('jwtAuth')->group(function () { Route::post('/broadcasting/auth', function(Request $request) { return Broadcast::auth($request);...

@AbaoFromCUG what do u mean? I gues yes, but how I can check this. Im not copy, but this going up in app.asar.unpacked when building But in app.asar, I have...

if I have tme, I'll check what happends if I require library by next code ``` const libraryPath = path.join(__dirname, 'app.asar', 'absolute path to opencv4nodejs.node library inside app_asar folder'); const...

Here are my steps to fix this problem: 1. install cv 4.8.0 and set package.json this: ``` "opencv4nodejs": { "autoBuildOpencvVersion": "4.8.0" }, ``` 2. install this https://github.com/UrielCh/npm-opencv-build 3. run this...

@UrielCh if you were able to install this with NodeJS20 please tell me what am I doing wrong: https://github.com/UrielCh/opencv4nodejs/issues/121

right now I found `buildRoot` interesting, maybe if I specify it..