thamrin0
Forum Replies Created
-
I’m having the same problem.
Ivory Search 5.5.11
Theme Twenty Twenty-Five 1.2
WordPress 6.8.1
PHP 8.2.22Query Monitor displays the following.
_load_textdomain_just_in_time() wp-includes/l10n.php:1371 get_translations_for_domain() wp-includes/l10n.php:1409 translate() wp-includes/l10n.php:195 esc_html__() wp-includes/l10n.php:340 IS_Index_Options::get_punctuation_options() wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:579 IS_Index_Options->__set() wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:769 IS_Base_Options->set_properties() wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:155 IS_Index_Options->set_defaults() wp-content/plugins/add-search-to-menu/includes/class-is-index-options.php:266 IS_Base_Options::load() wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:104 IS_Base_Options::getInstance() wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:68 IS_Index_Manager->__construct() wp-content/plugins/add-search-to-menu/includes/class-is-index-manager.php:152 IS_Base_Options::load() wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:95 IS_Base_Options::getInstance() wp-content/plugins/add-search-to-menu/includes/class-is-base-options.php:68 IS_Loader->admin_hooks() wp-content/plugins/add-search-to-menu/includes/class-is.php:119 IS_Loader->load() wp-content/plugins/add-search-to-menu/includes/class-is.php:55 Ivory_Search->start() wp-content/plugins/add-search-to-menu/add-search-to-menu.php:159 ivory_search_start() wp-content/plugins/add-search-to-menu/add-search-to-menu.php:169 do_action('plugins_loaded') wp-includes/plugin.php:517I 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:1260Forum: 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 4 years, 1 month 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 4 years, 2 months ago by thamrin0.
This problem started right after the AIOWPs version was upgraded from 4.4.9 to 4.4.10.