<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Vishmax Technologies Web Design Company</title>
	
	<link>http://www.vishmax.com/en</link>
	<description>Web Design Calicut, India</description>
	<lastBuildDate>Wed, 22 Feb 2012 13:40:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Vishmax" /><feedburner:info uri="vishmax" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Vishmax</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Optimize PDF Files – Tips for Optimizing PDFs For Web</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/nuFigcDabgA/</link>
		<comments>http://www.vishmax.com/en/labs/optimize-pdf-files-tips-for-optimizing-pdfs-for-web/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 13:33:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[Optimizing]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=701</guid>
		<description><![CDATA[Portable Document Format (PDF) is one of the best ways to publish content including images which is developed by Adobe Systems. It is one of [...]]]></description>
			<content:encoded><![CDATA[<p>Portable Document Format (PDF) is one of the best ways to publish content including images which is developed by Adobe Systems. It is one of the popular formats which are used in website. Portable Document Format (PDF) is able to provide view of documents in page by page model which looks similar to printed format.</p>
<h2>Tips for Optimizing PDFs</h2>
<h3>Use a text-base PDF creator</h3>
<p>Try to use a text-base PDF creator other than Adobe Photoshop. This is the first stage for optimizing PDF for a web use.</p>
<h3>Keywords as PDF document titles</h3>
<p>Try to use some keywords for the title of PDF, because most popular search engines are capable to crawl your PDF text contents. For example just try keyword “the java” in Google, and then it will display “The Java™ Language Specification” from java.sun.com. So don’t forgot to write  your titles in PDF when its optimize for web.</p>
<h3>Importance of depth of content</h3>
<p>Like any other web pages content you must include a well written content for your PDF with proper keywords. Already we explained the importance of keywords in previous point. Nothing to do more just treat it like a web page.</p>
<h3>Importance of links in PDF</h3>
<p>Not only content you must put relevant links and check twice the links is working other wise it will not useful for web optimization purpose</p>
<h3>PDF size and search engines</h3>
<p>Try to limit your PDF within a standard size, it will make easy things to search engines and your content will be crawled faster. Remember that limiting the size dose not means the lack of content. So always think about the standard size.</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/nuFigcDabgA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/labs/optimize-pdf-files-tips-for-optimizing-pdfs-for-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/labs/optimize-pdf-files-tips-for-optimizing-pdfs-for-web/</feedburner:origLink></item>
		<item>
		<title>PHP Code for Getting IP Address of Visitors</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/dB6tBmx2K_k/</link>
		<comments>http://www.vishmax.com/en/labs/php-code-for-getting-ip-address-of-visitors/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 07:20:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=694</guid>
		<description><![CDATA[Some times you need to track the visitors IP address for a particular reason. Here is some PHP codes which is usfun for those projects [...]]]></description>
			<content:encoded><![CDATA[<p>Some times you need to track the visitors IP address for a particular reason. Here is some PHP codes which is usfun for those projects which needs to track IP address.</p>
<h2>What is your IP Address</h2>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$ipaddress</span><span style="color: #339933;">=@</span><span style="color: #000088;">$REMOTE_ADDR</span><span style="color: #339933;">;</span> 
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Your IP Address is : = <span style="color: #006699; font-weight: bold;">$ipaddress</span>&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>The above code will display your IP address.</p>
<h2>Function</h2>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">//Return the visitor's IP address</span>
<span style="color: #000000; font-weight: bold;">function</span> get_ip<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
 <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REMOTE_ADDR&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
 <span style="color: #009900;">&#123;</span> 
 <span style="color: #000088;">$ip</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REMOTE_ADDR&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' '</span><span style="color: #339933;">;</span> 
 <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_X_FORWARDED_FOR&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
 <span style="color: #000088;">$ip</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_X_FORWARDED_FOR&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' '</span><span style="color: #339933;">;</span> 
 <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_CLIENT_IP&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> 
 <span style="color: #000088;">$ip</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_CLIENT_IP&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' '</span><span style="color: #339933;">;</span> 
 <span style="color: #009900;">&#125;</span>
 <span style="color: #b1b100;">return</span> <span style="color: #000088;">$ip</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/Vishmax/~4/dB6tBmx2K_k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/labs/php-code-for-getting-ip-address-of-visitors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/labs/php-code-for-getting-ip-address-of-visitors/</feedburner:origLink></item>
		<item>
		<title>Calicut University Exam Dates For PG/UG Courses</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/1_bBFdWJ6yE/</link>
		<comments>http://www.vishmax.com/en/info/calicut-university-exam-dates-for-pgug-courses/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 06:12:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=690</guid>
		<description><![CDATA[Calicut University have published the 2012 examination dates for the following courses. Second Year B. A. Exam Date: 27-04-2012 Final year B. A. Exam Date: [...]]]></description>
			<content:encoded><![CDATA[<p>Calicut University have published the 2012 examination dates for the following courses.<br />
Second Year B. A. <strong>Exam Date: </strong>27-04-2012<br />
Final year B. A. <strong>Exam Date: </strong>04-04-2012<br />
Second year B. Com.  <strong>Exam Date: </strong>25-04-2012<br />
Final year B. Com.  <strong>Exam Date: </strong>04-04-2012<br />
Second year B. Sc.  <strong>Exam Date: </strong>27-04-2012<br />
Final year B. Sc. <strong>Exam Date: </strong>04-04-2012<br />
Second Year B. B. A.  <strong>Exam Date: </strong>25-04-2012<br />
Final year B. B. A. <strong>Exam Date: </strong> 07-03-2012<br />
Final year B. C. A.  <strong>Exam Date: </strong>04-04-2012<br />
M. A. Previous (Regular)  <strong>Exam Date: </strong>04-05-2012<br />
Final year M. A.  <strong>Exam Date: </strong>11-04-2011<br />
M. A. Previous (Improvement and Supplementary) <strong>Exam Date: </strong>04-05-2012<br />
M. Sc. Previous (Regular) <strong>Exam Date: </strong> 04-05-2012 Final year M. Sc.  11-04-2012<br />
M. Sc. Previous (Improvement and Supplementary) <strong>Exam Date: </strong>04-05-2012<br />
M. Com. I &#038; II Semester (for SDE candidates) <strong>Exam Date: </strong> 05-09-2012<br />
M. Com. III &#038; IV Semester (for SDE candidates) <strong>Exam Date: </strong> 02-08-2012 </p>
<p><a href="http://www.universityofcalicut.info/news/ExamCalendar2012.pdf" title="CALENDAR OF EXAMINATIONS- 2012" target="_blank">Click here to view complete shedule in pdf format</a></p>
<p>For confirmation of dates, watch University Notification/Press release/Website or contact the PRO/Pareeksha Bhavan Enquiry Office or Information Centers of the University.</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/1_bBFdWJ6yE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/info/calicut-university-exam-dates-for-pgug-courses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/info/calicut-university-exam-dates-for-pgug-courses/</feedburner:origLink></item>
		<item>
		<title>Kannur University Union Kalotsavam 2012</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/T-TN536I_A4/</link>
		<comments>http://www.vishmax.com/en/info/kannur-university-union-kalotsavam-2012/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 08:07:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=688</guid>
		<description><![CDATA[Kannur University Union Kalotsavam is being started from 22 to 26 of February 2012. The function is hosted by GCEK. The Govt. College of Engineering, [...]]]></description>
			<content:encoded><![CDATA[<p>Kannur University Union Kalotsavam is being started from 22 to 26 of February 2012. The function is hosted by GCEK.   The Govt. College of Engineering, Kannur is one of the Most Prestigious Institutions under the Kannur University. With a very high position in the State&#8217;s educational arena, the College has always helped in the nourishment of Culture and Games. </p>
<p>It is evaluated that the show will become most popular show amoung universities in kerala and one of the realities of Cultural Excellence.</p>
<p>For more details you can contact at Ph: 0497 – 2780125 or visit knrutykalotsavam.com</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/T-TN536I_A4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/info/kannur-university-union-kalotsavam-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/info/kannur-university-union-kalotsavam-2012/</feedburner:origLink></item>
		<item>
		<title>Exceeded Bandwidth (509) Problem Resolved</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/0nHzTYzDqM8/</link>
		<comments>http://www.vishmax.com/en/news/exceeded-bandwidth-problem-resolved/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 07:03:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=685</guid>
		<description><![CDATA[Dear All, On previous night we have faced the problem related with Exceeded Bandwidth for couple of hours due to high traffic. Today morning our [...]]]></description>
			<content:encoded><![CDATA[<p>Dear All,<br />
On previous night we have faced the problem related with Exceeded Bandwidth for couple of hours due to high traffic. Today morning our developers resolved the problem by expanding the bandwidth limit and restored the website back, now everything are working fine. </p>
<p>We apologize for the inconvenience, and thank you for your patience.</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/0nHzTYzDqM8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/news/exceeded-bandwidth-problem-resolved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/news/exceeded-bandwidth-problem-resolved/</feedburner:origLink></item>
		<item>
		<title>Uttarakhand Technical University Exam Schedule 2012</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/8tCjoptey_E/</link>
		<comments>http://www.vishmax.com/en/info/uttarakhand-technical-university-exam-schedule-2012/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 06:41:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Info]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=682</guid>
		<description><![CDATA[Uttarakhand Technical University, Dehradun have officially announced the 2011-12 Examination timetable for following courses. M.Tech. I/III Semester M.Pharm First Semester Examination BBA FIRST YEAR-I SEMESTER [...]]]></description>
			<content:encoded><![CDATA[<p>Uttarakhand Technical University, Dehradun have officially announced the 2011-12 Examination timetable for following courses.</p>
<p>M.Tech. I/III Semester<br />
M.Pharm First Semester Examination<br />
BBA FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
BCA FIRST YEAR-I SEMESTER<br />
BSc (Computer Science) FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
BSc (Animation &#038; Multimedia) FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
BSc (Medical Microbiology) FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
BSc Agriculture FIRST YEAR-I SEMESTER (New)<br />
BBA (HM)/BHM FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
BSc Fashion Design FIRST YEAR-I SEMESTER (For Regular Examinations<br />
MSc. (Computer Science) FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
MSc. (Information Technology) FIRST YEAR-I SEMESTER (For Regular Examinations)<br />
MSc (Biochemistry) FIRST YEAR-I SEMESTER<br />
MA (Mass Communication) FIRST YEAR-I SEMESTER<br />
MSc (Pharmaceutical Chemistry ) FIRST YEAR-I SEMESTER<br />
Master in Animation &#038; Visual Effect FIRST YEAR-I SEMESTER (For Regular Examinations)</p>
<p>For more detailed information please visit <a href="http://www.uktech.ac.in/" title="Uttarakhand Technical University" target="_blank">www.uktech.ac.in</a>.</p>
<h2>Contact Address of Uttarakhand Technical University</h2>
<p><strong>Uttarakhand Technical University </strong><br />
Goverment Girls Polytechnic<br />
Post Office, Chandanwadi, Prem Nagar<br />
Sudhowala, Dehradun (Uttarakhand)<br />
Pin &#8211; 248007<br />
Phone: 0135-2770128, 0135-2770119</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/8tCjoptey_E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/info/uttarakhand-technical-university-exam-schedule-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/info/uttarakhand-technical-university-exam-schedule-2012/</feedburner:origLink></item>
		<item>
		<title>AMPPS :: Local Web Server Environment</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/lrUSxj5arok/</link>
		<comments>http://www.vishmax.com/en/labs/ampps-local-web-server-environment/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 05:13:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[Softwares]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=561</guid>
		<description><![CDATA[If you want to create a local server which supports for Apache, MySQL, PHP, Perl and Python then AMPPS is a good choice. AMPPS which [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to create a local server which supports for <strong> Apache,  MySQL, PHP, Perl and Python</strong> then AMPPS is a good choice. AMPPS which is stands for Apache, PHP, MySQL, Perl, Python and Softaculous STACK is available ampps.com. It is very useful when you develop open source web applications. At Vishmax Technologies we are already using AMPPS in our web development lab.</p>
<p>AMPPS is available for both Windows and Mac OS X. You can create multiple MySQL, a relational database management system (RDBMS) and manage them easily with phpMyAdmin.</p>
<h2>System requirements</h2>
<p><strong>Windows</strong><br />
Windows 7, Windows Vista SP2, Windows XP SP3+, Windows Server 2003 SP2+, Windows Server 2008, Windows Server 2008 R2.</p>
<p><strong>Mac OS X</strong><br />
Mac OS X 10.6.2+</p>
<p>Download <a title="AMPPS" href="http://www.ampps.com/download" target="_blank">AMPPS</a></p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/lrUSxj5arok" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/labs/ampps-local-web-server-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/labs/ampps-local-web-server-environment/</feedburner:origLink></item>
		<item>
		<title>Alexa Ranking Tips for Your Own Website</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/T3mYwgXQ2-E/</link>
		<comments>http://www.vishmax.com/en/blog/better-alexa-ranking-tips-for-your-own-website/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 13:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=673</guid>
		<description><![CDATA[Alexa Ranking is one of the popular website ranking system provided by www.alexa.com, which is is a subsidiary of Amazon.com. Like other traffic raking systems [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Alexa Ranking</strong> is one of the popular website ranking system provided by www.alexa.com, which is is a subsidiary of Amazon.com. Like other traffic raking systems Alexa Ranking also worked on the basis of number of visitors to a website.The ranking service offered by Alexa are free of cost. To use alexa ranking within you browser you need to install <strong>Alexa Toolbar</strong> which can download from <a href="http://www.alexa.com/toolbar" title="The Alexa Toolbar" target="_blank">alexa.com.</a> </p>
<h2>Alexa Toolbar Features</h2>
<p>1) Shows the popularity of a website within the browser.<br />
2) You can find similar audience websites<br />
3) You can see past view of the websites using Wayback<br />
4) You can write reviews on websites<br />
5) Still its a free and trusted services which is using millions of users worldwide.</p>
<h2>Free Traffic Tips See Video</h2>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/uIXXaKr6_yQ" frameborder="0" allowfullscreen></iframe></p>
<p>Now we come back to our topic, how can increase Alexa Ranking of a website? You can do the following tips to get better Alexa Ranking for your Website.</p>
<h2>Tips to Increase Alexa Ranking</h2>
<ul>
<li>Go to www.alexa.com and register your blog there, you need only a valid email ID for conformation. Once you registered you will get a conformation link from Alexa.com, just conform the registration by clicking the link.</li>
<li>Next thing is to download Alexa toolbar and install it on your computer. Commonly most browsers will support this toolbar. Once you installed Alexa toolbar make sure its properly setted to home page of your default browser.</li>
<li>Dont forgot to put an Alexa rank widget on you website/blog because each clicks will be treated a as visitor. If you are using WordPress then there are many plugins available to do this job.</li>
<li>Tell your friends  to review and rate your Alexa website profile.</li>
<li>Buy links and banners from other some popular forums. this will drive more traffic to your site</li>
<li>Try to make your link in other blogs which have high Alexa Traffic Rank</li>
<li>If you have enough money for web promotion then try FullTraffic.net which offers high Alexa ranking programmes.</li>
<ul>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/T3mYwgXQ2-E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/blog/better-alexa-ranking-tips-for-your-own-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/blog/better-alexa-ranking-tips-for-your-own-website/</feedburner:origLink></item>
		<item>
		<title>Embeding SlideShare into WordPress without Plugins</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/74exnd6Su4Y/</link>
		<comments>http://www.vishmax.com/en/labs/embeding-slideshare-into-wordpress-without-plugins/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 12:05:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=555</guid>
		<description><![CDATA[SlideShare is used for sharing presentations.It supports PDF&#8217;s, Videos and Webinars.Here is a good method for slideshare presentation, which can automatically embed your videos. Following [...]]]></description>
			<content:encoded><![CDATA[<p>SlideShare is used for sharing presentations.It supports PDF&#8217;s, Videos and Webinars.Here is a good method for slideshare presentation,  which can automatically embed your videos. Following will explain how to add slideshare to WordPress oEmbed without using a plugin.</p>
<p>Just open your theme’s functions.php file and add the following block of code to it. It will work fine with most latest versions of WordPress.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">// Add Slideshare oEmbed</span>
<span style="color: #000000; font-weight: bold;">function</span> add_oembed_slideshare<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
wp_oembed_add_provider<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'http://www.slideshare.net/*'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'http://api.embed.ly/v1/api/oembed'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'add_oembed_slideshare'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/Vishmax/~4/74exnd6Su4Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/labs/embeding-slideshare-into-wordpress-without-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/labs/embeding-slideshare-into-wordpress-without-plugins/</feedburner:origLink></item>
		<item>
		<title>Add Google Fonts in WordPress WYSIWYG editor within one minute</title>
		<link>http://feedproxy.google.com/~r/Vishmax/~3/BBwP0nIPsUw/</link>
		<comments>http://www.vishmax.com/en/labs/add-google-fonts-in-wordpress-wysiwyg-editor-within-one-minute/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 08:44:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.vishmax.com/en/?p=567</guid>
		<description><![CDATA[Yes in previous we talk about adding files through WordPress WYSIWYG editor, and now we will discuss how to add more fonts into WordPress which [...]]]></description>
			<content:encoded><![CDATA[<p>Yes in previous we talk about adding files through WordPress WYSIWYG editor, and now we will discuss how to add more fonts into WordPress which makes WP posts more stylish. In internet you know Google is a giant so we will use Google font library which have around 300 + web fonts.  It is one of the biggest font collection and we are going to import all these fonts to our WordPress WYSIWYG editor. For doing this you need to install a plugin which called “<strong>Supreme Google Web fonts</strong>” and it will never make slow your site because all the fonts are really hosted under google.com and the plugin is just calling it.</p>
<h2>Instructions</h2>
<ul>
<li>Download plugin from <a href="http://wordpress.org/extend/plugins/supreme-google-webfonts/" title="Supreme Google Webfonts" target="_blank">here</a></li>
<li>Upload the plugin to your &#8216;wp-content/plugins&#8217; directory</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>Go to your visual editor to begin using your google webfonts.</li>
<li>Thats all, you have done</li>
<ul>
Dont forgot to leave a comment here after using this plugin on your WordPress blog.</p>
<img src="http://feeds.feedburner.com/~r/Vishmax/~4/BBwP0nIPsUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vishmax.com/en/labs/add-google-fonts-in-wordpress-wysiwyg-editor-within-one-minute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vishmax.com/en/labs/add-google-fonts-in-wordpress-wysiwyg-editor-within-one-minute/</feedburner:origLink></item>
	</channel>
</rss>

