Permalink Doesnt Work – URL Not Found

My head like wanna explode because of this problem. However I just solved the problem. the problem is here $content = base64_decode(‘IyBCRUdJTiBXb3JkUHJlc3MKPElmTW9kdWxlIG1vZF9yZXdyaXRlLmM+ClJld3JpdGVFbmdpbmUgT24KUmV3cml0ZUJhc2UgLwpSZXdyaXRlUnVsZSBeaW5kZXhcLnBocCQgLSBbTF0KUmV3cml0ZUNvbmQgJXtSRVFVRVNUX0ZJTEVOQU1FfSAhLWYKUmV3cml0ZUNvbmQgJXtSRVFVRVNUX0ZJTEVOQU1FfSAhLWQKUmV3cml0ZVJ1bGUgLiAvaW5kZXgucGhwIFtMXQo8L0lmTW9kdWxlPgoKIyBFTkQgV29yZFByZXNzCg==’); if you decode the String, you will get a text(string) which is exactly just like in .htaccess file. if you modify the .htaccess directly from the file, you will get the problem, so … Read more

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