Skip to main content

how to upload website using filezilla step by step?

 

Uploading Your Website with FileZilla: A Step-by-Step Guide

Here's how to upload your website using FileZilla:

Before you begin:

  1. Gather your credentials: You'll need your FTP hostname, username, and password provided by your web hosting provider.
  2. Download and install FileZilla: Get it from the official website: https://filezilla-project.org/


 

Steps:

  1. Open FileZilla: Launch the application.
  2. Site Manager: Go to File > Site Manager.
  3. New Site: Click the New Site button.
  4. General:
    • Protocol: Choose FTP or SFTP as per your hosting provider's instructions.
    • Host: Enter your FTP hostname.
    • Port: Typically 21 for FTP and 22 for SFTP.
    • Logon Type: Usually Normal.
    • User: Enter your FTP username.
    • Password: Enter your FTP password.
  5. Connection:
    • Click the Connect button to test the connection. If successful, a message "Connection established, ready for data transfer" will appear.
  6. Local site (your computer):
    • In the left panel, navigate to the folder containing your website files.
  7. Remote site (server):
    • In the right panel, locate the directory where you need to upload your files. This is often called public_html, htdocs, or www.
  8. Transfer files:
    • Drag and drop files or folders from the local panel to the desired location in the remote panel. Right-click and select Upload for options.
    • Alternatively, use the Queue button to add multiple files and transfer them sequentially.
  9. Verify upload:
    • Once the upload is complete, check your website to ensure everything is uploaded correctly.

Additional tips:

  • FileZilla Server: If you encounter issues connecting, ensure your web hosting provider allows FTP or SFTP connections and check if any firewalls are blocking access.
  • Transfer settings: Adjust transfer settings (Transfer > Transfer settings) like maximum connections and transfer mode (Binary for most files) if needed.
  • Advanced users: Explore advanced features like bookmarks, filters, and custom commands for efficient transfers.

By following these steps and considering the additional tips, you can successfully upload your website using FileZilla!

Comments

Popular posts from this blog

How to Add an XML Sitemap to your Blogger Blog?

  Adding an XML sitemap to your Blogger blog can help search engines like Google discover your content more efficiently. Here are two ways to do it: Method 1: Using Blogger's Built-in Sitemap Functionality: Log in to your Blogger dashboard. Click on "Settings" in the left-hand menu. Go to the "Search Preferences" tab. Under "Crawling and Indexing," enable the "Custom robots.txt" option. Copy and paste the following code into the robots.txt field: Sitemap: https://yourblogname.blogspot.com/sitemap.xml Replace yourblogname with your actual blog's name. Click "Save Changes." Blogger automatically generates and updates the sitemap at https://yourblogname.blogspot.com/sitemap.xml . You can now submit this URL to search engines like Google Search Console for faster indexing.   Method 2: Using a Sitemap Generator: Visit a website like Labnol's Blogger Sitemap Generator: [<invalid URL removed>]. Enter ...

Top 10 shortcut keys for visual studio code

  Visual Studio Code is a popular code editor known for its customization and extensive keyboard shortcuts. Here are 10 of the most useful shortcut keys to help you boost your productivity: Command Palette (Ctrl+Shift+P or Cmd+Shift+P): This is your gateway to all of VS Code's features and settings. Type in what you want to do, and VS Code will show you a list of matching commands. Opens in a new window code.visualstudio.com Command Palette in Visual Studio Code Quick Open (Ctrl+P or Cmd+P): Quickly open a file or symbol in your project by name. Opens in a new window marketplace.visualstudio.com Quick Open in Visual Studio Code Toggle Sidebar (Ctrl+B or Cmd+B): Hide or show the sidebar, which contains the Explorer, Search, SCM, and other panels. Opens in a new window gosamples.dev Toggle Sidebar in Visual Studio Code Multi-Select Cursor (Alt+Click or Option+Click): Add multiple cursors at different locations in your code to edit or delete them simultaneously. Opens in...

GET request to the above URL and return the result we would use:

// Get cURL resource $curl = curl_init(); // Set some options - we are passing in a useragent too here curl_setopt_array( $curl , array ( CURLOPT_RETURNTRANSFER => 1 , CURLOPT_URL => 'http://url.com/?item1=value&item2=value2' , CURLOPT_USERAGENT => )); // Send the request & save response to $resp $resp = curl_exec( $curl ); // Close request to clear up some resources curl_close( $curl );