Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Gutenberg editor fails to load styles and images for backend only when hosting wordpess as an Azure App Service

オープン
#192 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
4/5
見積もり時間
3〜5日
初心者へのやさしさ
32/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
azure, php, wordpress
領域
backend, cloud, web-dev

調査の方向性

新規の Azure WordPress App Service デプロイから開始し、生成された wp-config.php の WP_HOME、WP_SITEURL、WP_CONTENT_URL、HTTP_HOST、HTTPS の値を調査します。Azure Front Door または CDN の有無それぞれで Gutenberg エディターの障害を再現し、その後、デスクトップ、タブレット、モバイルの各表示でスタイルと画像が読み込まれることを確認します。

索引モデルが issue の本文から書いたものです。

説明

When doing a install of wordpress app service in Azure always results in a unusable gutenberg editor. Typically I always enable azure frontdoor or cdn and blob storage but from my testing this bug also happens without ANY additional features added. I have not determined the exact cause of why Azure app service is the only hosting environment that has this issue but things I have noticed that differ with Azure from traditional hosting and even other hypescalers such as AWS is Azure app services utilize environment variables and host variables for each of the values defined in the wp-config.php. An example of their out of the box config is as follows:

<?php
//Begin Really Simple Security session cookie settings
@ini_set('session.cookie_httponly', true);
@ini_set('session.cookie_secure', true);
@ini_set('session.use_only_cookies', true);
//END Really Simple Security cookie settings
//Begin Really Simple Security key
define('RSSSL_KEY', 'dsfasdfasdfadsfasdfasdfasdfasdfasdfsf');
//END Really Simple Security key


/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the web site, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */


/** overriding HTTP_HOST header */
if (!empty(getenv('AFD_DOMAIN'))) {
	$_SERVER['HTTP_HOST'] = getenv('AFD_DOMAIN');
}

//Using environment variables for memory limits
$wp_memory_limit = (getenv('WP_MEMORY_LIMIT') && preg_match("/^[0-9]+M$/", getenv('WP_MEMORY_LIMIT'))) ? getenv('WP_MEMORY_LIMIT') : '128M';
$wp_max_memory_limit = (getenv('WP_MAX_MEMORY_LIMIT') && preg_match("/^[0-9]+M$/", getenv('WP_MAX_MEMORY_LIMIT'))) ? getenv('WP_MAX_MEMORY_LIMIT') : '256M';

/** General WordPress memory limit for PHP scripts*/
define('WP_MEMORY_LIMIT', $wp_memory_limit );

/** WordPress memory limit for Admin panel scripts */
define('WP_MAX_MEMORY_LIMIT', $wp_max_memory_limit );


//Using environment variables for DB connection information

// ** Database settings - You can get this info from your web host ** //
$connectstr_dbhost = getenv('DATABASE_HOST');
$connectstr_dbname = getenv('DATABASE_NAME');
$connectstr_dbusername = getenv('DATABASE_USERNAME');
$connectstr_dbpassword = getenv('DATABASE_PASSWORD');

// Using managed identity to fetch MySQL access token
if (strtolower(getenv('ENABLE_MYSQL_MANAGED_IDENTITY')) === 'true') {
	try {
		require_once(ABSPATH . 'class_entra_database_token_utility.php');
		if (strtolower(getenv('CACHE_MYSQL_ACCESS_TOKEN')) !== 'true') {
			$connectstr_dbpassword = EntraID_Database_Token_Utilities::getAccessToken();
		} else {
			$connectstr_dbpassword = EntraID_Database_Token_Utilities::getOrUpdateAccessTokenFromCache();
		}
	} catch (RuntimeException $e) {
		$connectstr_dbpassword = '';
		error_log($e->getMessage());
	}
}

/** The name of the database for WordPress */
define('DB_NAME', $connectstr_dbname);

/** MySQL database username */
define('DB_USER', $connectstr_dbusername);

/** MySQL database password */
define('DB_PASSWORD',$connectstr_dbpassword);

/** MySQL hostname */
define('DB_HOST', $connectstr_dbhost);

/** Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );

/** The Database Collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );

/** Enabling support for connecting external MYSQL over SSL*/
$mysql_sslconnect = (getenv('DB_SSL_CONNECTION')) ? getenv('DB_SSL_CONNECTION') : 'true';
if (strtolower($mysql_sslconnect) != 'false' && !is_numeric(strpos($connectstr_dbhost, "127.0.0.1")) && !is_numeric(strpos(strtolower($connectstr_dbhost), "localhost"))) {
	define('MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL);
}


/**#@+
 * Authentication Unique Keys and Salts.
 *
 * Change these to different unique phrases!
 * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
 * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
 *
 * @since 2.6.0
 */
define( 'AUTH_KEY',         'asdfasdfasdfdasdfasdfasdfasdfasfsadfsa' );
define( 'SECURE_AUTH_KEY',  'asdfdsafasdfasdfasdfasdfasdfasdfasdfsadfsad' );
define( 'LOGGED_IN_KEY',    'asdfasdfasdfsadfsadfdsafsadfsadfasdfasdfasdf' );
define( 'NONCE_KEY',        'asdfasdfasdfasdfasdfsadfdsafsadfsdafsdafsdads' );
define( 'AUTH_SALT',        'asdfasdfasdfsadfasdfsadfsadfasdfasdfsadfsadfsdafsadfsd' );
define( 'SECURE_AUTH_SALT', 'asdfsadfasdfadsfasdfsdafsdafsadfasdfdsafdsfdsafdsafdsaf' );
define( 'LOGGED_IN_SALT',   'sdfsadfdsafsadfasdfdsafdsafdsfdsfdsfdsafdsafdsafdsa' );
define( 'NONCE_SALT',       'asdfasdfdasfdsafdasfdsafadsfasdfdsafdsafdsafdsafdsafdsafsad' );

/**#@-*/

/**
 * WordPress Database Table prefix.
 *
 * You can have multiple installations in one database if you give each
 * a unique prefix. Only numbers, letters, and underscores please!
 */
$table_prefix = 'wp_';

/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://wordpress.org/support/article/debugging-in-wordpress/
 */
define( 'WP_DEBUG', false );

/* That's all, stop editing! Happy blogging. */
/**https://developer.wordpress.org/reference/functions/is_ssl/ */
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
	$_SERVER['HTTPS'] = 'on';

$http_protocol='http://';
if (!preg_match("/^localhost(:[0-9])*/", $_SERVER['HTTP_HOST']) && !preg_match("/^127\.0\.0\.1(:[0-9])*/", $_SERVER['HTTP_HOST'])) {
	$http_protocol='https://';
}

//Relative URLs for swapping across app service deployment slots
define('WP_HOME', $http_protocol . $_SERVER['HTTP_HOST']);
define('WP_SITEURL', $http_protocol . $_SERVER['HTTP_HOST']);
define('WP_CONTENT_URL', '/wp-content');
define('DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST']);

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', __DIR__ . '/' );
}

/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';

As you can see they utilize $_SERVER and getenv() to reduce putting hard coded values in and seems pretty standard like it should work and allows extra security and flexibility surrounding the domain. However, the gutenberg editor is completely unusable and is missing styles and images. I was able to get the styles to work by modifying the default wp-config .php line as shown:

define('WP_CONTENT_URL', '/wp-content');

to

define('WP_CONTENT_URL', $http_protocol . $_SERVER['HTTP_HOST'] . '/wp-content'); 

This fixes the styling issue so it pulls straight from the content folder via an absolute path. However this for some reason does not fix the images not loading on the gutenberg editor itself. I have tried endlessly with no solution to fix this issue. I tested this on a different web host and I was able to replicate this strange behavior in Azure by setting the values of WP_HOME and WP_SITEURL to '' as such:

define('WP_HOME', '');
define('WP_SITEURL', '');

I did find that if I install this one particular third party block editor generateblock it does magically fix the issue for styles and images for desktop view only. If you switch to tablet or mobile everything is broken as usual.

I am struggling with this and hoping there is a solution other than "switch away from Microsoft Azure app services...." as I have invested in some 3 year reservations as well as migrated multiple sites to azure and this should work in this environment a well. To recreate this issue I recommend just spinning up a quick azure wordpress app service (check azure front door just to compare) and you will see regardless it will fail for the gutenberg editor for desktop, tablet, and mobile view and be unusable.

I have included a few pics to show the issue but the best bet to solving is doing a fresh deployment to recreate:

Image Image
主要言語
HCL
スター
139
フォーク
84
PR マージ指標
30日以内にマージされた PR はありません

環境構築

このプロジェクトには開発コンテナ、Dockerfile、コントリビューションガイドがありません。まず README を読み、一般的な手順ははじめてのコントリビューションガイドを参照してください。

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

Azure/wordpress-linux-appservice のほかの issue

Azure/wordpress-linux-appservice の issue をすべて見る

似ている issue

Backend & API Design の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。