0
votes

I'm looking for a solution to load multiples images from ftp media server to cloudinary. I searched on the net and I found these links:

  1. How can I bulk upload my images?
  2. Bulk upload large images to cloudinary
  3. Data upload options:

If your images are already publicly available online, you can specify their remote HTTP or HTTPS URLs instead of uploading the actual data. In this case, Cloudinary will fetch the image from its remote URL for you. This option allows for a much faster migration of your existing images

There is no information about uploading images from an ftp media server or something like that. All the available solutions are using a script and then upload images one by one.In my case I have on my server many folders of images and in each folder there are many sub-folders and I have about 10000 images.How can I do this?

1

1 Answers

0
votes

You can upload to Cloudinary using an FTP source like this (in PHP):

\Cloudinary\Uploader::upload('ftp://username:[email protected]/my_image.jpg');