Skip to content
Advertisement

Symfony serve looks for PHP libraries at the wrong place

I had previously multiple installations of PHP on my computer. I deleted all of them and reinstalled php from the official source which is now found at C:\php.

The symfony serve command (ran from PhpStorm console) looks for missing modules in the wrong directory. (I don’t even have xampp anymore, but even if I copy the files to the location it tries, it doesn’t work) Xampp folder is not in my Path env variable either.

JavaScript

Any ideas on this?

Advertisement

Answer

First problem turns out to be that PhpStorm does not see my PHP installations on C: for some kind of weird permission error. (PATH was correct).

The compiled Windows version of PHP downloaded from php.net defaults the extension folder to C:/php, which had to be overriden using php.ini‘s extension_dir="D:/php/ext" directive.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement