Download and unzip in a Web Directory.
create a mysql database and a user with access to it.
Unix Command line method
mysql -u root -p
create database openexpert;
create user openexpert identified by 'yourchosenpassword';
grant all on openexpert.* to openexpert