David B.

Results 10 issues of David B.

Hey 👋 Thanks for this useful package, I'm using it in some of my projects :) Now on to the issue: When generating the autoload files with composer I encountered...

See previous discussion here: https://github.com/docker/compose/issues/8993#issuecomment-986199325

Thanks for this nice library! One thing that I constantly encounter is that I can't perform multiple actions (lighten, mix, ...) on one color but instead need to recreate Color...

hacktoberfest

Ubuntu 14.04 LTS Let's Encrypt extension version: 2.5.3-354 Plesk Onyx version: 17.8.11 Update #8 This issue occurs since one of the updates in 2018. Let's Encrypt renews the certificates automatically,...

Currently, the Plugin API Integration Test fails with SQL error: ``` [20-Dec-2023 12:34:03 UTC] [localhost] Error in Matomo (tracker): Error query: Error query: SQLSTATE[42S22]: Column not found: 1054 Unknown column...

bug
nostale

Add support for Matomo Mobile: https://matomo.org/mobile/

enhancement
nostale

| Q | A | ------------- | --- | Is bugfix? | ❌ | New feature? | ✔️ | Breaks BC? | ❌ | Tests pass? | ✔️ Hi, thank...

feature

Update the "Scaling with MongoDB" section: https://github.com/techpines/express.io/tree/master/examples#scaling-with-mongo

``` js app.get('/home', function(req, res) { req.session.variable = 'value'; req.session.save(function() { console.log(req.session); }); res.send('\ var socket = io.connect();\ Home content'); }); app.io.route('disconnect', function(req) { console.log('-------------------------------'); console.log(req.session); req.session.variable = ''; req.session.save(function()...

If I try to remove the X-Powered-By header which is sent by express(.io) it's still sending: ``` js app.io.configure(function() { app.io.disable('X-Powered-By'); app.io.set('log level', 2); }); ```