Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bbbenji

    (@pandaweb)

    Although permalinks are configured and work, they are causing the issue I described above. Disabling permalinks has resolved this issue, but that is not quite the answer to the problem. Will investigate further.

    SOLUTION: NGINX configuration problem indeed

    WRONG

    location / {
    try_files $uri $uri/ /index.php?q=$request_uri;
    }

    RIGHT

    location / {
    try_files $uri $uri/ /index.php?$args;
    }

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Commonly we see incorrect permalink/rewrite rules with NGINX which make the page ignore querystrings. Check your config.

    Thread Starter bbbenji

    (@pandaweb)

    Thanks Mike Jolley, I was actually in the process of updating my second comment with the answer. Issue has been resolved.

    I’ve been trying to find the answer for the past 3 days. I re-installed almost everything. It drove me crazy, nothing seemed to work at all. But it clearly was Nginx. I only registered to say thank you pandaweb. You saved me god knows how many more hours.

    I’m happy now ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Endless loading on checkout page’ is closed to new replies.