---
title: How to connect via FTP on Web Hosting Classic
description: Learn how to connect to your website via FTP on Scaleway Web Hosting Classic using FileZilla.
tags: webhosting ftp
dates:
  validation: 2025-08-21
  posted: 2022-02-24
---
import Requirements from '@macros/iam/requirements.mdx'
import WebhostingOnline from '@macros/webhosting/webhosting-online.mdx'

import image from './assets/scaleway-filezilla-newsite.webp'
import image2 from './assets/scaleway_ftp_sslcertificate_2022.webp'


<WebhostingOnline />

**F**ile **T**ransfer **P**rotocol (FTP) is a standard method for transferring files between a client (e.g., your local computer) and a server (e.g., your Scaleway web hosting server) via the internet. This guide shows you how to configure the popular and free FTP client [FileZilla](https://filezilla-project.org/) to connect to your web hosting site using FTP. You will then be able to transfer files from your local computer to your Scaleway web hosting server. For additional help, refer to the [FileZilla Client Tutorial](https://wiki.filezilla-project.org/FileZilla_Client_Tutorial_(en)).

In this example, we assume your domain name is `example.com` and your FTP account is `webmaster@example.com`. Ensure you have [created an FTP account](/classic-hosting/how-to/create-ftp-account/) before proceeding.

<Requirements />
- A Dedibox account logged into the [console](https://console.online.net)
- A **Web Hosting Classic** plan and a domain name
- An [FTP account created](/classic-hosting/how-to/create-ftp-account/)

### Installing FileZilla

1. Open the [FileZilla website](https://filezilla-project.org/) in your browser.
2. Click **Download FileZilla Client**.
    The FileZilla website detects your operating system and suggests the correct version of the FileZilla client to download.
3. Click **Download FileZilla Client** and follow the on-screen prompts to complete the installation.
    <Message type="tip">
      Depending on your operating system, you may prefer to download FileZilla from the command line of your terminal. On Ubuntu Linux, use the command `sudo apt update && sudo apt install filezilla`.
    </Message>

### Configuring the FTP Account

1. Open FileZilla on your local machine.
2. Click on **File** in the top menu, and select **Site Manager**.
3. Enter the following information in the form that displays. Remember to replace the **User** and **Password** values with [those of your FTP account](/classic-hosting/how-to/create-ftp-account/).
    <Lightbox image={image} alt="FileZilla New Site configuration" />

    - **Protocol**: FTP - File Transfer Protocol
    - **Host**: `ftp.online.net`
    - **Port**: `21`
    - **Encryption**: `Require explicit FTP over TLS`
    - **Logon Type**: `Normal`
    - **User**: `webmaster@example.com`
    - **Password**: `your-ftp-password`

      <Message type="note">
      The form may display slightly differently depending on your operating system, but the fields and their values should remain the same.
      </Message>
4. Click **Connect**. If a confirmation window appears, check and validate the certificate.
    <Lightbox image={image2} alt="SSL Certificate Confirmation" />

  You are now connected via FTP to your web hosting site. Remember that all files for your website must be stored in the `www` folder.

  Refer to the official [FileZilla documentation](https://wiki.filezilla-project.org/Documentation) for more help with using FileZilla to connect to your site and transfer files via FTP.
