FTP upload file error (beginner)

Hello, I’m new to Make, but I’m loving it!

Everything in my scenario works perfectly, except for sending the PDF file to my FTP.
Here’s my scenario: https://i.ibb.co/JpK9c8f/make.jpg

This PDF is generated using the “Google Doc - Download a Document” module.
With the “FTP - Upload a File” module, I can successfully connect, I select my file, but I get the following error:

Handled error  
type    BundleValidationError  
message Validation failed for 1 parameter(s).  
detail  Invalid filename in parameter 'fileName'.  

I don’t understand what’s causing the issue.
Thanks in advance for your help!

I’ve got it!
Make sure that the file name respects the following rules:

  • No special characters (e.g. ?, /, \, :).
  • No spaces or accents, if possible (replace them with _ underscores).

Example: myfile.pdf is correct, but myfile#1.pdf can cause problems.

2 Likes