All you need in order to succesfully install a word press is 4 data:
database name, database username, db password and the database host. In general the hosting providers send this information when they set up the user's account. If you don't have the you should request again. I don't really know cp but it's possible that you will find those info there as well. If you have them you should open the wp-config-sample.php file for editing. Set the data
('DB_NAME', 'yourdatabasenamecomeshere'); // The name of the database
define('DB_USER', 'yourdatabaseusernamecomeshere'); // Your MySQL username
define('DB_PASSWORD', 'yourdatabasepasswordcomeshere'); // ...and password
define('DB_HOST', 'yourdatabasehostcomeshere') /it's usually localhost.
As the next step you should save this file as wp-config.php. After finishing with it copy the content of the packaging directory via ftp to your server. Copy only the contant without the directory.
The last step will be installing by running the yourdomain.com/wp-admin/install.php file in your browser. Follow the steps and you will be happy
