SAve file tempate Server connect

When saving a file in server connect, we have a field “template”, but no possibility to choose with the data picker to built it. Is it a way to to it manually for example : $_GET.iduser+’-’+$_GET.filename or car do the same as put file for S3 where we can do this.

Any Idea of the syntax to use to embed the two get in the template ?

Just enter:

{{$_GET.iduser}}-{{$_GET.filename}}{ext}

Screenshot_52

BTW - If you are using a server connect form, then it should be POST variables, not GET.

1 Like

No, i use a loadfile, resize it, save it

Thanks for this answer

It’s creating a file like this :slight_smile:

image

but the content of the file is ok :+) at least

You have not entered what i suggested.
It should be exactly:

{{$_GET.iduser}}-{{$_GET.filename}}{ext}

ok it’s workinh with {{$_GET.iduser}}-{{$_GET.filename}} otherwise I have twice the extension

thanks