Critical Failure
-
The main plugin with 6.6 and 6.6.1 has created a critical failure. There is no way to contact directly
-
Same here. Critical Error when logging in to the site with 6.61. After renaming the Ultimate dahsboard folder via FTP, everything works.
Can confirm it. Same problem here. Typ E_ERROR in line 165 /plugins/ultimate-dashboard/modules/setting/class-setting-output.php
Same here , critical error , after renaming ultimate dashboard plugin folder everything is back again
It looks like the the WordPress Version 6.6.1 is causing the problem. After a Downgrade to 6.6 everything is fine.
Same issue here. I face critical error on my websites, when I deactivate the plugin, everything is going back to normal.
I managed to solve it by editing my plugin file that had an error
Fatal error: Uncaught Error: Attempt to assign property “title” on null
in ../ultimate-dashboard/modules/setting/class-setting-output.php on line 165
Before:/**
* Change Howdy text.
*
* @param WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance.
*/
public function change_howdy_text( $wp_admin_bar ) {
$settings = get_option( 'udb_settings' );
if ( empty( $settings['howdy_text'] ) ) {
return;
}
$my_account = $wp_admin_bar->get_node( 'my-account' );
$my_account->title = str_ireplace( 'Howdy', esc_html( $settings['howdy_text'] ), $my_account->title );
$wp_admin_bar->remove_node( 'my-account' );
$wp_admin_bar->add_node( $my_account );
$my_account = $wp_admin_bar->get_node( 'my-account' );
}After:
/**
* Change Howdy text.
*
* @param WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance.
*/
public function change_howdy_text( $wp_admin_bar ) {
$settings = get_option( 'udb_settings' );
if ( empty( $settings['howdy_text'] ) ) {
return;
}
$my_account = $wp_admin_bar->get_node( 'my-account' );
if ( null !== $my_account ) {
$my_account->title = str_ireplace( 'Howdy', esc_html( $settings['howdy_text'] ), $my_account->title );
$wp_admin_bar->remove_node( 'my-account' );
$wp_admin_bar->add_node( $my_account );
}
}Fix my error
Note the before and after in the code if it is the same error it will be corrected
Check if this problem is the same on line 165 of the file class-setting-output.php
-
This reply was modified 1 year, 10 months ago by
Thomaz Montagnini.
-
This reply was modified 1 year, 10 months ago by
Thomaz Montagnini.
-
This reply was modified 1 year, 10 months ago by
Thomaz Montagnini. Reason: Missing a note
Wow, it works! Thank you very much!
Worked for me as well Thank you for the quick fix.
P.S. Are there any big updates coming for Pro?
Ultimate Dashboard version 3.8.1 addresses and fixes this issue. This was caused by a change in the most recent WordPress core release (6.6.1).
-
This reply was modified 1 year, 10 months ago by
The topic ‘Critical Failure’ is closed to new replies.