You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
attachments in CouchDB can have a "/" in their filename AFAIK and this seems to work with update-attachment. however when supplying attachments up front with the put-document function this doesn't seem to work. might be a CouchDB limitation though, not too sure.
The text was updated successfully, but these errors were encountered:
it may be that put-document url-encodes the slashes?
this behavior is generating me problems since my couchdb is behind a apache proxy that doesn't set "AllowEncodedSlashes On" and then it get this behavior:
With the default value, Off, such URLs are refused with a 404 (Not found) error.
then when I use put-document to put a design document it encodes the slash and I get a 404 from apache without reaching couchdb.
not encoding slashes would be the solution, but I don't know if it would break something else
attachments in CouchDB can have a "/" in their filename AFAIK and this seems to work with update-attachment. however when supplying attachments up front with the put-document function this doesn't seem to work. might be a CouchDB limitation though, not too sure.
The text was updated successfully, but these errors were encountered: