healthkart.com website review and muscleblaze chocolate whey protein unboxing

I ordered muscleblaze chocolate whey protein from healthkart.com site and this video is about my experience with healthkart shopping cart website. Healthkart.com sold the good range of Quality BodyBuilding Supplements and protein. After some research I came to know about this shopping website. This is first time I ordered from healthkart site. After ordering from this website, I got this muscleblaze chocolate whey protein 2.2lbs box in three days. It is genuine product because I got authentication sticker inside box.

I am daily consuming 2 spoons of muscleblaze chocolate whey protein. Taste is good and chocolaty. I like this product personally. I like the service of healthkart.com site.

 

 

Google Tez payment application – install and how to use – इस्तमाल करो और जीतो एक लाख रुपए Hindi

How to install, use Google Tez payment application in India, Hindi Language, UPI based payment gateway application released by Indian Finance minister Arun Jetly.

This application for only Indian people. This is the first application which is made by google for only indian people. There are many unique features in this android application. This is UPI( Unified Payments Interface ) based application which uses NPCI’s (National Payments Corporation of India).

Some of Top features are as follows:

– Transfer directly to your bank account. Simply link your account to Tez over UPI and instantly transfer money from bank to bank.
– Know your money is secure. With Google’s multi layered security and 24/7 protection by Tez Shield, you can make payments and transfer amounts both big and small, with confidence.
– With Tez’s Cash Mode, you can instantly send or receive payments to anyone nearby without sharing personal details like your phone number or bank account.

Upcoming Features
– Pay through debit and credit cards on Tez.
– Pay and set reminders for recurring bills such as DTH.

Use Tez for All Your Payment Needs
+ Pay and receive money directly from your bank accounts
Tez works with your existing bank account*, which means your money is safe with your bank and you’ll continue to earn interest. There’s no need to open a separate account or worry about reloading wallets.

*Tez works with all banks in India that support UPI.

+ Pay your friends and family anywhere anytime
Use Tez for daily transactions and also larger transfers easily. You can pay or receive money from anyone who has the Tez App or any other UPI supported app by simply selecting them from your contacts list or by entering their UPI ID.

+ Multiple layers of security from your bank, UPI, and Google
Your money is secure with Tez Shield working 24/7 to help detect fraud, prevent hacking, and verify your identity. Each transaction is secured with your UPI PIN and the app is secured with a Google PIN or fingerprint.

+ Transfer money to anyone nearby
Use Cash Mode to securely send money to people nearby without sharing private details like your phone number.

+ Made for India
Tez works with all major Indian banks and with a vast majority of smartphones, so you can pay or get paid by almost anyone. Tez offers language support for English, Hindi, Bengali, Gujarati, Kannada, Marathi, Tamil, and Telugu. To establish an account and to use Tez, you must be in India, have an Indian bank account and an Indian mobile number.

+ Get Rewarded
Get Tez Scratch Cards (TM) in the app and be eligible to win up to ₹1,000 with each eligible transaction. Plus, your weekly transactions** enroll you in Tez’s Lucky Sundays contest where you could win ₹1 lakh every week.

**Transactions must be ₹50 or more per user. See full Tez Offers Terms and Conditions for all details.

+ Paying in shops is easier than ever!
The chaiwala nearby, your milk delivery service or even your favorite salon can now accept payments on the spot with Cash Mode. Pay instantly and get quick payment confirmation all while keeping your personal and bank details private.

Small business owner? Use Tez with your current account to start accepting digital payments***. Get paid directly to your bank account instantly.

***Merchants with individual current accounts can receive up to ₹50,000 per month with UPI with no fees. Beyond that, your bank may charge fees or may impose additional requirements.

+ Pay online with Tez
Tez makes it faster and more secure to pay on apps and websites – anywhere UPI is accepted. When you checkout, look for the Tez logo or use your Tez UPI ID.

How to remove the AuthType Basic

For putting the web authentication we always use the .htaccess or apache configuration file. For removing the web auth from folder you need put following code in .htaccess file.

 

How to remove the AuthType Basic

<Directory /var/www/html/>
#AuthType Basic
#AuthName "By Invitation Only"
#AuthUserFile /etc/httpd/passwd/passwords
#Require user wpapi
#Require valid-user
</Directory>

<Directory /var/www/html/>
AuthType None
Require all granted
Satisfy Any
</Directory>

without directory use the following code.

#AuthType Basic
#AuthName “By Invitation Only”
#AuthUserFile /etc/httpd/passwd/passwords
#Require user wpapi
#Require valid-user

AuthType None
Require all granted
Satisfy Any

how to generate Facebook fan code

Many people want to add the facebook fan code and like button in your website for fb page. we given information about how to generate Facebook fan code.

how to generate Facebook fan code

For generating the facebook fan code just go to following URL:

http://developers.facebook.com/docs/reference/plugins/like-box

Just put your facebook page url in URL section. specify the width of widget and color scheme. then uncheck the show header and show stream checkbox.

how to generate Facebook fan code
how to generate Facebook fan code

If you want to show the connected photos then put value in connections textbox. But I recommend to use the zero value in that because that will slowdown your website. Then click on get code button. Then you will see the facbook in page popup. As per my suggestion use the iframe tag. Do not use the javascript tag for your website.

That will again for your website performance related. As much script tag you include in your website that much slowness will happen to your website.

Then use the iframe tag code in your website.

If you are using the wordpress then just use the text widget for showing your facebook fan widget.

If you are having any issues or questions about adding the facbook fan code in your website then please write to me.

 

how to generate Facebook fan code
how to generate Facebook fan code

convert plain text URI to HTML links in wordpress themes

When you put some URL and email address you need to manually add the link URL to that text. This action always takes the some time of wordpress blogger. WordPress has facility to add the links to your URL and email address automatically.

 

convert plain text URI to HTML links in wordpress

This facility is available in wordpress since wordpress 2.7 version but many wordpress theme and plugin developers never used this functionality.

WordPress provides the make_clickable() function for convert plain text URI to HTML links. This function able to convert URI, www, ftp, and email addresses. Finishes by fixing links within links. You just need to pass the string parameter to this method.

More detail information you can find in following file.
wp-includes/formatting.php.

You can use this method in your functions.php file also. Use the following code.

add_filter('the_content', 'make_clickable');

By using this code you are able to covert the URI, www, ftp, and email addresses in to link.

If you are having any issues or question about make_clickable method then please write to me.

how to prevent direct access to images through server

how to prevent direct access to images. To protect your images or media file you should use apache rewrite rules. To protect being linked on another website. To protect your images or media file you should use apache rewrite rules. To protect your images or other files from being linked or used on another website. Due the this issue your images may be used by many sites.

how to prevent direct access to images

how to prevent direct access to images
how to prevent direct access to images

The Apache Server’s Mod Rewrite Engine can examine the name of the document requesting a file of a particular type. If the URL of the page requesting the image file is from an allowed domain, display the image. Otherwise, return a broken image.

There are many people who try to use your website images. That will cut your bandwidth so using this code is good idea.

You can use following apache code in apche config file or put following code in your .htaccess file.

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.purabtech.in/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.purabtech.in/files/.*$ [NC]
RewriteRule .*\.jpg$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.purabtech.in/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.purabtech.in/files/.*$ [NC]
RewriteRule .*\.jpeg$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.purabtech.in/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.purabtech.in/files/.*$ [NC]
RewriteRule .*\.png$
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://images.purabtech.in/.*$     [NC]
RewriteCond %{HTTP_REFERER} !^http://www.purabtech.in/files/.*$ [NC]
RewriteRule .*\.gif$
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]

Second thing you should do. you should create the dummy index.html file and put in your images folder for so any visitor will not see the directory listing of images.

If you use above code then when other domain try to see or use the your images then they will see the following error message.

it will result in a Forbidden error.
Still if you are having any issue or question then write to me.

Google adsense MFA website list for bloggers

There are many webmaster and blogger who want to make money through online ads. Many people use the google adsence for making online money. Google adsence pay on your cost per click (CPC). Many times your user click on ads but still you dont get good amount of revenue. Because click-through-rate or CTR of your ads which displays on your website is very low. Most of the clicks are worth as low as $0.01 per click.

Google adsense MFA website list for bloggers

Some people may be heard about what is MFA (Made for Adsence).  MFA sites owners make lowest bid for adsence. So when that ads displays on your site and user clicks on that ads then you got minimum revenue. you need to block those site through google adsence.

I created the list of websites you need to blog from your google adsence. Here is list of websites you need to block.

10-bestsites.com
10-top-sites.com
101soho.com
110mb.com
12-bestsites.com
1click.com
1details.info
1helpon.info
1homeshopping.info
1s.md
1st-clothings.com
1st-day.info
1st-free-articles.com
1st-home-business.net
1st-lingerie.net
1st-portal.net
1st-swimsuit.com
1step1.info
2009chevroletcamaro.com
2020ok.com
207.97.233.242
25-topsites.com
5-top-sites.com
5toppers.com
68.178.218.75
6bestsites.com
7-topsites.com
8-topsites.com
8-topwebsites.com
8bestsites.com
8topsites.com
8topsitespro.com
9topsites.com
accessoryinfo.com
acne.com
actionad.com
advancedwebsearch.info
afwtech.com
alatest.com
all-free-info.com
allinformationabout.com
allsportinggoods.net
alltheautomotive.com
alltheindustrials.com
amazon.co.uk
amazon.com
answerstoday.com
aprido.com
aptmicro.com
aquariumbackground.info
aquariumfilterdirectory.com
aquariumplants.info
aquariumrocks.info
aquariumsfish.info
aquatic-plants.info
articlescafe.com
authentictraders.net
auto4every1.net
automercado.com
bateriafina.com
best-healthcare.info
best3websites.com
best4sites.net
best4solutions.com
best5online.com
best7sites.com
best8-sites.com
best8sites.com
best8sites.org
bestautosites.net
bestcomputingsites.com
bestcraftsites.net
besthomegardensites.com
besthomegardensites.net
bestinsurance.cc
bestpictures.org
bestresultz.com
bestringtonesoffer.com
bestsportingsites.com
bestwebdiscounts.com
bestwebpix.com
bestwebpix.net
blogspot.com
bluediamonddirectory.com
business-wiz.com
buymp3music.info
byboh.com
carpictures.com
chargerforums.com
chasingstuff.com
chiller1.net
chillerdirectory.info
chosenresult.com
ciao.de
ciao.es
clcsoftware.net
click-4-info.net
clickbank.net
clickheretogetmore.info
commerce-database.com
compare-to-choose.com
comparisonwarehouse.com
compendianet.com
conceptcar.co.uk
coolringtones.com
cv2006.biz
dbmoz.biz
dbmoz.com
dbmoz.net
dbmoz.org
dealsandoffers4u.com
decorationdirectory.info
dfc.co.za
digg4it.com
dirkw.com
discoveree.net
discoverees.net
discussit.biz
diseasedirectory.info
dodgechallenger247.com
download-hub.com
downloadrings.com
downtown-internet.com
drift-kings.com
drumsbarrelscontainers.com
dry-skin-care-guide.com
e-isn.com
e-nternet.com
eanimationschools.com
eantispyware.info
eaquariumfilter.info
easycardirectory.com
ebay.co.uk
ebay.com
ebay.com.au
ebay.de
ecomputerwallpaper.com
edigitalphoto.info
edigitalphotoalbum.com
edmunds.com
education-place.info
educational-online.com
ekaiweb.com
emotivationalvideos.com
ephotoalbum.net
eretirementjokes.com
eroyaltyfreeimages.net
everyclick.com
everyrule.com
ewossnewsbar.com
exactinformation.com
expert-expert.com
extreme-rides.com
ez4search.com
factguide.org
fant.4t.com
faqsdirect.com
fastcoolrides.com
faster-results.com
fasterinfo.com
faxingsoftware.info
figureeights.info
filtersspam.info
findexia.com
findfishpicture.info
findinfotoday.com
finditonline.ws
findmonk.com
findtop4.com
finest4.com
fishcatalog.net
fishdiscus.info
fishfooddirectory.com
fishinglistings.com
fishmealmachine.com
fishpicture.info
fishtankdirectory.com
free2select.com
freecyberzone.com
freedigg.com
freekv.net/rising
freeusefulinfo.com
freshwater-fish.info
gathersdata.com
gd-invest.com
gdn-invest.com
gdn-loan.com
geo-trotter.net
get-free-reports-tips-and.info
getinfoon.info
globalinfoexchange.com
go-2-shop.co.uk
gododgecars.com
goldfish-care-tips.com
gomeo.de
goodplace-on.net
gooyeep.com
gr8info.net
greatinfo.biz
greytones.net
gubaara.com
guide2biz.com
guideya.com
haohao99.com
has7.com
hellowebsite.cn
hi5.com
home-n-garden.net
homeandgardenhelp.net
hoodscatalog.com
hot4sites.com
idesktopwallpaper.net
imedicalanimation.com
in-atlanta.net
industryonly.net
info-on.biz
info-tree.com
info.com
info4-entertainment.com
info4-food.com
info4entertainment.net
info4garden.com
info4garden.net
info4today.info
infobeagle.com
infoforyourhealth.com
informationvistas.com
infoscouts.com
infosearch4u.com
infowikis.com
inhunt.com
instantresource.net
internet-downloads.net
ivue.com
jumblez.net
kijiji.ca
koi.es
kwikreply.com
kzxpz.org
lauda.de
lenntech.com
lexus.ca
lightingaquarium.info
links-4-you.com
linx-best.com
linxbest.com
lirated.com
lmkengineering.co.uk
local.com
makegreatpets.com
meanwhile.com
mediataskmaster.com
medicalhelpers.com
medkuz.com
megasearch.biz
megasearching.info
mozsite.com
mustinfo.net
myflashfetish.com
mylot.info
myluxuryyacht.com
myluxuryyachtcharter.com
mymoneymaker.org
mywebgold.com
netfish.net
niche-dir.com
nishikigoi-info.com
nosy-searcher.com
nytimes.com
oceleb.com
official-auto.net
oneinvestment.co.uk
oninformation.com
onpointsmarts.com
otelevision.info
petchoice.net
petinfos.com
picturesfish.info
picturetoplist.com
pimpmyride.com
pimpmyridetoday.com
popularq.com
pricegrabber.com
purebusiness.com
puredirectory.com
purityplanet.com
quotematch.com
rainbow-fish.info
rapvideos.info
ratedsolutions.com
realestate-spot.net
resourcemecca.com
reviewcars.com
reviewsbykrystal.com
richesse-succes-sante.com
ringringmobile.com
ringtonemusic.info
rockscatalog.com
romingerlegal.com
rsportscars.com
ru2006.com
rw2006.com
saltwaterfishdirectory.com
saltwaterfreshwateraquarium.com
savvygate.com
scholarshipnet.info
searchbriar.com
searchemu.com
searchemu.org
searchguide.biz
searchignite.com
searchinfo100.com
searchizoid.com
searchscribe.com
searchtonga.com
searchtorpedo.com
searchwisp.com
searchzonk.com
seek4me.org
sharkdirectory.info
shopping.com
simplemoneymachines.com
sing365.com
sitetrackers.net
smartcar101.com
smarter.com
snap2007.com
soobot.com
sport-universe.net
sportinggoodsonly.com
sports4us.com
sportscarssearch.com
sunnypages.jp
super-results.com
supersitesearch.net
sureresult.com
suvvehicles.info
tankcleaningdirectory.com
teachandtravel.net
testandtune.com
theacrylicsite.com
thebabydepartment.com
thefiltersite.com
thesearchpad.com
thextremehosting.com
thinktarget.com
tipace.com
tools4myspace.com
top-10sites.com
top-3-sites.com
top-articles-house.com
top10websites.net
top4search.com
top4search.net
top4sites.net
top8sites.com
topbeautysites.com
topbestsites.org
topdozensites.com
toptensites.biz
toptensites.org
toptensites.us
toseeka.com
tradingpost.com.au
transportationinfo.com
tropical-fish-lovers.com
tropicalfish.smmsite.com
tropicalfishdirectory.com
tropicalsfish.info
tunu.com
u-i-x.com
usedlotus.net
usefulfaqs.com
usnom.com
videoriders.com
videosstreaming.info
watertankreviews.com
watertreatmentguide.net
webagt.com
webfinder360.com
webresultz.net
webrezult.com
website-savvy.com
webzsearch.com
wesearchitforyou.com
wikimapia.org
wilddreams.org
windingroad.com
winningsites.net
world-click.com
www-aquariums.net
www-transportationinfo.com
xdope.com
xlnse.com
xtraone.co.uk
xtrasearch.net
yahoo.com
zebrasdirectory.info
zimply.com

If you have any doubts of issues then write to me.

How to delete drupal cache manually through mysql

Some time I found some issues with Drupal site. When we make changes in javascript or in PHP code we need to clear the cache from Drupal site. One time I got really weird issue. I am not able to access my druapl admin also.

delete drupal cache manually through mysql

Then I found only one option which is I need to clear the cache from Drupal. Using Drupal admin panel we can easily delete the drupal cache but how can I delete the drupal cache manually. We can delete the Drupal cache through mysql also.

 

For that you need to use following mysql commands in phpmyadmin or through mysql command line.

[viral-lock message=”Solution code is Hidden! It’s Visible for Users who Liked/Shared This article on Facebook or Twitter or Google+. Like or Tweet this article to reveal the content.”]

[mysql]

DELETE FROM cache;

DELETE FROM cache_filters;

DELETE FROM cache_menu;

DELETE FROM cache_page;

DELETE FROM watchdog;

[/mysql]

[/viral-lock]

above mysql commands will clear all the cache from drupal. If you want more drupal tutorials than visit here

How to check which CMS is used for web application

Many times our clients gives the list of web applications or websites which they like or there competitors.  We need to check that websites and we want to How to check which CMS is used for web application and technologies they used in there website for development

How to check which CMS is used for web application

There is very nice firefox plugin available which will tell us about all application and script or CMS which are are used in any website. This firefox plugin is useful for every developer.

