Here's the email message I sent to Sonic Tech Support, they won't help, sent me to this forum:
I'm in the process of trying to complete a website migration from Sonic to Hostinger.
Using FTP, I pulled a backup of the complete contents of risaaratyr.com, zipped it and passed it to Hostinger.
After redirecting DNS, the main website works, but a link from the website to the blog built with WordPress tools, and hosted at Sonic (I guess as a subdomain? I'm not knowledgeable enough about this stuff to be sure I'm getting all the terms right) that worked under Sonic doesn't work at Hostinger even though they have all the contents of the /blog and /images subfolders.
Their support says the problem is with the wp-config.php file, and here are the contents of that file:
<?php
// ** MySQL settings ** //
define('DB_NAME', 'aratyr_oc_1'); // The name of the database
define('DB_USER', 'aratyr_oc_1'); // Your MySQL username
define('DB_PASSWORD', 'f7c3ec705b0ce629e226d970f819d5c0'); // ...and password
define('DB_HOST', 'b.custsql.sonic.net');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('WP_SITEURL', 'http://risaaratyr.com/blog');
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
/* That's all, stop editing! Happy blogging. */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
According to Hostinger support, they need to have a backup of the SQL database for the blog. How do I get a backup of the database referred to in the wp-config.php file?
I'm in the process of trying to complete a website migration from Sonic to Hostinger.
Using FTP, I pulled a backup of the complete contents of risaaratyr.com, zipped it and passed it to Hostinger.
After redirecting DNS, the main website works, but a link from the website to the blog built with WordPress tools, and hosted at Sonic (I guess as a subdomain? I'm not knowledgeable enough about this stuff to be sure I'm getting all the terms right) that worked under Sonic doesn't work at Hostinger even though they have all the contents of the /blog and /images subfolders.
Their support says the problem is with the wp-config.php file, and here are the contents of that file:
<?php
// ** MySQL settings ** //
define('DB_NAME', 'aratyr_oc_1'); // The name of the database
define('DB_USER', 'aratyr_oc_1'); // Your MySQL username
define('DB_PASSWORD', 'f7c3ec705b0ce629e226d970f819d5c0'); // ...and password
define('DB_HOST', 'b.custsql.sonic.net');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('WP_SITEURL', 'http://risaaratyr.com/blog');
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
/* That's all, stop editing! Happy blogging. */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
According to Hostinger support, they need to have a backup of the SQL database for the blog. How do I get a backup of the database referred to in the wp-config.php file?