Eboubaker Bekkouche

Results 29 comments of Eboubaker Bekkouche

@theofidry but if the extension name `ext-zend-opcache` was not correct then composer will fail on the autoload step but it does not, and composer does not allow the name `ext-zend...

for this command: `pvm php-install`. For downloading windows releases I think you can parse the PHP archive https://windows.php.net/downloads/releases/archives/ it has all windows versions from 5.x to 8.x

it's a bit sad to see the project went from php to go.

There was an option to just include a standalone version which includes the full PHP release+pvm and a bat file to run the pvm app. put this all in zip...

Yeah it worked. In my css file i added an exception for the class `.vicp-img` (which is used by this package for the edit zone image) ```css .vicp-img{ max-width:unset; }...

@zepingouin We dont have cygwin can you simply attach your modified compiled exe here in a zip?

it happened to me after I changed my processor (I have moved my drive from my laptop to my desktop pc)

For now i had to modify the qemu run command ```bash mem=$(free -m | grep -oP '\d+' | head -n 1) cpus=$(nproc) qemu-system-x86_64 -machine q35 -m $mem -smp cpus=$cpus -cpu...

Don't completely disable SVGO instead just disable the `removeViewBox` option: ```js module.exports = { chainWebpack: (config) => { const svgRule = config.module.rule("svg"); svgRule.uses.clear(); svgRule .use("babel-loader") .loader("babel-loader") .end() .use("vue-svg-loader") .loader("vue-svg-loader") .options({...