pancakes

MicrostockGroup Sponsors


Author Topic: Adobe Stock now using SFTP - password reset required  (Read 23492 times)

0 Members and 1 Guest are viewing this topic.

« Reply #50 on: June 10, 2021, 08:48 »
0
i've just gone back to uploading on the site

Steve, did you have some of these same issues and finally get past them? If so, was there some magic button that worked for you? Some secret handshake?

If so, I'd appreciate knowing what you did. Thanks!

i'm not using ftp/ftp at all - just the drag/drop on the site itself - slower than ftp but i can be working elsewhere

For still images I strongly recommend using the drag and drop method. I only use SFTP for video uploads. We appreciate all the feedback here. Thank you!

Mat

I Mat, I've switched successfully to Sftp for my video uploads but the speed is ultra slow compared to Ftp. Is it normal ? Is there something to do to increase speed ?
Thanks!


« Reply #51 on: June 10, 2021, 10:47 »
0
I can upload the photos to Adobe stock through SFTP filezilla, but why my video cant? I cant see my video on the adobe stock web. Please help

It would be difficult to troubleshoot this here. Please submit a request for support via the contact us link found at the bottom of the Adobe Stock contributor portal.

Thank you,

Mat

« Reply #52 on: June 10, 2021, 16:28 »
+2
The claim that it works with most FTP clients is not true. It does not work with sftp and lftp on Mac. It works with FileZilla only but it cannot be scripted so it is useless.

« Reply #53 on: June 12, 2021, 17:05 »
0
I had an online ftp instance on Digital Ocean.

It will no longer communicate with your SFTP.

All settings have been changed as directed by Adobe.

They do not work.

« Reply #54 on: June 22, 2021, 09:46 »
0
I can upload the photos to Adobe stock through SFTP filezilla, but why my video cant? I cant see my video on the adobe stock web. Please help

It would be difficult to troubleshoot this here. Please submit a request for support via the contact us link found at the bottom of the Adobe Stock contributor portal.

Thank you,

Mat

Hi Mat,

is it normal that the speed with Sftp upload is way slower than with Ftp ?

Thanks for helping

« Reply #55 on: June 29, 2021, 14:18 »
0
Do you have to wait for them to show up?  I've sent a set, but it isn't showing up under "New".

eta: Never mind, there they are.

« Reply #56 on: July 02, 2021, 10:42 »
0
Hi Matt,

Please ignore the private message I just sent you. The issue is resolved.

It does not seem to be possible to send you a second message through the sitemail. Or maybe I just don't get it.

Sorry everyone.

« Reply #57 on: July 02, 2021, 12:04 »
0
Hi Matt,

Please ignore the private message I just sent you. The issue is resolved.

It does not seem to be possible to send you a second message through the sitemail. Or maybe I just don't get it.

Sorry everyone.

Thanks for the update. I'm glad it worked out. As an FYI, I cannot provide official support through the MSG private message system. For anyone that needs to reach me directly with a support request, please either use the Contact Us link at the bottom of the portal with "Attn: Mat" in the subject or email me directly via [email protected]

I will be offline most of next week for the Independence Day holiday and wish you all the very best!

-Mat Hayward

« Reply #58 on: January 23, 2022, 14:00 »
0
Has anybody been able to get this to work using Python? Nothing I try works and I'm wondering if anybody else has had success. I use Python to automate all my uploads rather than using the GUI of an FTP client.

marthamarks

« Reply #59 on: January 23, 2022, 16:44 »
+1
Has anybody been able to get this to work using Python? Nothing I try works and I'm wondering if anybody else has had success. I use Python to automate all my uploads rather than using the GUI of an FTP client.

I gave up trying to FTP my images to Adobe. Now I just use their on-site uploads feature, and it works well enough.

« Reply #60 on: January 23, 2022, 17:07 »
+1
Has anybody been able to get this to work using Python? Nothing I try works and I'm wondering if anybody else has had success. I use Python to automate all my uploads rather than using the GUI of an FTP client.

I didn't try with Python, but I gave up trying to get SFTP to work and just use the drag & drop interface on the web site instead.

« Reply #61 on: January 24, 2022, 06:07 »
0
Has anybody been able to get this to work using Python? Nothing I try works and I'm wondering if anybody else has had success. I use Python to automate all my uploads rather than using the GUI of an FTP client.
I dont know anything about Python
But have you already looked for an SFTP library?
Or an SFTP upload example?

« Reply #62 on: January 24, 2022, 12:20 »
0
Has anybody been able to get this to work using Python? Nothing I try works and I'm wondering if anybody else has had success. I use Python to automate all my uploads rather than using the GUI of an FTP client.
I dont know anything about Python
But have you already looked for an SFTP library?
Or an SFTP upload example?

I have been able to get it to work using WinSCP through the GUI. However, I have not been able to get it to work with WinSCP's command line interface. I thought maybe using a Python SFTP library would help but I have had no luck there either (I just get exceptions thrown). At the end of the day, it doesn't matter if it's Python or any other programming language, what matters is that it can be done via command line so I can automate it.

Also, I upload videos, not images, so I have to use SFTP, I can't do it through Adobe's online interface.

somewhere

« Reply #63 on: January 30, 2022, 09:43 »
0

I have been able to get it to work using WinSCP through the GUI. However, I have not been able to get it to work with WinSCP's command line interface. I thought maybe using a Python SFTP library would help but I have had no luck there either (I just get exceptions thrown). At the end of the day, it doesn't matter if it's Python or any other programming language, what matters is that it can be done via command line so I can automate it.

Also, I upload videos, not images, so I have to use SFTP, I can't do it through Adobe's online interface.


Code: [Select]
"C:\Program Files (x86)\WinSCP\WinSCP.exe" /ini=nul /log="C:\path\log.txt" /command "open sftp://000000:***@sftp.contributor.adobestock.com/ -hostkey=""ssh-rsa 2048 He3/iar+1trnBj2W47D2vfNZTYIMOdkXylfaKnrnOQc=""" "mput -nopreservetime ""C:\path\*.jpg""" exit

I use this command line to upload photos to Adobe stock by running WinSCP.exe from my own .bat file or VB.net program.

Never tried with videos, but I guess it should work if you replace .jpg with .mov or .mp4

Replace 000000 with your member id, and *** with your password.

Note the -nopreservetime option that I had to add to solve a problem causing uploads to fail for some unknown reason.
« Last Edit: January 31, 2022, 06:02 by somewhere »

« Reply #64 on: January 31, 2022, 13:24 »
0
as others have mentioned, simplest to just use drag'n'drop

somewhere

« Reply #65 on: February 01, 2022, 03:49 »
0
Sure web upload is simpler, and works perfectly.

But to upload an entire batch to many agencies, and keep track with a log, a script is less time-consuming.


 

Related Topics

  Subject / Started by Replies Last post
1 Replies
4383 Views
Last post February 27, 2016, 12:31
by Difydave
3 Replies
4827 Views
Last post September 21, 2016, 16:36
by oboy
6 Replies
3985 Views
Last post June 30, 2021, 09:32
by vectorsforall
8 Replies
6096 Views
Last post July 27, 2021, 13:58
by Orchidpoet
1 Replies
781 Views
Last post July 25, 2023, 13:26
by stoker2014

Sponsors

Mega Bundle of 5,900+ Professional Lightroom Presets

Microstock Poll Results

Sponsors