-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
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
supplied flag to turn off mysqli SSL verification if ssl_verify passed as false #4805
Conversation
If this is a connect flag, do we still need the And more importantly, while #4801 disabled SSL altogether (on PHP < 5.6.16), it did take into account what the manual says here:
Isn't it therefore better not to set |
I though the same, we are already using using Regards to Seems i need to apply for another patch for this. |
You don't need to open a new pull request, just push another commit (removing the |
Shall i comment that line or completely remove it, I am thinking may be in future they add those feature in PHP source codes so that we can start using options function again. |
Remove it, we don't keep commented-out code. |
Updated code pushed, pls check. |
Use MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT as a connection flag instead of option
Updated codes to pass MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT flag