How long do i have to wait until i can use my service
Your Hostworld service activates as soon as your invoice shows Paid in the client area. Common delays include payment authentication, DNS propagation and SSL certificate issuance. Follow these steps to get your service running quickly.
How long do I have to wait until I can use my service
In most cases you can start using your Hostworld service as soon as your first invoice shows as Paid in our client area. Our billing system (WHMCS) provisions your VPS in Virtualizor or your hosting account in cPanel immediately after a successful payment. The most common delays are payment authentication or clearance, DNS and SSL certificate issuance.
Before you start
- Have access to your Hostworld client area at portal.hostworld.uk. This is WHMCS. Orders, invoices and tickets live there.
- Be ready to complete Strong Customer Authentication if your bank asks for it. If you see a 3‑D Secure prompt, finish it in your banking app. Until you do, the invoice remains pending and nothing provisions.
- Know how you will point your domain at us. For our cPanel hosting, our nameservers are: ns1.serverworld.uk, ns2.serverworld.uk, ns3.serverworld.uk and ns4.serverworld.uk.
- Expect DNS delegation changes at a registrar to take up to 48 hours worldwide. It is often quicker, but plan for up to two days.
- Let AutoSSL issue after DNS points to us. It runs automatically and also on demand in cPanel. It will not issue if your domain resolves to the wrong IPv4 or IPv6 address.
- Do not rebuild a VPS OS to “speed things up”. Re‑install OS in Virtualizor creates a fresh VPS without any data. That wipes the disk.
- Do not use “Cancel Order” in WHMCS to tidy up. Cancelling an order runs Terminate on any active services in that order. That destroys a live service.
Step 1: Confirm your invoice is Paid
This determines when provisioning starts.
- Log in to portal.hostworld.uk using your WHMCS account.
- Open the invoice for your new service and check its status. It must say Paid before WHMCS will create anything.
- If you used a card and saw a 3‑D Secure or SCA prompt, finish that authentication. Until it is completed the gateway marks the payment as pending, so WHMCS will not auto‑provision.
- If you used a bank‑based method, allow for clearance. PayPal eChecks typically take 4–7 business days to clear. Stripe ACH payments in WHMCS remain Payment Pending until they clear. Provisioning will only begin after the funds settle and WHMCS marks the invoice Paid.
If your invoice shows Paid but you still cannot see an active service after a short while, open a support ticket so we can check the order log.
Step 2: Check your order and service status
This tells you whether WHMCS has created your service.
- In the client area, view your Orders or Services list.
- Look at the order status. WHMCS only provisions from orders that are not Pending or Fraud. If an order remains Pending, the module create action will not have run and the service will not exist yet.
- Look at the service status. It should say Active once created. Pending means it has not been created. Cancelled means it has been terminated.
If an order is flagged for review or shows Fraud, it will not provision. Do not try to cancel and reorder. Open a support ticket and we will advise next steps.
Risk reminder: Do not click Cancel Order to experiment. WHMCS will issue a Terminate to any active services in that order, which deletes them.
Step 3: Start using shared, reseller or WordPress hosting (cPanel)
Once the service is Active, your cPanel account exists and you can log in from the client area. On our side, cPanel accounts are created immediately when the create action completes.
Point your domain at Hostworld
To use our DNS, change your domain’s nameservers at your registrar to:
- ns1.serverworld.uk
- ns2.serverworld.uk
- ns3.serverworld.uk
- ns4.serverworld.uk
Nameserver changes can take up to 48 hours to propagate globally. Avoid making large DNS record changes at the same time as a nameserver switch. Update or import your DNS records into the new zone first, then change nameservers. This reduces inconsistent answers while the change spreads.
Make sure the new zone contains everything you need: A and AAAA for the site, MX for email, SPF, DKIM and DMARC if you will send mail. Missing records can take your site or email offline during the 24–48 hour delegation window.
Test what your domain resolves to
Do this to confirm DNS is pointing to the right server before relying on it. First install a DNS tool on your workstation or a server you control.
AlmaLinux 9: this installs the dig tool for DNS lookups.
# install DNS utilities
sudo dnf install -y bind-utils
Ubuntu 24.04: this installs the dig tool for DNS lookups.
# update package lists and install DNS utilities
sudo apt update
sudo apt install -y dnsutils
Now query the A and AAAA records to see where the domain points.
AlmaLinux 9: this prints the IPv4 and IPv6 addresses that your domain currently resolves to.
# show IPv4
dig +short A example.com
# show IPv6
dig +short AAAA example.com
Ubuntu 24.04: this prints the IPv4 and IPv6 addresses that your domain currently resolves to.
# show IPv4
dig +short A example.com
# show IPv6
dig +short AAAA example.com
If you see an unknown IPv4 or a stray IPv6 address that does not exist on our server, fix your DNS before you force HTTPS or expect AutoSSL to issue.
Preview your site before DNS changes
You can work on your site immediately by editing your computer’s hosts file to point your domain at the server IP from cPanel. cPanel documents this method under “How to modify your hosts file”. Remember to remove the entry once DNS is live so your computer stops bypassing the public DNS.
Step 4: Let AutoSSL issue your certificate
AutoSSL runs automatically for new cPanel accounts and by a cron every three hours. You can also run it on demand in WHM (Manage AutoSSL) or in cPanel under Security → SSL/TLS Status.
AutoSSL requires Domain Control Validation. If your domain does not resolve to the hosting server, or resolves to the wrong IPv4 or IPv6 address, DCV fails and no certificate is issued. Typical errors mention HTTP DCV or unmanaged DNS. Fix the DNS first, then run AutoSSL again in cPanel.
You can check whether HTTPS is live once DNS points correctly.
AlmaLinux 9: this fetches only the headers to confirm a 200/301/302 response over HTTPS.
# quick HTTPS check
curl -I https://example.com/
Ubuntu 24.04: this fetches only the headers to confirm a 200/301/302 response over HTTPS.
# quick HTTPS check
curl -I https://example.com/
Do not enable HSTS or force HTTPS in your application until a valid certificate is present. Forcing HTTPS without a certificate makes the site appear broken.
Step 5: Start using your VPS (Virtualizor)
Once the service is Active in WHMCS, your VPS exists in Virtualizor. You can reach the Virtualizor console from the Hostworld client area. From there you can start and stop the VPS, reboot, rebuild, launch a VNC console and mount an ISO.
If you click Re‑install OS, Virtualizor creates a fresh VPS without any data. That wipes the disk. Only rebuild if that is what you want and you have a current backup.
Check the VPS is online
Use SSH to connect to your VPS using the IP address and credentials shown in Virtualizor.
AlmaLinux 9: this initiates an SSH session to your VPS.
# connect to your VPS (replace with your IP and user)
ssh [email protected]
Ubuntu 24.04: this initiates an SSH session to your VPS.
# connect to your VPS (replace with your IP and user)
ssh [email protected]
If the SSH connection fails and you cannot reach the console either, check Virtualizor for any queued Tasks. Provisioning and rebuilds appear there until they complete. If a task appears stuck for longer than expected, open a support ticket.
Run initial updates
Keeping the OS current reduces known risks. These commands update the package lists, then install updates.
AlmaLinux 9: this refreshes package metadata and installs the latest updates.
# update the system
sudo dnf -y update
Ubuntu 24.04: this refreshes package metadata and installs the latest updates.
# update the system
sudo apt update
sudo apt -y upgrade
If you plan to host websites on the VPS, you can proceed to install your web stack next. Our VPS guides cover typical next steps.
Step 6: Decide if you need a domain transfer
You do not need to transfer a domain to start using Hostworld. Updating nameservers or DNS records is enough to point a domain at our hosting.
- gTLD transfers like .com, .net and .org typically complete in about five days once started, assuming the domain is not within a 60‑day lock from a new registration or a previous transfer.
- .UK transfers can complete very quickly once actioned and can take place immediately after registration according to Nominet.
If you are migrating DNS providers as part of a move, do not change lots of DNS records and the nameserver delegation at the same time. Make record changes, allow up to 24 hours, then switch nameservers. This lowers the chance of mismatched answers during propagation.
Step 7: If you are still waiting
- If your invoice is Unpaid or Pending: complete SCA if prompted, or wait for the bank method to clear. eChecks and ACH are not instant.
- If your order is Pending or Fraud: WHMCS will not create the service. Open a support ticket.
- If your service is Active but you cannot log in: try the panel from the client area again, or use the VNC console for VPS. If still blocked, open a support ticket.
- If your site is not showing on your domain: check DNS answers for A and AAAA records, point them to our server, wait for propagation, then run AutoSSL in cPanel.
What next
- For VPS customers: pick your stack and harden your server. See our VPS guides for next steps.
- Looking for a new server in the UK with our own data centre in Maidenhead, Berkshire: review our Linux VPS plans.
- Need help at any point: open a support ticket so we can look at your order and logs.
Common questions
My invoice says Paid but the order still shows Pending. What does that mean?
WHMCS only provisions services from orders that are not Pending or Fraud. If an order remains Pending after payment, the module create action has not run so the service does not exist. Open a support ticket and we will check the automation log and complete the setup.
How long does DNS take after I change nameservers?
Nameserver delegation can take up to 48 hours to take effect globally. It is often quicker, but you should plan for up to two days. During this time different visitors can see different answers. Set up the new DNS zone completely before switching nameservers to avoid gaps for the website and email.
When will my SSL certificate appear in cPanel?
AutoSSL runs automatically on account and domain creation and then by a job every three hours. It only issues if the domain resolves to the hosting server’s correct IP addresses. If you see HTTP DCV or unmanaged DNS errors, update your DNS to point to the server, then open cPanel → SSL/TLS Status and run AutoSSL again.
Can I start building my site before DNS is live?
Yes. Edit your local hosts file to map your domain to the server IP shown in cPanel. cPanel’s “How to modify your hosts file” article has the locations for Windows, macOS and Linux. Remove the entry once DNS points to the server or you will keep bypassing public DNS.
What happens if I click Re‑install OS or Cancel Order?
Re‑install OS in Virtualizor creates a fresh VPS without any data. That wipes the disk. Cancel Order in WHMCS also sends a Terminate command for active services in that order, which deletes them. Use both with extreme care and only if you intend the result. If unsure, open a support ticket first.