Open GoogleCodeExporter opened 9 years ago
Hi,
Probably, I think that your files on s3fs mounting directory seem to not have a
permission for web server process.
Or something error occurred in s3fs.
You can see the log file of s3fs by s3fs run foreground(-f option) with
debugging(-d option).
If s3fs run with something error, you can find some error output.
And if you can, please see web server logs.
Maybe 404 error causes you can find.
These logs(information) helps us for solving this issue.
Thanks in advance for your help.
Original comment by ggta...@gmail.com
on 10 Dec 2013 at 2:00
Its a backslash issue when using cPanel's Apache. When apache found index.php
it will go back one directory(public_html) again it or something else to list
files. In that case s3fs will remove last backslash. So S3 will return that
directory as a file and it will occur "The specified key does not exist."
error. Can you fix that ?
Steps:
[S3 Bucket]/cpanelUserName/ [OK 200]
[S3 Bucket]/cpanelUserName/public_html/ [OK 200]
[S3 Bucket]/cpanelUserName/public_html/index.php [OK 200]
[S3 Bucket]/cpanelUserName/public_html [500/404] !!!!!!!! (It will occur,
Because of this 500)
[S3 Bucket]/cpanelUserName/500.shtml [500/404] [OK 200]
(See the one before last, after apache founds index.php, it will ask for its
base folder without backslashes, I guess you need to catch when it will occur
and add backslash to prevent such a incidents.)
Original comment by softf...@gmail.com
on 14 Dec 2013 at 5:49
Original issue reported on code.google.com by
softf...@gmail.com
on 9 Dec 2013 at 1:19Attachments: