jaybharatjay
Forum Replies Created
-
Forum: Plugins
In reply to: [WCM User Language Switcher] Fatal error: json_last_errorMy solution is universal like for core php developer also.:)
Forum: Plugins
In reply to: [WCM User Language Switcher] Fatal error: json_last_errorI am saying if your php 5.2.x version not supporting the
json_last_error()
then one solution for that i.e:
return ((is_string($string) && (is_object(json_decode($string)) || is_array(json_decode($string))))) ? true : false;Forum: Plugins
In reply to: [WCM User Language Switcher] Fatal error: json_last_errorfunction isJson($string) {
return ((is_string($string) && (is_object(json_decode($string)) || is_array(json_decode($string))))) ? true : false;//PHP Version 5.2.17 server
//json_decode($string);
//return (json_last_error() == JSON_ERROR_NONE);//PHP Version 5.3.10-1ubuntu3.6 mylocal
}Forum: Fixing WordPress
In reply to: /%postname%/ pages aren’t working after upgrade to 2.8.11.Close your eye or 5 second then open:
2.Goto admin panel of wordpress and permlinks section using settingd.
3.choose “Custom Structure” /%postname%/
But another work remain there if you are using WAMP SERVER click on wamp icon goto Apache-> Apache Module and check on the rewrite_moduleCongrates work is done now your page shows like this:
http://192.168.1.219/blog/hello-world/