Cobra Forum

Plesk Panel => Webserver => Topic started by: Suhitha on Aug 11, 2025, 01:57 AM

Title: On WordPress website hosted on Plesk for Linux server
Post by: Suhitha on Aug 11, 2025, 01:57 AM

Question: On WordPress website hosted on Plesk for Linux server, pagination buttons in WordPress Admin dashboard do not work as expected

Symptoms


Cause

nginx processing the variable HTTP_HOST differently when serving HTTP/3 requests:
https://trac.nginx.org/nginx/ticket/2281


Resolution
1.Connect to the server via SSH.

2.Create or edit file /etc/nginx/fastcgi.conf and add the following configuration to it:

[b]fastcgi_param HTTP_HOST $host;[/b]
3.Restart nginx to apply the changes:

# [b]service nginx restart[/b]