Hi James,
A update here (i’m still testing he plugins).
I found out that my wp-admin page automaticly loggs off but i can work in my page. What i mean is when i go to my wp-admin page after a couple of hours, i get the errors most of the time. when i go to https://www.mydomain.com/wp-admin i need to login again every time & when i’m logged in the google sitekit works (most of the time i do not get an error at the moment). so i’m thinking the problem is in wordpress i’m thinking…
I also edit the functions.php file with the next code:
function wp_fuzzy_number_match( $expected, $actual, $precision = 1 ) {
return abs( (float) $expected – (float) $actual ) <= $precision;
}
function keep_me_logged_in_for_2_weeks( $expirein ) {
return 50400; // 2 weeks in seconds
}
add_filter( ‘auth_cookie_expiration’, ‘keep_me_logged_in_for_2_weeks’ );
—————————————————————————–
But that does not change anything in my problem.
I also have another website (same theme & most of plugins are all the same, only hosting provider is diffrent) and there i don’t have any problem at all…
Maybe you this info is will help with a solution?
Thanx!