¡Hola!
Desde esta mañana, la paginación en el backend ya no funciona.
En lugar de que el dominio correcto se coloque frente al enlace, solo se refiere al siguiente enlace:
https: //wp-admin/edit.php? Paged = 2
Entonces mi dominio regular ya no se usa.
En el registro de errores, recibo el siguiente error:
1811704#0: *370789 FastCGI sent in stderr: "PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-content/plugins/sitepress-multilingual-cms/API/Jobs.php on line 156; PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-content/plugins/sitepress-multilingual-cms/API/Jobs.php on line 156;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-admin/includes/misc.php on line 1397;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-content/plugins/youzify/includes/public/core/functions/general/youzify-general-functions.php on line 819;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-admin/includes/class-wp-list-table.php on line 1048;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-admin/includes/class-wp-list-table.php on line 1402;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-admin/includes/class-wp-list-table.php on line 1402;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-admin/includes/class-wp-list-table.php on line 1048;
PHP message: PHP Warning: Undefined array key "HTTP_HOST" in /httpdocs/wp-includes/functions.php on line 7417" while reading response header from upstream
Todo funcionaba bien ayer. Se puede acceder al sitio web en HTTPS.
Htaccess se ve así:
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
# BEGIN FlyingPress
# Cache-control response header for browser caching
ExpiresActive on
# Your document html
ExpiresByType text/html "access plus 0 seconds"
# Data
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType application/json "access plus 0 seconds"
# Favicon
ExpiresByType image/x-icon "access plus 1 year"
# Media: images, video, audio
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/webp "access plus 1 year"
ExpiresByType image/avif "access plus 1 year"
ExpiresByType video/ogg "access plus 1 year"
ExpiresByType audio/ogg "access plus 1 year"
ExpiresByType video/mp4 "access plus 1 year"
ExpiresByType video/webm "access plus 1 year"
# HTC files (css3pie)
ExpiresByType text/x-component "access plus 1 year"
# Webfonts
ExpiresByType font/ttf "access plus 1 year"
ExpiresByType font/otf "access plus 1 year"
ExpiresByType font/woff "access plus 1 year"
ExpiresByType font/woff2 "access plus 1 year"
ExpiresByType image/svg+xml "access plus 1 year"
ExpiresByType application/vnd.ms-fontobject "access plus 1 year"
# CSS and JavaScript
ExpiresByType text/css "access plus 1 year"
ExpiresByType text/javascript "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType application/x-javascript "access plus 1 year"
ExpiresByType application/font-woff2 "access plus 1 year"
# GZIP compression for text files: HTML, CSS, JS, Text, XML, fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/font-woff2
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE font/woff
AddOutputFilterByType DEFLATE font/woff2
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
SetEnvIfNoCase Request_URI \.gz$ no-gzip
# Response headers for cached .html.gz pages
Header set Content-Encoding "gzip"
Header set Content-Type "text/html; charset=UTF-8"
Header set Cache-Tag "vr-now.eu"
Header set CDN-Cache-Control "max-age=2592000"
Header set Cache-Control "no-cache, must-revalidate"
Header set x-flying-press-cache "HIT"
Header set x-flying-press-source "Web Server"
# Fallback when mod_headers is not available
AddType text/html .gz
AddCharset UTF-8 .gz
AddEncoding gzip .gz
# Start rewrite requests to cache if found
RewriteEngine On
RewriteBase /
# Block direct access to .html.gz files
RewriteCond %{THE_REQUEST} "/wp-content/cache/flying-press/.*\.html\.gz" [NC]
RewriteRule ^ - [F]
# Set mobile caching flag to 1 if mobile caching is enabled
RewriteRule ^ - [E=MOBILE_CACHING_FLAG:0]
# Serve mobile cache if the request is from a mobile device and mobile caching is enabled
RewriteCond %{REQUEST_METHOD} GET|HEAD
RewriteCond %{QUERY_STRING} =""
RewriteCond %{HTTP:Cookie} =""
RewriteCond %{REQUEST_URI} !^/(wp-(?:admin|login|register|comments-post|cron|json))/ [NC]
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/flying-press/%{HTTP_HOST}%{REQUEST_URI}/index-mobile.html.gz -f
RewriteCond %{ENV:MOBILE_CACHING_FLAG} =1
RewriteRule ^(.*)$ wp-content/cache/flying-press/%{HTTP_HOST}%{REQUEST_URI}/index-mobile.html.gz [L]
# Serve desktop cache if the request is not from a mobile device or if mobile caching is disabled
RewriteCond %{REQUEST_METHOD} GET|HEAD
RewriteCond %{QUERY_STRING} =""
RewriteCond %{HTTP:Cookie} =""
RewriteCond %{REQUEST_URI} !^/(wp-(?:admin|login|register|comments-post|cron|json))/ [NC]
RewriteCond %{HTTP_USER_AGENT} "!(android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile)" [NC,OR]
RewriteCond %{ENV:MOBILE_CACHING_FLAG} !=1
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/flying-press/%{HTTP_HOST}%{REQUEST_URI}/index.html.gz -f
RewriteRule ^(.*)$ wp-content/cache/flying-press/%{HTTP_HOST}%{REQUEST_URI}/index.html.gz [L]
# End rewrite requests to cache
# END FlyingPress
# BEGIN WordPress
# Die Anweisungen (Zeilen) zwischen „BEGIN WordPress“ und „END WordPress“ sind
# dynamisch generiert und sollten nur über WordPress-Filter geändert werden.
# Alle Änderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben.
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^en/wp-login.php /wp-login.php [QSA,L]
RewriteRule ^de/wp-login.php /wp-login.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
He limpiado el caché, los complementos desactivados, los enlaces permanentes regenerados, etc.
Nada ha ayudado.
¿Alguien tiene alguna idea de lo que está pasando?
¡Muchas gracias!