Why getting “The input type is invalid” when accessing edit.php?

Ok I’m not sure this will fix your issue, but your error in your log (especially the file where it is called from) tells me it’s a query vars issue likely from a bad regex or a bad routing of the request in your nginx config. replace your line fastcgi_split_path_info ^(/blog)(/.*)$; with fastcgi_split_path_info ^(.+\.php)(/.+)$; and … Read more

Deprecated issue in WordPress [closed]

First find C_Widget_Gallery widget code. Search all the theme directory first. Specially any *.php file with -widget name part. It can also be initiated by a plugin. So search in the plugin directory if you don’t find it in themes directory. Then find $this->WP_Widget inside the class and replace only just it with parent::__construct. And … Read more

is_wp_error is missing error

Both wp_remote_post and wp_remote_get return WP_Error object if there is an error. You could use the get_error_message function of WP_Error class to receive the error and show it. $request = wp_remote_post( $url ); if ( is_wp_error( $request ) ) { // If the request has failed, show the error message echo $request->get_error_message(); } else { … Read more

Homepage Not Found Error [closed]

I’ll try my best to guide you trought some ideas that could solve your problem. 1 – Make sure your .htaccess is set to default If you check the WordPress CODEX, you could compare your default .htaccess to the one you have on your root folder. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)