HotShots from Snap Shots

HotShots from Snap Shots

HotShots is compiled page on snapshots where you can find the most popular weekly top Shots from each snapshot category. Currently, snapshots delivering following type of snap: VideoShots, MapShots, MovieShots, PhotoShots, PreviewShots, ProductShots, ProfileShots, RSS Shots, StockShots, AudioShots, WikiShots, WowShots. Each of the following shot show 9 shots broken into…continue reading →
Internet Explorer(IE) 8 Beta Released

Internet Explorer(IE) 8 Beta Released

Recently, Microsoft has released a beta version of Internet Explorer 8 with the new cool features. This beta version comes with new exciting features. Let describe here what's new in IE8. Web Slices Feature - This is new that enables users to subscribe to content directly within a webpage. WebSlices…continue reading →
Snap Shots Engage New Update

Snap Shots Engage New Update

Snap Shots now leverage with cool new technology to serve unique custom snap shot for blog post. The new technology called Snap Shots Engage. SnapShot uses Artificial Intelligence and linguistic analysis technology to drive custom snap on the basis of key phrases in blog post. By default, this same technology…continue reading →
Setup database backup cron job on godaddy hosting account

Setup database backup cron job on godaddy hosting account

Many time you need to setup Cron Job to schedule specific task at regular interval. This article covering cron job setup on godaddy account. Godaddy account has different interface then traditional cpanel. These instructions apply to WordPress.com server installations. Here are the steps to take daily backup of DBS. Here are the steps to setup cron job for daily backup of database.
  • Log Into your GoDaddy.com account.
  • Choose "My Hosting Account" from the "Hosting & Servers" menu on the top navigation bar.setup database backup cronjob on godaddy hosting account
  • In the Hosting Account list, click the Open link beside the account you want to use for your website.Godaddy Hosting Account Setup
  • In the Hosting Manager window, click the Cron Manager icon or "Cron Manager" menu item under content menu. Please refer snapshot below.Godaddy Cron Manager Setup Instruction
  • Now you are on the page where you need to setup cron job. Before this, you need to collect following information with the database..Host Name: (Usually localhost but in case of godaddy account it will be look like mysql139.secureserver.net) Database Name: Name of the backup database. User Name: User name of associative database. In case of godaddy account it will be same as db name. DB Password: Database user password for authentication.
  • Please use following mysqldump command to get backup of desired database. Please change required parameter with your own.Syntax: mysqldump --opt -Q -h (hostname) -u (user-name) --password=(password) (database-name) > (full path of backup file)Example: mysqldump --opt -Q -h p3smysql5.secureserver.net -u mywebdb --password=password mywebdb > /home/content/b/a/b/babychep/html/backups/daily.sql Please replace variable with new one and put entire command in command text box. No need to use browse button here. Select how you want to run these command hourly,daily,weekly and click on save button to save cron job. Godaddy Cron Setup Command
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