-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FYI issues when [ or ] is in file or folder name #331
Comments
@yegor256 please dispatch this issue |
And, as long as we're talking about URI encoding issues, check for cases where file names include a semicolon |
@scottdunnflux good question... we're just using the URI provided as is. This means that you have to encode everything before giving us the URI. We don't touch it, we just send it to AWS "as is". Or I didn't understand the problem? |
Looks like that source didn't make it as intended, but you can still see how the URL comes across through s3auth. |
@scottdunnflux I'm sorry this bug is still not fixed. We didn't have enough funds/time to work on the project. However, recently we received some donations from our grateful users and will continue to fix issues and introduce new features. Would be great if you can also donate -- to help us move forward faster. Here is the link: https://www.0crat.com/contrib/C3RP1J1CH |
My bucket contains folders whose name contains both a [ and a ]
While browsing the bucket the following is fine
http://s3auth.example.com/AMCopyObjects/September%202016_6824718/Well_64/
But we get an error when clicking on a folder on that page that uses the following uri:
http://s3auth.example.com/AMCopyObjects/September%202016_6824718/Well_64/Layout%20[Print]_7348007/index.html
Error message is:
request URI is not encoded correctly: java.net.URISyntaxException: Illegal character in path at index 57: /AMCopyObjects/September%202016_6824718/Well_64/Layout%20[Print]_7348007/index.html
It stops there but I think it would choke at 63 as well.
According to my research the URI should be something like
/AMCopyObjects/September%202016_6824718/Well_64/Layout%20%5BPrint%5D_7348007/index.html
The text was updated successfully, but these errors were encountered: