Thread Starter
al3ilm
(@al3ilm)
I found the reason for the first message:
The addition has not been installed correctly after its latest update (for multiple sites).
The solution:
1- Disable it from all sites.
2- Delete the addition.
3- Delete the site’s cache.
4- Installing the addition.
5- Activating it in network management only.
As for the second message, it is the result of something else other than the addition.
Thread Starter
al3ilm
(@al3ilm)
The problem of the second message was solved as follows:
1- Installation of the adding “Missed Scheduled Posts Publisher by WPBEGINNER” in the following link:
https://wordpress.org/plugins/missed-scheduled-posts-publisher/
2- Plugins Activation.
Source :
https://www.wpbeginner.com/plugins/how-to-fix-the-missed-schedule-post-error-in-wordpress/
-
This reply was modified 2 years, 9 months ago by
al3ilm.
Thread Starter
al3ilm
(@al3ilm)
Sorry, the error returned again, perhaps he needs more work:
PHP Warning: mktime() expects parameter 5 to be int, string given in /home/******/public_html/wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo.php on line 206
-
This reply was modified 2 years, 8 months ago by
al3ilm.
Thread Starter
al3ilm
(@al3ilm)
PHP Warning: mktime() expects parameter 5 to be int, string given in ….. /wp-content/plugins/jetpack/modules/seo-tools/class-jetpack-seo.php on line 206
error line:
mktime( 0, 0, 0, get_query_var( ‘monthnum’ ), get_query_var( ‘day’ ), get_query_var( ‘year’ ) )
Fix the error to:
mktime( 0, 0, 0, get_query_var( ‘monthnum’ ), intval( get_query_var( ‘day’ ) ), get_query_var( ‘year’ ) )
Thread Starter
al3ilm
(@al3ilm)
PHP Warning: array_key_exists(): The first argument should be either a string or an integer in ….. /wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 2512
error line:
if ( array_key_exists( $base, $schema[‘properties’] ) ) {
Fix the error to:
if ( array_key_exists( intval( $base ), $schema[‘properties’] ) ) {