This is a common problem caused by using a quick install from your host such as Fantastico or similar. To fix it you will need to know how to connect to your site via FTP, otherwise you can contact your host to fix it for you.
Solution
- Connect to your server via FTP(Client such as FileZilla or Hosting File Manager) and download your wp-config.php file
- Open the file in an HTML or code editor
- Add the following to the bottom of the file beginning on a new line.
define('FTP_USER', 'username'); define('FTP_PASS', 'password'); define('FTP_HOST', 'ftp.example.org:21');
- Make sure there are no blank lines at the end of the file, then save it.
- Ensure the file is saved in the same format, ie. do not save it as wp-config.php.txt or else
- Back on your server, rename the existing file to wp-config-old.php and upload the edited version. If anything goes wrong you can delete the edited copy and restore the original to wp-config.php
Reference:
http://codex.wordpress.org/Editing_wp-config.php#FTP.2FSSH_Constants