I am using the multifile plugin and it's working as expected however i cannot figure out how to get the id attribute and the name attribute of the slave file uploads to be the same.
I've set namePattern to '$name$i' so it increments the name attribute of the original but the id attribute only adds the number to the end so I end up with the following:
id = attach - name = attach0
id = attach1 - name = attach1
id = attach2 - name = attach2
...
This almost works but then my application (which I cannot change easily) completely misses the first attachment.
Thanks in advance for any help you can provide!
- Vince