← Go to Dashboard
SiteAnchor
Live

Your site is ready! Follow the steps below to get started.

1

Upload Your Files

Connect via FTP using the credentials in your dashboard. Use WinSCP or FileZilla with TLS/SSL Explicit encryption.

2

Install Software

One-click install WordPress, phpMyAdmin, MyBB, and more from the Packages page in your dashboard.

3

Connect Your Domain

Point your custom domain to your site from the Domain tab. Free SSL is included automatically.

4

Manage Your Database

Use phpMyAdmin or connect remotely with your MySQL credentials from the Databases tab.

Quick Code Snippets

Set a Favicon

<link rel="icon" type="image/png" href="favicon.png">

Add a Page Title

<title>My Website</title>

Link a Stylesheet

<link rel="stylesheet" href="style.css">

Add an Image

<img src="photo.jpg" alt="Description" width="400">

Create a Link

<a href="https://example.com">Click here</a>

Center Everything with CSS

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

Connect to Your Database (PHP)

$conn = new mysqli("db.siteanchor.net", "user", "pass", "db_name");
if ($conn->connect_error) die("Connection failed");

Redirect to Another Page

<meta http-equiv="refresh" content="0; url=https://example.com">