akaDJon

Results 19 comments of akaDJon

The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu How progress to solve this problem?

> Troubleshooting: > > * Does the error persist on reload? > * What does `document.getElementById('gradebook_grid')` return in the browser console? not persist. one load everything ok, the next load...

> @akaDJon Ah, you're on `release/2020-11-18.29`. Try the latest release? no. it's difficult. but this error appeared recently. whole a year everything was ok

remove mix, install webpack is the only posible solution?

Fixed the problem by explicitly specifying the paths to php and composer ```php $process = proc_open('/usr/bin/php8.1 /usr/local/bin/composer install --dry-run', $descriptors, $pipes); ```

> Thanks. We obviously need to check that `PHP_BINARY` isn't an empty string. > > I'm curious to see what happens if you run: > > ``` > $process =...

the same error if ```php $process = proc_open(['php', '/usr/bin/composer', 'install', '--dry-run'], $descriptors, $pipes); ```

> You can try now with `composer self-update --snapshot`, I updated to the latest xdebug-handler. I see. Xdebug still working and Composer dont do restart. It's fixed trouble, but maybe...

dump(PHP_BINARY); ``` /usr/sbin/php-fpm8.1 ``` it is not standart php file: `/usr/bin/php8.1` but all exists ``` root@dev# ls /usr/sbin/php-fpm8.1 -rwxr-xr-x 1 root root 5504136 Oct 6 2023 /usr/sbin/php-fpm8.1 root@dev# ls /usr/bin/php8.1...