thamrin0
Forum Replies Created
-
I rewrote class-email-encoder-bundle-validate.php and no more errors.
I am not sure if the Query Monitor is the cause.line408-409
$dom = new DOMDocument();
@$dom->loadHTML($content);$dom = new DOMDocument();
$internalErrors = libxml_use_internal_errors(true);
@$dom->loadHTML($content);line440-442
} //Keep for now
}
libxml_use_internal_errors($internalErrors);
libxml_clear_errors();
//Keep for nowHere is a page written in Japanese, but it is helpful.
/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php
When I load an HTML5 page, I get a php error on line 409.
@$dom->loadHTML($content);
You should be able to suppress errors with libxml_use_internal_errors and libxml_clear_errors before and after loadHTML.
I have the same problem.
I am in the following environment in Japanese.WordPress 6.4.2
Email Encoder 2.2.0
PHP 7.4.33The location columns are a little different.
wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:409 DOMDocument->loadHTML() wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:409 Email_Encoder_Validate->filter_soft_dom_attributes() wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-validate.php:78 Email_Encoder_Validate->filter_page() wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:381 Email_Encoder_Run->filter_page() wp-includes/class-wp-hook.php:324 apply_filters('final_output') wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:189 Email_Encoder_Run->apply_content_filter() wp-content/plugins/email-encoder-bundle/core/includes/classes/class-email-encoder-bundle-run.php:189 ob_end_flush() wp-includes/functions.php:5373 wp_ob_end_flush_all() wp-includes/class-wp-hook.php:324 do_action('shutdown') wp-includes/load.php:1260 shutdown_action_hook() wp-includes/load.php:1260
Forum: Plugins
In reply to: [reCAPTCHA for MW WP Form] Notice: Trying to get property in 404バージョン 1.1.1 で修正されていることを確認しました。
ご対応ありがとうございます。This problem has not been resolved.
I’m sorry. I have changed the status of the previous topic, please delete this one.
Unfortunately, this problem has not been corrected.
I recently upgraded AIOWPs from 4.4.10 to 4.4.11, but I still receive notification emails in English.
When I downgraded AIOWPs to 4.4.9, it now arrives in Japanese.
Forum: Plugins
In reply to: [Flexible Table Block] グローバル設定ボタンがないとてもわかりやすいアドバイスありがとうございます。
functions.phpに追加した、REST APIからユーザー名を消すコードが原因でした。自分がログインしている時には動かないよう下記のように変更したところ、無事にボタンが表示されるようになりました。
//REST APIからユーザー名を消す function my_filter_rest_endpoints( $endpoints ) { if ( current_user_can( 'edit_posts' ) ) { return $endpoints; } if ( isset( $endpoints['/wp/v2/users'] ) ) { unset( $endpoints['/wp/v2/users'] ); } if ( isset( $endpoints['/wp/v2/users/(?P[\d]+)'] ) ) { unset( $endpoints['/wp/v2/users/(?P[\d]+)'] ); } return $endpoints; } add_filter( 'rest_endpoints', 'my_filter_rest_endpoints', 10, 1 );
Forum: Plugins
In reply to: [Flexible Table Block] グローバル設定ボタンがないデフォルトテーマに変えたところ、表示されました!
コンソールログには特にエラーはありませんでした。こちらの環境の問題でしたね。お騒がせいたしました。
お忙しいところご対応いただきありがとうございます。- This reply was modified 2 years, 7 months ago by thamrin0.
Forum: Plugins
In reply to: [Flexible Table Block] グローバル設定ボタンがない私はサイト唯一の管理者としてログインしていますので、表示されるはずだと思います。
Thanks for your support. I am looking forward to your updates.
1.Install WordPress.
2.In General Settings, set Site Language to Japanese and Timezone to Tokyo.
3.Add plugins. (AIOWPs, WP Multibyte Patch)
4.Enable AIOWPs and WP Multibyte Patch. Disable all other plug-ins, if any.
5.Enable automatic updates. All WordPress maintenance and security releases, themes and plugins.
6.Wait for automatic updates.
7.The auto-update notification email is in English.If you have disabled AIOWPs, the auto-update notification email will be in Japanese.
- This reply was modified 2 years, 9 months ago by thamrin0.
This problem started right after the AIOWPs version was upgraded from 4.4.9 to 4.4.10.
Plug-ins other than AIOWPs will be notified in Japanese regardless of whether they are enabled or disabled.
Some plugins were automatically updated
Some themes were automatically updated
Some plugins have failed to update
Your site has updated to WordPress 5.8.3These notification emails (wp-cron.php related?) are usually all in Japanese.
The problem only occurs when I enable AIOWPs and they are in English.The problem is the same for all WordPress versions: 5.8.1, 5.8.3, 5.9, and 5.9.1.
- This reply was modified 2 years, 9 months ago by thamrin0.