How to set up wp multisite?

If you have your network sites allowed to install in subdomain like abc.hgd.com then you need to setup the Wild card DNS setting. I think that could be creating the problem for you and redirecting you to the 404 error page. Can you please let me know thw steps you followed to setup your multisite … Read more

Too few arguments for printf() [closed]

printf( __( ‘%1$s – %2$s’, ‘erudite’ ), the_date( ”, ”, ”, true ) ) expects two strings; you’ve only offered one (the_date()). If you want to use two strings, you have to give it two strings. If you want printf() to use the_time() and $previousday, you need to tell it so: printf( __( ‘%1$s – … Read more

WordPress Error Missing Argument [duplicate]

That plugin is using outdated code. $wpdb->prepare used to allow the second parameter to be omitted, though using prepare without it never really made since. As of 3.5 the second parameter is required. You will need to update the plugin, if there is an update, or hack the plugin yourself which is prone to cause … Read more