How to create a website on Deebytes
Log in and press Create website.
A new box will appear where you can choose between the following options
  • Empty project
  • This option allows you to code everything yourself and upload your own website files using FTP.
    Login details for FTP are available at Deebytes.com. (Log in and press the menu icon, then select Login Details)


  • Wordpress
  • A WordPress website is created for you and you can choose from thousands of ready-made templates.
    Editing of the website is done via the WP Admin Dashboard

How to connect a domain to your website
It's simple.
  • Log in to Deebytes and go to the website you want to connect your domain to
  • Press Settings and enter your domain address in the Domain field
  • Go to DNS settings at your domain provider and create an A-record.
    (When you create an A-record, you will see an input field called value, there you need to enter the ip address of your website: 95.141.241.106)
Now when you visit your domain you end up on your website at Deebytes.com
How to create mail accounts for your domains
At Deebytes you can create an unlimited number of email accounts for your domains.
For example. if you own the domain mercedes.com, you can add anna@mercedes.com, support@mercedes.com, etc.

To create an email account for a domain
  • Connect your domain to your website (Follow the instructions here)
  • Log in to Deebytes and go to the settings of the website the domain is connected to, then press Add email account
You can send and read mail via Deebytes Webmail or an email client such as Outlook.
If you use an email client, contact Deebytes Support for configuration details.
How to edit your website
Using an FTP client, you can access and edit your website files.
Log in with the following information

Host: ftp.deebytes.com
Username: Same as you have on deebytes.com
Password: Same as you have on deebytes.com (if you have not changed it)
Port: 990
How to connect to MySQL with PHP
To manage and administer your databases log in to Deebytes and click on Database.

To connect with PHP

$server = 'localhost';
$user = 'Your deebytes.com username';
$password = 'Your deebytes.com password';
$database = 'The name of your database';

mysqli_connect( $server, $user, $password, $database );

All MySQL functions in PHP can be found here