Page 1 of 1

Using Filezilla to copy website files - how do I access the website

Posted: 2024-04-05 04:20
by nudz
I have downloaded all wordpress website files from a container and I want to open the website. How do I open the website?

Re: Using Filezilla to copy website files - how do I access the website

Posted: 2024-04-05 05:12
by boco
Your question is unfortunately not clear. What did you download exactly from where?

- If you merely crawled the website (crawler = website downloader), then you can open the HTML directly, but it will only be a static snapshot and won't function.


- If you directly downloaded the Wordpress files from an existing site, you are missing the most important part, the site's database. The database is not exposed as a file and thus you cannot transfer it with FileZilla, only by other means (like phpMyAdmin).
- Even if you have everything you need, you must run some sort of a web server (this can be done locally) with PHP and database interface support, plus PHP and a database solution themselves.

Easiest way would be getting the database dump and files from the site, setting up a local database solution, PHP and a web server software (like Apache or nginx), then getting and installing the Wordpress package from Wordpress' site. Finally, importing the database dump back in and copying in the missing files (like attachments) should give you a local Wordpress site.
In case you need help with that procedure, you need to refer to Wordpress documentation and support, as it's outside the scope of FileZilla. FileZilla does only the step of transferring files, nothing else.