Changes between Initial Version and Version 1 of Ticket #62542
- Timestamp:
- 11/23/2024 12:19:06 AM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #62542
- Property Focuses administration added
-
Property
Component
changed from
GeneraltoPlugins
-
Ticket #62542 – Description
initial v1 1 1 A fatal error occurred due to the latest update and is causing problems in the database. Even after I disabled all plugins and installed older wordpress versions, the problem remains due to the cron. 2 2 3 {{{ 4 [22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /.../wp-includes/functions.php on line 6114 5 [22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /.../wp-includes/functions.php on line 6114 3 6 4 [22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/civitaic.com/httpdocs/wp-includes/functions.php on line 6114 5 [22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/civitaic.com/httpdocs/wp-includes/functions.php on line 6114 6 [22-Nov-2024 22:43:55 UTC] PHP Fatal error: Uncaught TypeError: Unsupported operand types: string + int in /var/www/vhosts/civitaic.com/httpdocs/wp-admin/includes/class-wp-plugins-list-table.php:189 7 [22-Nov-2024 22:43:55 UTC] PHP Fatal error: Uncaught TypeError: Unsupported operand types: string + int in /.../wp-admin/includes/class-wp-plugins-list-table.php:189 7 8 Stack trace: 8 #0 / var/www/vhosts/civitaic.com/httpdocs/wp-admin/plugins.php(553): WP_Plugins_List_Table->prepare_items()9 #0 /.../wp-admin/plugins.php(553): WP_Plugins_List_Table->prepare_items() 9 10 #1 {main} 10 thrown in / var/www/vhosts/civitaic.com/httpdocs/wp-admin/includes/class-wp-plugins-list-table.php on line 18911 11 thrown in /.../wp-admin/includes/class-wp-plugins-list-table.php on line 189 12 }}} 12 13 13 14 The error comes from this function: 14 15 {{{ 15 16 foreach ( $recently_activated as $key => $time ) { 16 if ( $time + WEEK_IN_SECONDS < time() ) {17 unset( $recently_activated[ $key ] );18 }19 }20 17 if ( $time + WEEK_IN_SECONDS < time() ) { 18 unset( $recently_activated[ $key ] ); 19 } 20 } 21 }}} 21 22 My correction: 23 {{{ 22 24 foreach ( $recently_activated as $key => $time ) { 23 25 if ( (int) $time + WEEK_IN_SECONDS < time() ) { … … 25 27 } 26 28 } 27 29 }}} 28 30 The problem has been fixed for me.