We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Affected page https://www.php.net/manual/en/pdo.installation.php
Issue description
How to enable PDO is undocumented.
Steps to reproduce
./configure --disable-all --with-pdo-sqlite
configure: error: You've configured extension pdo_sqlite, which depends on extension pdo, but you've either not enabled pdo, or have disabled it.
Suggested fix document how to explicitly enable pdo in https://www.php.net/manual/en/pdo.installation.php
Through trial-and-error, I have deduced that the correct flag is --enable-pdo , this works:
./configure --disable-all --enable-cli --enable-pdo --with-pdo-sqlite
But the problem is that I had to guess the flag, it appears to be undocumented.
(And it wasn't even my first guess, given that pdo-sqlite is --with-pdo-sqlite, my first guess was --with-pdo , which does not work.)
--with-pdo-sqlite
--with-pdo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Affected page
https://www.php.net/manual/en/pdo.installation.php
Issue description
How to enable PDO is undocumented.
Steps to reproduce
./configure --disable-all --with-pdo-sqlite
results in:Suggested fix
document how to explicitly enable pdo in https://www.php.net/manual/en/pdo.installation.php
Through trial-and-error, I have deduced that the correct flag is --enable-pdo , this works:
But the problem is that I had to guess the flag, it appears to be undocumented.
(And it wasn't even my first guess, given that pdo-sqlite is
--with-pdo-sqlite
, my first guess was--with-pdo
, which does not work.)The text was updated successfully, but these errors were encountered: