Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use this pdf.js https://github.com/mozilla/pdf.js/ library to render pdf files on my own site .. everything work fine but when I try to read files from my amazon s3 did not work ?

if I put the pdf file in my server it works fine (assets/books/my.pdf) but if I put it on another server did not. for example my file on amazon s3 : s3.amazonaws.com/MYBUCKET/MYBOOK.pdf

any ideas ? thanks ..

share|improve this question
Cross-domain issues? What do the errors say? – Styxxy May 31 '12 at 23:03
file on browser couldn't be downloaded , of firebug I saw this error : Error: A Promise can be rejected only once undefined , thanks – Ahmad May 31 '12 at 23:17
when I open my pdf file from the browser direct works fine , there is no wrong with the link at all .. – Ahmad May 31 '12 at 23:20

1 Answer

I'ts a cross-domain issue with javascript

I did it with mod_rewrite with this simple code :

RewriteRule ^MAGIC-FOLDER/(.*)$ http://BUCKET.s3.amazonaws.com/$1 [P]

so in my js file I just make the linke like this :

MAGIC-FOLDER/MY.PDF

he will get the file from amazon s3 :

http://BUCKET.s3.amazonaws.com/MY.PDF

actually there is no folder in my server with this name "MAGIC-FOLDER"

-_^

share|improve this answer
Yes, this sounds like the issue. See github.com/mozilla/pdf.js/wiki/… for more info. – brendan.dahl Jun 1 '12 at 21:45
Exactly. thanks.. – Ahmad Jun 2 '12 at 6:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.