• Resolved salviof

    (@salviof)


    When access de admin page from my Varnish service, the admin page do not load with sucess.

    How access the admin behind a proxy?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support Rafi Alam

    (@raficode)

    Hi @salviof ,

    Can you tell me exactly what issues are you having? Are you getting any error messages?

    Let me know.

    Thank you.

    Thread Starter salviof

    (@salviof)

    Ok, my varnish cache all GET request, To work, I had to ignore cache when path containing one of this 3 parts “wp-media-storage-to-cloud” “wp-cloud” “w2cloud”

    Thats working fine now..

    Thats a example in VCL varnish:

    if (req.url ~ "wp-media-storage-to-cloud"){
        return (pass);
      }
    
      if (req.url ~ "wp-cloud"){
        return (pass);
      }
    
      if (req.url ~ "w2cloud"){
        return (pass);
      }
    • This reply was modified 3 years, 8 months ago by salviof.
    Thread Starter salviof

    (@salviof)

    The exactly what issues cause are: They do not load the new sent configuration, then the sync button does not appear.

    Plugin Support Rafi Alam

    (@raficode)

    Hi @salviof ,

    Can you please give us a screenshot of the entire page and the error log console?

    However, you may purge reverse proxy cache to see if this works.

    Also, can you please try disabling the Varnish cache on WordPress admin to check if it’s working?

    Let me know if this works.

    Thank you.

    Thread Starter salviof

    (@salviof)

    Yes when purge they works once time.

    Plugin Support Rafi Alam

    (@raficode)

    Hello @salviof ,

    Great! Feel free to let us know if you face any further issues.

    Thank you.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Admin Page do not Load when use cache’ is closed to new replies.