Can you just get those extensions?
Does the new "one command" php install from the docs have no extensions?
So before I was using an older version of PHP that comes with XAMPP, and after reinstalling Windows I decided to test Laravel's new "one command" install for php. Thing is I'm using postgres for my database and I'm getting a driver not found error whenever I try to run the initial migrations. Usually this happens because
extension=pdo_pgsql
extension=pgsql
are commented out and I just need to delete the ; from php.ini on both lines and the driver is enabled.
But the php configuration that comes with the laravel one command install seems extremely barebones.
Here's the entire php.ini file:
variables_order = "EGPCS"
opcache.enable=1
opcache.enable_cli=1
I tried adding the two lines but it clearly does nto work as those extension files don't exist in the directory. Should I just abandon this approach and go back to XAMPP, or is there a way to manually install pdo_pgsql and pgsql?
Please or to participate in this conversation.