DIY Главная Медиа Logo

Конечная сайт для проектирования и создания вашей установке домашнего кинотеатра и Привет-Fi.

0Wordpress ЛоготипWordPress обновления прогресс

У меня был вопрос на некоторое время теперь, когда установка обновления Wordpress не показывает каких-либо сообщений или прогресса. Обновления обычно делают установки, но это сложно, чтобы узнать, когда обновления закончили. Есть несколько потоков онлайн с возможными решениями, но большинство из них не было полезно в моем случае.

Обновить: See solu­tion at the bot­tom of this post

When updat­ing plu­gins the fol­low­ing pro­gress mes­sages should be dis­played. In my case they are not show­ing up.

The update pro­cess is start­ing. This pro­cess may take awhile on some hosts, поэтому, пожалуйста, будьте терпеливы.
Enabling Main­ten­ance mode…
Updat­ing Plu­gin plu­gin-name
Down­load­ing update from plugins.
Unpack­ing the update…
Установка последней версии.
Remov­ing the old ver­sion of the plugin…
Plu­gin upgraded successfully.
Akismet updated suc­cess­fully. Показать / Скрыть детали.
Dis­abling Main­ten­ance mode. Все обновления были завершены.
действия: Return to Plu­gins page | Return to Word­Press Updates.

This applies to all oth­er updates too, из которых есть полный список на word­press сайт

Prob­ably the most com­mon cause is PHP zlib com­pres­sion as described by kung­fu­josh on the word­press for­ums. Sadly I already have zlib com­pres­sion set to off so that isn’t my issue.

The issue must be a set­ting in word­press, PHP-FPM, or nginx some­where but I have been unable to loc­ate it so far.
Обновить: I have ruled out causes in php.ini and the php-fpm con­fig file using a full test VM. There appear to be mul­tiple nginx set­tings inter­act­ing that are caus­ing the issue for me.

The first set­tings that seem to be rel­ev­ant are the use of gzip and brotli being turned on. This seems to pre­vent the page load­ing pro­gress­ively. It should be easy enough to turn these off for the updates page using a little cus­tom func­tion in word­press that sets the con­tent-encod­ing such that nginx wont com­press the files

/******************************************\
* Отключить GZIP и brotli для обновления страницы *
\******************************************/
функция disable_gzip_brotli() {
заголовок(«Content-Encoding: идентичность»);
}

если ( базовое имя($_SERVER["SCRIPT_FILENAME"], '.Php') == "Обновление процессоров" ) {
add_action( 'в этом', 'Disable_gzip_brotli' );
}

Unfor­tu­nately this on it’s own has­n’t proven the solu­tion to my updat­ing issues as some­thing else causes the page to nev­er dis­play any out­put, pro­gress­ive or oth­er­wise. There is anoth­er nginx set­ting that is needed.

After much search­ing I finally iden­ti­fied the issue in my head­ers that are set.

Простое изменение от add_header X-Frame-Options DENY always; к add_header X-Frame-Options SAMEORIGIN always;

оставьте ответ