Hello help givers...
I just exported my Joomla 1.5 website that i created on my local machine as a localhost to my zymic web hosting account. I uploaded all the files via FTP and i also imported the database though PhpMyAdmin. I understand that i need to make changes to the configuration.php. But when i try to go to my website i get this error: Database Error: Unable to connect to the database:Could not connect to MySQL.
This is my configuration.php file:
NOTE: all variable that have an * as values are supposed to contain something but i removed for privacy.
<?php
class JConfig {
var $offline = '0';
var $editor = 'jce';
var $list_limit = '20';
var $helpurl = 'http://help.joomla.org';
var $debug = '0';
var $debug_lang = '0';
var $sef = '0';
var $sef_rewrite = '0';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = '*';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '0';
var $log_path = '*';
var $tmp_path = '*';
var $live_site = '';
var $force_ssl = '0';
var $offset = '-6';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1';
var $ftp_port = '21';
var $ftp_user = '';
var $ftp_pass = '';
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'bzonline.zxq.net';
var $user = '8724_alvillas';
var $db = 'bzonline_zxq_db';
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = '*';
var $fromname = '*';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpsecure = 'none';
var $smtpport = '25';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'bzonline.zxq.net';
var $MetaAuthor = '1';
var $MetaTitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password = '*';
var $sitename = '*';
var $MetaDesc = '*';
var $MetaKeys = '*';
var $offline_message = 'This site is down for maintenance. Please check back again soon.';
}
?>


Thank you...
Hope someone can help me.