MySqlD does not start in newest OSX Yosimite version.

Start Terminal and sudo as root user

In you Applications folder find your installation. For magento bitnami you will find magento-version.. so you will have to look for it.

In …/mysql/scripts/ edit the file  ctl.sh

Right after #!/bin/sh  add on a new line:     unset DYLD_LIBRARY_PATH

 

And start all.

Make WordPress and qtranslate work in 3.9.1

qtranslate.php needs to contain the following statements:

// qTranslate Editor will only activated for the given version of WordPress.
// Can be changed to use with other versions but might cause problems and/or data loss!
define(‘QT_SUPPORTED_WP_VERSION’, ‘3.9.1’);
define(‘QT_STRING’, 1);
define(‘QT_BOOLEAN’, 2);
define(‘QT_INTEGER’, 3);

Good luck!!