You are viewing demo account.
LAMP (Linux / Apache / MySQL / PHP) - PHP 8.2 / MySQL 8.0 - Disk Usage: 0.201 / 1GB (20.1%) - Hosting Plan (Premium)
Onion Addresses

Use this interface to manage your onion addresses.

Onion Address Actions
demo6mlm22qrq3bg5ewrwotcpndiyp3euwic6klmbvv6x6yvr2ehslyd.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 = 'demo6mlm22qrq3bg5ewrwotcpndiyp3euwic6klmbvv6x6yvr2ehslyd.onion';
define('WP_SITEURL', $protocol . $host . '/');
define('WP_HOME', $protocol . $host . '/');