For wordpress website wordpress stats plugins are very important. For checking how much visitors are visited our site. You just need to install following any plugin in your wordpress. Here we have most famous and unique wordpress plugins for statistics or stats which are useful for adding the statistics to your website.
wordpress plugins for statistics or stats
WordPress.com Stats
http://wordpress.org/extend/plugins/stats/
There are hundreds of plugins and services which can provide statistics about your visitors. However I found that even though something like Google Analytics provides an incredible depth of information, it can be overwhelming and doesn’t really highlight what’s most interesting to me as a writer. That’s why Automattic created its own stats system, to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface.
Installing this stats plugin is much like installing Akismet, all you need is to put in your API Key and the rest is automatic.
WP-Stats-Dashboard
http://wordpress.org/extend/plugins/wp-stats-dashboard/
Display your blog’s stats graph plus your blog traffic, social engagement and social influence directly in your dashboard. See how you’re ranking on Alexa, check out your Technorati authority, monitor your ranking across multiple sites and much more. Once you install this plugin you’ll wonder how you ever managed to track your social media worth without it.
Feed Stats for WordPress
http://wordpress.org/extend/plugins/feed-stats-plugin/
Feed Stats for WordPress is a plugin that allows you to view your FeedBurner feed stats from inside of the WordPress admin interface.
Stats for your feed can be viewed from the “Feed Stats” page in the “Dashboard” section of WordPress.
iRedlof Google Analytics Stats
http://wordpress.org/extend/plugins/iredlof-google-analytics-stats/
iRedlof Google Analytics(GA) Stats is a wordpess admin panel plugin, I developed it cos i like to manage everything from one place. This plugin is like wordpress .com stats plugin but the difference between the two is that wordpress.com stats works with wordpress analytics stats system and iRedlof GA Stats works with google analytics stats system. Using this plugin, you get your GA stats straight from your account on google to your wordpress admin panel. Right now this plugin is in development phase and only have limited features i.e. visits/day, pageviews/day, etc to focus on just the most popular metrics a blogger wants to track and provide them in a clear and concise interface, but the full version will be loaded will all the features of google analytics which will provide you with an incredible depth of information. To use this plugin you need google analytics account.
Runescape User Stats
http://wordpress.org/extend/plugins/runescape-user-stats/
A very simple plugin to add runescape game stats on any page of the wordpress blog. This plugin allows blog owner to show th stats for any user on a page and post. This plugin also allows to display multiple runescape stats. you can visit the author website Rakesh Muraharishetty to view the authors game stats. Alternatively visit the plugin homepage Runescape Guide for updates and discuss the stats plugin for future enhancements.
Robots.txt file is very important for Search Engine. If this file is not witten in proper way then search engine will crawl your site and your website never come in search engine result so you need to be very care ful about this file.
how to check robots.txt file in website
For Checking robots.txt file you should go for following website I really like this website.
http://tool.motoricerca.info/robots-checker.phtml
You should write your robots.txt file following way.
User-agent: *
Disallow:
Sitemap: https://purabtech.in/sitemap.xml.gz
# WordPressAPI.com 18 April 2010
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:
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.
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.
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.
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 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.
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.
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.
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.
You can use the windows machine from linux OS. Using rdesktop program this is possible. Here is Linux tutorial, how to use rdesktop command in linux. Windows and Linux have made inroads into organizations around the world.
how to use rdesktop command in linux
Rdesktop is a Linux implementation of Remote Display Protocol (RDP). Windows uses RDP to connect to other Windows computers via Terminal Services. With rdesktop, you can open a remote control session on a Windows NT/2000/XP machine from a Linux box.
On fedora OS rdesktop utility is already installed. If that utility is not installed then use following command to install rdesktop
#yum install rdesktop
Use following command to use the remote desktop
[siwan@siwank-pc ~]$ rdesktop 192.168.2.45
For Full screen Use following Command.
[siwan@siwank-pc ~]$ rdesktop -f 192.168.2.45
How to minumize the rdesktop?
Use the following command. If you are in full screen mode then press ctrl + alt + enter button to back again.
This is very nice utility for Linux and Windows users. Who need to work on both the OS on same time.
We have given news and details about First web browser for India launched -Epic by Mozilla. We have given features and their uses. Screen shot and epic.The browser has been created by a team of Indian engineers on the opensource Mozilla platform, it said in a statement.
First web browser for India launched -Epic by Mozilla
Epic Browser is looking as follows:
“Epic provides a uniquely Indian browsing experience. Epic’s India sidebar supports Indian content by providing users access to the latest national and regional news from popular publications, live television channels, videos, stock quotes, live cricket scores, top music albums, and local events,” it said.
Epic browser has following features:
• An inbuilt anti-virus, powered by ESET, whose NOD 32 product is very popular the world over
• India centric with support for 12 different Indian languages including Hindi, Gujarati, Marathi, Kannada, Telugu, Bengali, Tamil, Malayalam, Urdu and Punjabi
• Indic app allows for typing in these Indian languages
• More than 1500 themes ranging from freedom fighters to film stars to represent the unity in diversity of the country
• A word processor to create or edit documents
• India specific news from popular publications
• Social Networking sites like Facebook and Twitter on the sidebar, apart from YouTube( watchable in a pop-up window), Gmail and Yahoo
• Other useful sidebar widgets include Travel, Stocks, Maps, and Jobs
• File backup and My Computer utilities
Users can choose from 1500+ customised Indian themes and wallpapers ranging from freedom fighters to famous Bollywood and regional film stars. Writing in Indian languages is supported throughout Epic. Users can instantly write in Indian languages on any webpage or in Write, Epic’s free built-in word processor. Twelve Indian languages are currently supported, the statement said.
Free antivirus scanning and healing is built into Epic, while another security measure warns users when they’re about to visit potentially dangerous websites.
In this post we’ve brought 20 best free fonts for graphic designers and you to use in your designs. So boost your creativity with these cool fonts..
This article highlights twenty-three high-quality free fonts suitable for a variety of graphic design projects. This list represents the 100 best free fonts we’ve found in a variety of styles. However, for specialist fonts that won’t cost . we have added some of royalty free professional and good looking fonts for graphic and web designers. Download them instantly and start using in your next design.