Problemas al migrar de local Ubuntu (LAMP) a goDaddy (shared)

Hola todos, tengo el siguiente problema

instale sin problemas en Ubuntu/LAMP usando mysql

luego me llevo los archivos y la BD para restaurarlo en un hosting en goDaddy

la BD en el hosting esta creada asi como el usuario y su contraseña

la configuracion esta ok pero lanza error 500

el reporte dice> (el usuario y la clave esta ok en config) solo q no se porq al usuario q es kpdocs temina como kpdocs@localhost)

[Fri Mar 17 14:31:38.424699 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #5 /h in /home/xxxabogados/public_html/kpdocs/lib/private/DB/Connection.php on line 58
[Fri Mar 17 14:31:38.424693 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #4 /home/xxxabogados/public_html/kpdocs/lib/private/DB/Connection.php(141): Doctrine\DBAL\Connection->setTransactionIsolation(2)
[Fri Mar 17 14:31:38.424687 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #3 /home/xxxabogados/public_html/kpdocs/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(621): Doctrine\DBAL\Connection->getDatabasePlatform()
[Fri Mar 17 14:31:38.424681 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #2 /home/xxxabogados/public_html/kpdocs/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(328): Doctrine\DBAL\Connection->detectDatabasePlatform()
[Fri Mar 17 14:31:38.424675 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #1 /home/xxxabogados/public_html/kpdocs/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(389): Doctrine\DBAL\Connection->getDatabasePlatformVersion()
[Fri Mar 17 14:31:38.424669 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: #0 /home/xxxabogados/public_html/kpdocs/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Connection.php(429): OC\DB\Connection->connect()
[Fri Mar 17 14:31:38.424617 2017] [fcgid:warn] [pid 589817:tid 140242310874880] [client 190.236.81.64:1150] mod_fcgid: stderr: PHP Fatal error: Uncaught exception 'Doctrine\DBAL\DBALException' with message 'Failed to connect to the database: An exception occured in driver: SQLSTATE[28000] [1045] Access denied for user 'kpdocs'@'localhost' (using password: YES)' in /home/xxxabogados/public_html/kpdocs/lib/private/DB/Connection.php:58

Ya intentaste: (assumiendo que tu base es owncloud )

mysql -u root -p 
CREATE USER 'kpdocs@localhost' IDENTIFIED BY 'password';
CREATE DATABASE IF NOT EXISTS owncloud;
GRANT ALL PRIVILEGES ON owncloud.* TO 'kpdocs@localhost' IDENTIFIED BY 'password';
EXIT