3D FlipBook - How to edit source entry

n***y@gmail.com
2020-10-31
2020-10-31

I am trying out this exceptionally good plug in and would like to manually edit the "Source" entry to point to an external web server.

The reason is that my web hosting has space issues and I am hosting my PDFs on a small local web server

Many thanks for any guidance!

Replies

a***r@3dflipbook.net
2020-10-31
2020-10-31

Watch https://www.youtube.com/watch?v=U2nFc4Ksjuo , do not forget about CORS policy, add:

# CORS for PDFs
<IfModule mod_headers.c>
<Files ~ ".*\.pdf$">
Header add Access-Control-Allow-Origin "*"
Header add Access-Control-Allow-Methods "GET"
Header add Access-Control-Allow-Headers: "Range"
Header add Access-Control-Expose-Headers: "Accept-Ranges, Content-Encoding, Content-Length, Content-Range"
</Files>
</IfModule>

in .htaccess of your PDF server.

Log In to leave a comment