• Resolved kaisar10

    (@kaisar10)


    Hi,

    Great plugin!

    When I download pdf file product images are missing in the table. What is causing this issue?
    Please help.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author David Jensen

    (@dkjensen)

    Hi

    I can’t say for sure without looking at your website. Would you mind sharing the URL, you can email me at [email protected] if you prefer not to publicly disclose.

    Thread Starter kaisar10

    (@kaisar10)

    Hi,

    Thank you for the quick response. I had set basic http authentication on my entire website. By removing it images are back. But I want to keep basic authentication for my home page and images should also show. Is it possible?

    Website link: https://bit.ly/2sl15uD

    Plugin Author David Jensen

    (@dkjensen)

    It looks like you are using Apache, try setting an authentication exception for the folder where your images are located, something like this:

    AuthType Basic
    AuthName ‘Authentication required’
    AuthUserFile /app/www/.htpasswd

    # Allow access to excluded diretories
    SetEnvIf Request_URI “^/wp-content/uploads/(.*)$” noauth=1
    <RequireAny>
    Require env noauth
    Require env REDIRECT_noauth
    Require valid-user
    </RequireAny>

    You will need to adjust the AuthUserFile to where your .htpasswd is located as well as the Request_URI where your images are.

    Thread Starter kaisar10

    (@kaisar10)

    After adding this, problem is still there. I have sent you my conf file through email kindly check if there is any issue.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Product images are mission on PDF’ is closed to new replies.