Unknown file php5fcgi.core

*.core files are usually generated by the linux OS when an un handled exception crashes an application, and it include (hopefully) useful deugging information that can help you analyze the cause. From the name of the file it was probably generated from a php5fcgi. But…. those files for sure should not be in your wordpress … Read more

Debug in WP backend

The warning states the issue is coming from custom code as in core WP no function as add_role_caps_to_job_agent exists. Try searching for add_role_caps_to_job_agent in wp-content, to see how this function is getting called and fix or uncomment the call. The other two notices will disappear once the first notice is solved as WP is trying … Read more

PHP Warning adding menu

Please check the first parameter of the function stripe_tags from \wp-includes\formatting.php on line 4670. You can check the value of the parameter by using var_dump( $variable ) and if you get array then change the array to string and then pass the string in the function. You can also use the function is_array to check … Read more

What’s the warning on line 736?

As you can see here (https://core.trac.wordpress.org/browser/tags/5.0.3/src/wp-includes/class-wp-query.php#L736), the 736 line of that file contains: $qv[‘name’] = trim( $qv[‘name’] ); And $qv is defined as: $this->query_vars = $this->fill_query_vars($this->query_vars); $qv = &$this->query_vars; So… That means, that you use WP_Query incorrectly somewhere in your code… You should pass string value as name param, and it looks like somewhere in … Read more