Upgrade to php 5.6 and apache 2.2 to apache 2.4.17 in ubuntu 12.04

| By Webner

These are the steps to upgrade to PHP 5.6: Add the PPA containing version 5.6 of php for Ubuntu 12.04: sudo apt-add-repository ppa:ondrej/php5-5.6 sudo apt-add-repository ppa:ondrej/php5 Run these command in terminal to upgrade php : sudo apt-get update If everything

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,

Some Useful Developer tools and Extensions in the chrome browser

| By Webner

Every developer/designer should be aware of some developer tools and extensions available in the chrome browser. Chrome developer tools provide deep visibility into the web pages. We can check layout, performance loading issues and also debug Javascript issues with breakpoints.