Mysql access denied error for user root@localhost in XAMPP

| By Webner

Problem: Mysql access denied error for user root@localhost when using in XAMPP server (windows) even when credentials are correct. Solution: Actually the problem is not in code, the issue is that by-default mysql in xampp allowed passwordless authentication in mysql, so

Open specific local Outlook window from .msg file

| By Webner

C# : Triggering the Local Outlook for forward, reply and reply all actions from existing .msg file For the desktop based applications when user is dealing with the store outlook files in msg format we can open local outlook when

Problem – First submenu item same as main menu in WordPress

| By Webner

While implementing a custom plugin in wordpress, we can simply add submenu items for our plugin by this code: public function PluginMenu() { $this->my_plugin_screen_name = add_menu_page( ‘My Reviews’, ‘My Reviews’, ‘manage_options’, __FILE__, array($this, ‘RenderPage’), ‘dashicons-format-quote’ ); } But in wordpress,