• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

how to upload via SSH

yiang75

Chevereto Member
id like to upload images through SSH like i do in old versions. but on v3.xxx this is not working anymore and gives 404 not found error.

how can i do this correctly?
 
sorry for the noobness rodolfo. can you please give an example for a wget command in ssh..i tried wget but still did not work even if the image is in the images folder 🙁
 
sorry for the noobness rodolfo. can you please give an example for a wget command in ssh..i tried wget but still did not work even if the image is in the images folder 🙁

wget is something that you use to do a GET request to a target server so you can upload a remote file using the Chevereto API because is just a GET request and if you read the documentation you will notice that a GET request only works for remote upload, that is http://something.com/file.com

To upload a file you need to send a POST request using a FILE multipart or a base64 encoded string. So you need something like cURL library or use another wrapper.

I haven't wrote a SSH uploader or any command line uploader so you are on your own.
 
Back
Top