Sebastiaan Luca

Results 21 comments of Sebastiaan Luca

@DavyDeCoster Ah yes! ``` chunk-vendors.51d78ec2.js:6 TypeError: Cannot read property 'count' of undefined at o (app.dbed4ebf.js:1) at o.Tn.e._render (chunk-vendors.51d78ec2.js:6) at o.r (chunk-vendors.51d78ec2.js:6) at rr.get (chunk-vendors.51d78ec2.js:6) at rr.run (chunk-vendors.51d78ec2.js:6) at Xn (chunk-vendors.51d78ec2.js:6)...

Same error here, same structure. ```php 'hosts' => [ [ 'scheme' => env('ELASTICSEARCH_SCHEME'), 'host' => env('ELASTICSEARCH_HOST', 'localhost'), 'port' => env('ELASTICSEARCH_PORT', 9200), 'path' => env('ELASTICSEARCH_PATH', null), 'user' => env('ELASTICSEARCH_USER'), 'pass' =>...

The "everything as one URL" doesn't seem to work here (using the `ClientBuilder`). It ignores the user and password, can only set it using `setBasicAuthentication()`. So configuring different nodes with...

For those like me finding this issue when running into the bug below and are (maybe) using Laravel 9 or Symfony 6 components, you can manually set the HTTP client...

In v6, this builds a vendor.css file in `public/styles` but also a main.css file in `public/scripts` (?? 😄): ```js mix.js('resources/scripts/main.js', 'public/scripts/main.js').vue({extractStyles: 'public/styles/vendor.css'}) ```

The regex replace thing would come in handy when starting a package from https://github.com/thephpleague/skeleton for instance. Currently throws a `Composer\Json\JsonValidationException` when using it with the `--git` argument since the placeholders...

👋 Was looking for a way to disable the package during tests. Currently it sends a ton of requests to Google 😬

For anyone still getting this error and using queued jobs with more than 1 worker, you can now prevent the search indexing jobs from overlapping so they don't all try...

@slampenny Look into _git flow_ and Sourcetree if you want to do it right :) Then just create a release and the tag to GitHub. Packagist should take care of...

Can confirm the issue, even with an identical config file as in the repo. ``` // returns `null` $this->app['config']->get('debugbar.remote_sites_path') // returns `null` $this->app['config']->get('debugbar.remote_sites_path', '') // returns null 🤷‍♂️ $this->app['config']->get('debugbar.remote_sites_path', 'uhmmm')...