Php – Your PHP installation appears to be missing the MySQL extension which is required by WordPress

in the end i found a solution First, make sure MySQL server is running. Type the following command at a shell prompt: /etc/init.d/mysql status If MySQL is not running, enter: /etc/init.d/mysql start If MySQL is not installed, type the following command to install MySQL server: apt-get install mysql-server Make sure MySQL module for php5 is … Read more

Python referencing old SSL version

Got this working after several days. MAC OS X El Captian or greater sudo rm -rf /Library/Frameworks/Python.framework/Versions/2.7 sudo rm -rf “/Applications/Python 2.7” cd /usr/local/bin/ ls -l /usr/local/bin | grep ‘../Library/Frameworks/Python.framework/Versions/2.7’ | awk ‘{print $9}’ | tr -d @ | xargs rm brew uninstall python brew uninstall openssl brew link –force openssl Now install python and … Read more