Category Archives: Development

MySQL: How to solve “[MY-013360] mysql_native_password is deprecated”

Have you ever looked through your server logs and seen something like this? [MY-013360] [Server] Plugin mysql_native_password reported: ”mysql_native_password’ is deprecated and will be removed in a future release. Please use caching_sha2_password instead’ This is because, as you can see … Continue reading

Posted in Development, Linux | Tagged | Leave a comment

From SVN to Google Cloud Source Repositories

I have been maintaining my own SVN server for many years, but in order to share code and make use of managed services, it was time to migrate some of my repositories to Git. There are many tutorials for svn-git … Continue reading

Posted in Development, Linux, Mac OS X | Leave a comment

PHP PDO: How to solve “Cannot execute queries while other unbuffered queries are active”

While migrating one of my hobby projects from the PHP mysql extension to PDO, I came across this error: PHP Fatal error:  Uncaught exception ‘PDOException’ with message ‘SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. … Continue reading

Posted in Development | Leave a comment