You are viewing demo account.
WordPress / MySQL 8.0 - Disk Usage: 0.340 / 1GB (34%) - Hosting Plan (Premium)
Onion Addresses

Use this interface to manage your onion addresses.

Onion Address Actions
demonbhshdi57xusuvgom2rlt5ch2ywgtxu2n2rdd2up7iyu6qbqcxad.onion Main Manage
Troubleshooting

1. If you are using Wordpress and if you enabled address alias for your domains, you are required to modify the Wordpress code to fix the multiple domain issue.

Modify the file wp-config.php, and add the below code block just before the
require_once(ABSPATH . 'wp-settings.php');
line.
if (isset($_SERVER['HTTPS']) &&
    ($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) ||
    isset($_SERVER['HTTP_X_FORWARDED_PROTO']) &&
    $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
    $protocol = 'https://';
}
else {
    $protocol = 'http://';
}
$host = 'demonbhshdi57xusuvgom2rlt5ch2ywgtxu2n2rdd2up7iyu6qbqcxad.onion';
define('WP_SITEURL', $protocol . $host . '/');
define('WP_HOME', $protocol . $host . '/');