Improve GMAIL Performance

Improve GMAIL Performance

It is common problem for web developers who use firebug to debug JavaScript errors. Firebug may slow down Gmail by validating each XMLHttpRequests call. This problem is same for all ajax based application have make extensive XMLHttpRequest. Firebug is highly configurable. You can turn-off firebug for specific application or you can just enable when you need to debug an application. You can disable firebug for GMail and similar application or optimize it so that it will slow down application. Disable Firebug
  • To open Firebug, Click the green (Right Sign) icon in status bar of the browser window.
  • Select 'Disable Firebug for mail.google.com.' See image for more details.
Firebug optimization to improve GMail performance Optimize Firebug
  • To open Firebug, Click the green (Right Sign) icon in status bar of the browser window.
  • Click the Console tab.
  • Select Options.
  • Uncheck Show XMLHttpRequests.
  • Click the Net tab.
  • Select Options.
  • Check Disable Network Monitoring.
  • See Figure for more details
Firebug optimization to improve GMail performanceFirebug optimization to improve GMail performance

Google using MySQL4 literally

It is known that Google using MySQL 4 for some of the their light application that are not related to search technology. However, It has been patched according to the requirement and available to download from Google website. Google guys patched to make MySql more stable in the area of…continue reading →

Word Press 2.2.3 Admin Function Acess Deny Fix “You don’t have permission to do that”

Recently, I had upgrade to word press 2.2.3 version and get rid of old word press non widget version. Everything was working fine as before except i was unable to add new category in the post. Every time word press deny access with the message "You don't have permission to…continue reading →

Difference between predefined PHP $HTTP_SESSION_VARS and $_SESSION session variables

$_SESSION $_SESSION variable is an associative array hold session variable available to the current script. This is automatic global variable also called super global variable. By default, this variable is available in all scopes throughout the script. $HTTP_SESSION_VARS Despite of $_SESSION variable, $HTTP_SESSION_VARS variable is not by default auto global…continue reading →