3D FlipBook - How to activate license for each domain manually?

e***s@odemshop.com
2024-12-02
2024-12-05

I have a WPML website and I have .de .at .ch .fr. hr and .com domains. My main website is .de and I can use the plugin on this. But when I switch the language and so domain, it fails to fetch pdf. How to solve this issue? I suppose the issue is based on licence but I'm not sure. If so how to add domains manually to licenses? Error example: https://odemshop.at/info/odemshop-produkt-katalog/

Here is how we add it: https://i.ibb.co/nnHB60w/image.png

Replies

a***r@3dflipbook.net
2024-12-02
2024-12-02

Hi, you use another plugin on the provided page.

e***s@odemshop.com
2024-12-04
2024-12-04

Hi I updated the link sorry for confusion.

a***r@3dflipbook.net
2024-12-04
2024-12-04

Thank you, no it is not a license issue, it is CORS policy, you need to put in the end of .htaccess file in the root folder of your website next content:

# 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>
e***s@odemshop.com
2024-12-04
2024-12-04

Thank you, our issue solved with this code.

Log In to leave a comment