Wappalyzer

How to check which CMS is used for web application
How to check which CMS is used for web application

Wappalyzer is an add-on for Firefox that uncovers the technologies used on websites. It detects CMS and e-commerce systems, message boards, JavaScript frameworks, hosting panels, analytics tools and several more.

Wappalyzer will be able to detect following application. Full list of application you will find here.

http://wappalyzer.com/about/#list

When you install this plugin and restart the browser. you are able to see the information about CMS or application which you are using.

In end of firefox address bar you can see the cms and application icons which is used in your website.

I specially like this firefox plugin. This is very useful for doing the homework of any website.

 

How to check which CMS is used for web application
How to check which CMS is used for web application

How to configure haproxy load balancing on amazon ec2

Confused how to configure load balancer on Amazon. Here we given you detail instructions about How to configure haproxy load balancing on amazon EC2

Many people take amazon EC2 cloud hosting. Amazon does gives the load balancer for application load balancing. But Amazon load balancer is not that much good. Amazon load balancer is not working on hardware or software base. That balancer just sending request to server one by one. Many people confused how to configure load balancer on Amazon EC2.

Here I am going to give you detail instructions about setting up the HaProxy load balancer on Amazon EC2.

How to configure haproxy load balancing on amazon ec2

What is Haproxy?

AProxy is a free, very fast and reliable solution offering high availability, load balancing, and proxying for TCP and HTTP-based applications. It is particularly suited for web sites crawling under very high loads while needing persistence or Layer7 processing. Supporting tens of thousands of connections is clearly realistic with todays hardware. Its mode of operation makes its integration into existing architectures very easy and riskless.

