Copying files into a website? #1688
-
What is the recommended way to copy files into a website that was created/managed by ee? Currently I am uploading a zip to temporary online location and then using Seems like there might be a better way? ps: I thought about using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
My solution was to install the Docker image Another solution would be to use something like https://github.com/schollz/croc to send the file from one machine to another. |
Beta Was this translation helpful? Give feedback.
My solution was to install the Docker image
hurlenko/filebrowser
as a container on my server, with the data directory set to:/opt/easyengine/sites/www.example.com/app/htdocs/
. With the correct server settings this gives me access to the files of the site through a web browser.Another solution would be to use something like https://github.com/schollz/croc to send the file from one machine to another.