Michael Steininger

Results 22 comments of Michael Steininger

Is there any chance this could be implemented soon? Currently I have to use multiple environment variables like this: ``` dsn: - 'redis://%env(REDIS_SERVER_1)%' - 'redis://%env(REDIS_SERVER_2)%' - 'redis://%env(REDIS_SERVER_3)%' ```

Hi, I would like to propose a solution like https://github.com/qossmic/deptrac: There is a seperate repository (https://github.com/qossmic/deptrac-shim) which just contains the .phar file. That way the tool is still installable via...

I don't think that just adding a `nonce` option will work. There are many usages like `$.css` in the code, which would need to be rewritten to add a ``...

@Guikingone Try this if you're using jQuery: ``` $driver = $client->getWebDriver(); $driver->wait(30, 2000)->until(static function ($driver) { /** @var RemoteWebDriver $driver */ return !$driver->executeScript('return (typeof jQuery !== "undefined" && jQuery.active);'); });...

@vladginosyan12 If this is still an issue, try: ``` $crawler->filter('h1')->getElement(0)->getDomProperty('innerHTML'); ``` (for reference: https://github.com/php-webdriver/php-webdriver/discussions/921) The html() method of the domcrawler still uses `->attr('outerHTML')` which will not work if the browser...

@elpoleto I will assume that you have queueing enabled, so that the error mails will be pushed onto it and then sent. If that's the case, Sneaker tries the following:...

Hi, just wanting to throw in that the change here (https://github.com/matomo-org/matomo/blob/4.x-dev/plugins/Marketplace/config/config.php#L9) did in fact break my installation so that every request took more than 1 minute because of the long...

Same problem as described. The browser console outputs: ``` Failed to parse JSON: Unexpected token '

After looking at this for a while: It seems that the fetched form with the id "ajax_fom" is never actually written to the DOM. This is because the "bulkActionModal" (in...

@martijnhartlief I had the same problem. Have you tried the solution in #1288? `docker exec -ti sentry-self-hosted_web_1 sentry permissions add -u -p "users.admin"` did the trick for me