How to configure haproxy load balancing on amazon ec2
How to configure haproxy load balancing on amazon ec2

For Haproxy load balancing I recommend to create the micro instance first. Then login to micro instance and install haproxy on that machine. I taken the Centos 5.0 virgin os. Use following command for install the haproxy.

#yum install haproxy

Then Open the haproxy config file.

# vi /etc/haproxy.cfg

For detail configuration you should read the Haproxy config documentation.

http://haproxy.1wt.eu/download/1.3/doc/configuration.txt

Haproxy’s default load balancing style is roundrobin. Which is trusted and good. With this load balancing I am serving around two million pages daily. Means I am handling 6 to 7 million requests per day. I am not having any issues.

I used the three backend server for delivery of my application and one server for serving the static data which is having images and js and css and application files.

Here is my configuration file


global
 maxconn     4096 # Total Max Connections. This is dependent on ulimit
 daemon
 nbproc      4 # Number of processing cores. Dual Dual-core Opteron is 4 cores for example.

#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
 mode        http
 log         global
 option      dontlognull
 option      httpclose
 option      httplog
 option      forwardfor
 option      redispatch
 timeout connect 10000 # default 10 second time out if a backend is not found
 timeout client 300000
 timeout server 300000
 maxconn     60000
 retries     3

#---------------------------------------------------------------------
# main frontend which proxys to the backends
#---------------------------------------------------------------------
#frontend  main *:80
frontend http-in
 bind :80
 acl url_static       path_beg       -i /static /images /javascript /stylesheets
 acl url_static       path_end       -i .jpg .gif .png .css .js
 acl url_stats        path_beg    /haproxy-stats
 use_backend        be_stats    if url_stats

 use_backend static          if url_static
 default_backend             app

#-------------------------------------------------
#back-end statistics section
#----------------------------------------------------------------
backend be_stats
 stats uri /haproxy-stats
#    stats show-node

#---------------------------------------------------------------------
# static backend for serving up images, stylesheets and such
#---------------------------------------------------------------------
backend static
 balance     roundrobin
 server      static 10.211.164.138:80 check
 #server      static 10.211.185.111:80 check

#---------------------------------------------------------------------
# round robin balancing between the various backends
#---------------------------------------------------------------------
backend app
 balance     roundrobin
 server  app1 10.214.284.241:80 check
 server  app2 10.208.168.131:80 check
 server  app3 10.212.158.126:80 check

You can use the above code in haproxy.cfg file. You just need to change the IP address which are listed under backend static and backend app section. You just put your static server(amazon EC2 instance’s internal IP address).

You should use internal IP address of server because that will reduce the bandwidth uses of Amazon EC2 server. Do not use the public IP address for load balance because that will cost you.

Put application database and application files on all the server. Point your domain to your load balancer machine’s Public IP address.

Let say your application is running on following domain.

www.YOURDOMAIN.COM – point to Load balancer macine.

Open your all application and static server’s apache configuration file. put following entry in that file.


<VirtualHost *:80>
DocumentRoot /var/www/html
ServerName www.YOURDOMAIN.COM

# Other directives here

</VirtualHost>

after this just restart the apache server of all servers.

If you are having any issues or questions about setting up the haproxy on amazon EC2 server Please write to me.