<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>LAMPDocs &#187; Webmasters</title>
	<atom:link href="http://www.lampdocs.com/category/webmasters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lampdocs.com</link>
	<description>Documenting the Open Source</description>
	<lastBuildDate>Sat, 03 Dec 2011 15:09:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>vi Command list for Command Line Editing</title>
		<link>http://www.lampdocs.com/programming/vi-command-list-for-command-line-editing/</link>
		<comments>http://www.lampdocs.com/programming/vi-command-list-for-command-line-editing/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 05:56:44 +0000</pubDate>
		<dc:creator>Vladimir Usenco</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[save file vi]]></category>
		<category><![CDATA[vi delete line]]></category>
		<category><![CDATA[vi delete to the end of file]]></category>
		<category><![CDATA[vi exit withot saving]]></category>
		<category><![CDATA[vi insert character]]></category>
		<category><![CDATA[vi search for expression]]></category>
		<category><![CDATA[vi tutorial]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/?p=959</guid>
		<description><![CDATA[vi commands with explanation, everything related to vi commands. 


Related posts:<ol><li><a href='http://www.lampdocs.com/uncategorized/searching-files-in-linux/' rel='bookmark' title='Searching files in Linux'>Searching files in Linux</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/insert-v1-3-9b/' rel='bookmark' title='INSERT v1.3.9b'>INSERT v1.3.9b</a></li>
<li><a href='http://www.lampdocs.com/other-recipes/all-you-need-to-view-pdf-documents-in-linux/' rel='bookmark' title='All you need to view PDF documents in Linux'>All you need to view PDF documents in Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As you already know, Linux has some things that require command line even for user tasks. Most of them are connected with file modification. There are some ways to alter files from command line, and one of the most effective seems to be vi. It is a powerful editor that comes with lots of functions and if you know its hotkeys, it will save you lots of time. Some people say that it cannot be compared even with Windows text editors. So let me show you several things that will make your interaction with vi more pleasant.</p>
<p>We&#8217;ll start with cursor control, as it&#8217;s the first need when you open a file.</p>
<p><strong>h </strong> Left<br />
<strong>j </strong> Down<br />
<strong>k </strong> Up<br />
<strong>l </strong>(or<strong> spacebar</strong>)    Right</p>
<p>Of course, you&#8217;re welcome to use keyboard arrows if you like them so much. There are some more complicated manipulations, so let me show them. These commands will help you to navigate between your file text in a smart way.</p>
<p><strong>w</strong> Forward one word<br />
<strong>b </strong> Back one word<br />
<strong>e</strong> End of word<br />
<strong>( </strong> Beginning of current sentence<br />
<strong>) </strong> Beginning of next sentence<br />
<strong>{ </strong> Beginning of current paragraph<br />
<strong>} </strong> Beginning of next paragraph<br />
<strong>[[</strong> Beginning of current section<br />
<strong>]]</strong> Beginning of next section<br />
<strong>0 </strong> Start of current line<br />
<strong>$ </strong> End of current line<br />
<strong>^ </strong> First non-white character of current line<br />
<strong>+</strong> or <strong>Return</strong> (<strong>Enter</strong>)    First character of next line<br />
<strong>- </strong> First character of previous line<br />
<strong>n | </strong> character n of current line</p>
<p>If your file takes some screens, there are some commands for screen movements.</p>
<p><strong>H</strong> Top line of current screen<br />
<strong>M</strong> Middle line of current screen<br />
<strong>L </strong> Last line of current screen<br />
<strong>nH</strong> n lines after top line of current screen<br />
<strong>nL </strong> n lines before last line of current screen<br />
<strong>Ctrl-F </strong> Forward one screen<br />
<strong>Ctrl-B</strong> Back one screen<br />
<strong>Ctrl-D </strong> Down half a screen<br />
<strong>Ctrl-U </strong> Up half a screen<br />
<strong>Ctrl-E </strong> Display another line at bottom of screen<br />
<strong>Ctrl-Y </strong> Display another line at top of screen<br />
<strong>z Return</strong> (<strong>Enter</strong>)  Redraw screen with cursor at top<br />
<strong>z . </strong> Redraw screen with cursor in middle<br />
<strong>z &#8211; </strong> Redraw screen with cursor at bottom<br />
<strong>Ctrl-L </strong> Redraw screen without re-positioning<br />
<strong>Ctrl-R </strong> Redraw screen without re-positioning</p>
<p>Of course, there are some commands related to search and moving between line numbers.<br />
<strong>/text</strong> Search for text (forwards)<br />
/    Repeat forward search (Just like F3 in Microsoft Windows)<br />
<strong>?text </strong> Search for text (backwards)<br />
<strong>? </strong> Repeat previous search backwards<br />
<strong>n</strong> Repeat previous search<br />
<strong>N</strong> Repeat previous search, but it opposite direction<br />
/text/+n    Go to line n after text<br />
<strong>?text?-n </strong> Go to line n before text<br />
<strong>%</strong> Find match of current parenthesis, brace, or bracket (very useful for programmers).<br />
<strong>Ctrl-G </strong> Display line number of cursor<br />
<strong>nG</strong> Move cursor to line number n<br />
<strong>:n </strong> Move cursor to line number n<br />
<strong>G </strong> Move to last line in file</p>
<p>As you can see, there are lots of ways to navigate within a file. Let&#8217;s start with wile editing commands, they aren&#8217;t less interesting.</p>
<p><strong>A</strong> Append to end of current line<br />
<strong>i </strong> Insert before cursor<br />
<strong>I </strong> Insert at beginning of line<br />
<strong>o </strong> Open line above cursor<br />
<strong>O </strong> Open line below cursor<br />
<strong>ESC</strong> End of insert mode<br />
<strong>Ctrl-I</strong> Insert a tab<br />
<strong>Ctrl-T</strong> Move to next tab position<br />
<strong>Backspace</strong> Move back one character<br />
<strong>Ctrl-U</strong> Delete current line<br />
<strong>Ctrl-V </strong> Quote next character<br />
<strong>Ctrl-W</strong> Move back one word<br />
<strong>cw </strong> Change word<br />
<strong>cc </strong> Change line<br />
<strong>C </strong> Change from current position to end of line<br />
<strong>dd </strong> Delete current line<br />
<strong>ndd </strong> Delete n lines<br />
<strong>D</strong> Delete remainer of line<br />
<strong>dw </strong> Delete word<br />
<strong>d} </strong> Delete rest of paragraph<br />
<strong>d^ </strong> Delete back to start of line<br />
<strong>c/pat </strong> Delete up to first occurance of pattern<br />
<strong>dn</strong> Delete up to next occurance of pattern<br />
<strong>dfa</strong> Delete up to and including a on current line<br />
<strong>dta </strong> Delete up to, but not including, a on current line<br />
<strong>dL </strong> Delete up to last line on screen<br />
<strong>dG </strong> Delete to end of file<br />
<strong>J </strong> Join two lines<br />
<strong>p </strong> Insert buffer after cursor<br />
<strong>P </strong> Insert buffer before cursor<br />
<strong>rx </strong> Replace character with x<br />
<strong>Rtext </strong> Replace text beginning at cursor<br />
<strong>s </strong> Substitute character<br />
<strong>ns </strong> Substitute n characters<br />
<strong>S </strong> Substitute entire line<br />
<strong>u </strong> Undo last change</p>
<p>And we finally come to file manipulation commands as we will need to save (or not) our changes.</p>
<p><strong>:w </strong> Write file<br />
<strong>:w! </strong> Write file (ignoring warnings, force writing)<br />
<strong>:w! file </strong> Overwrite file (ignoring warnings)<br />
<strong>:wq </strong> Write file and quit<br />
<strong>:q </strong> Quit<br />
<strong>:q!</strong> Quit (even if changes not saved)<br />
<strong>:w file </strong> Write file as file, leaving original untouched<br />
<strong>ZZ </strong> Quit, only writing file if changed<br />
<strong> <img src='http://www.lampdocs.com/wp-includes/images/smilies/icon_mad.gif' alt="icon mad vi Command list for Command Line Editing" class='wp-smiley' title="vi Command list for Command Line Editing" />  </strong> Quit, only writing file if changed<br />
<strong>:n1,n2w file </strong> Write lines n1 to n2 to file<br />
<strong>:n1,n2w &gt;&gt; file </strong> Append lines n1 to n2 to file<br />
<strong>:e file2    Edit file2</strong> (current file becomes alternate file)<br />
<strong>:e! </strong> Reload file from disk (revert to previous saved version)<br />
<strong>:e# </strong> Edit alternate file<br />
<strong>% </strong> Display current filename<br />
<strong>#</strong> Display alternate filename<br />
<strong>:n </strong> Edit next file<br />
<strong>:n! </strong> Edit next file (ignoring warnings)<br />
<strong>:n files </strong> Specify new list of files<br />
<strong>:r file </strong> Insert file after cursor<br />
<strong>:r !command</strong> Run command, and insert output after current line</p>
<p>As you can see, the number of vi commands is really huge. If you get acquainted to this editor, you won&#8217;t even try anything else, the professional programmers say. If you need vi to edit files (e.g. crontab modification), you will find all the necessary commands above.</p>
<p>Have a good time with vi! <img src='http://www.lampdocs.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile vi Command list for Command Line Editing" class='wp-smiley' title="vi Command list for Command Line Editing" /> </p>


<p>Related posts:<ol><li><a href='http://www.lampdocs.com/uncategorized/searching-files-in-linux/' rel='bookmark' title='Searching files in Linux'>Searching files in Linux</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/insert-v1-3-9b/' rel='bookmark' title='INSERT v1.3.9b'>INSERT v1.3.9b</a></li>
<li><a href='http://www.lampdocs.com/other-recipes/all-you-need-to-view-pdf-documents-in-linux/' rel='bookmark' title='All you need to view PDF documents in Linux'>All you need to view PDF documents in Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/programming/vi-command-list-for-command-line-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.8 Release</title>
		<link>http://www.lampdocs.com/webmasters/wordpress-2-8-release/</link>
		<comments>http://www.lampdocs.com/webmasters/wordpress-2-8-release/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 02:01:34 +0000</pubDate>
		<dc:creator>Vadim Cissa</dc:creator>
				<category><![CDATA[Webmasters]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Release]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/?p=417</guid>
		<description><![CDATA[Nowadays the great majority of Internet users are familiar with WordPress which represents the largest self-hosted blogging tool in the world. Being started in 2003 by a small group of people at the moment it&#8217;s used on hundreds of thousands of sites and seen by tens of milions of people every day. One of the [...]


Related posts:<ol><li><a href='http://www.lampdocs.com/other-recipes-webmasters/voting-plugins-for-wordpress-blogs/' rel='bookmark' title='Voting Plugins For WordPress Blogs'>Voting Plugins For WordPress Blogs</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/linux-mint-10/' rel='bookmark' title='Linux Mint 10'>Linux Mint 10</a></li>
<li><a href='http://www.lampdocs.com/about/' rel='bookmark' title='About'>About</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Nowadays the great majority of Internet users are familiar with WordPress which represents the largest self-hosted blogging tool in the world. Being started in 2003 by a small group of people at the moment it&#8217;s used on hundreds of thousands of sites and seen by tens of milions of people every day.</p>
<p>One of the greatest things about WordPress, in addition to the fact that it&#8217;s absolutely free, is the feature of being completely customizable, thus giving the opportunity to use it for almost anything.</p>
<p>Since the appearance of the first version (0.7 on 27th of May, 2003) WordPress has been constantly updated introducing a lot of different improvements and offering greater functionality each and every time. Starting from the Version 1.0 most of the releases were named after well-known jazz musicians. After 1.5 release WordPress seemed to have something people really liked and it started to experience some fairly rapid growth (in a period of one year – from 2006 to 2007 – the amount of downloads increased in more than 2,5 times).</p>
<p>The last version – 2.8 “Baker” version named in honor of noted trumpeter and vocalist <a href="http://en.wikipedia.org/wiki/Chet_Baker" target="_blank">Chet Baker</a> – representing the main topic of the given post was released on June 10th, 2009. Let&#8217;s check what new features and improvements of this release are.</p>
<p><span id="more-417"></span></p>
<p>“Baker” version of WordPress is a finish release with a significant amount of improvements to widgets, themes and speed. Despite the fact that at the very beginning you may notice just some minor changes, especially as regards the overall design, soon you will be able to find out much more. Altogether there are over 180 new features, changes, upgrades, and improvements (you can check the full list <a href="http://codex.wordpress.org/Version_2.8" target="_blank">here</a>); moreover it&#8217;s said that more than 790 bugs were fixed.</p>
<p>So let&#8217;s mention the most important improvements (or you can skip it and watch the video if you don&#8217;t like reading much <img src='http://www.lampdocs.com/wp-includes/images/smilies/icon_smile.gif' alt="icon smile WordPress 2.8 Release" class='wp-smiley' title="WordPress 2.8 Release" /> )</p>
<ol>
<li><strong>Speed</strong>: WordPress became significantly faster to use because of changing the way it does style and scripting.</li>
<li><strong>Changing themes</strong>: now you can install a theme with a single click from the admin</li>
<li><strong>Screen Options</strong>: there are new Screen Options on every page giving you the opportunity to rearrange the items (you can have a special look for each of the pages). The dashboard widgets can be arranged in up to four columns</li>
<li><strong>CodePress editor</strong>: now the syntax highlighting is integrated ensuring much better experience of editing the code of themes or plugins</li>
<li><strong>Widget user interface</strong>: a way better (redesigned) widgets interface allowing you to edit widgets on the fly, have multiple copies of the same widget, drag and drop widgets between sidebars, and save inactive widgets so you don’t lose all their settings. Additionally developers now have access to a much cleaner and robust API for creating widgets as well.</li>
<li><strong>Comments</strong>: separating Comments into a separate postbox, from Discussion postbox, on the Edit Post screen; no more notifying post author of own comments; no asking for confirmation when marking a comment as spam</li>
<li>and many others&#8230;</li>
</ol>
<p>Here is the video about te abovementioned improvements:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="224" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://v.wordpress.com/Pu3T4X8l" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="224" src="http://v.wordpress.com/Pu3T4X8l" allowfullscreen="true"></embed></object></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm;">
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<p style="margin-bottom: 0cm;">
<p style="margin-bottom: 0cm;">There is also another nice point that should be emphasized&#8230; Due to the improvent that was intorduced in 2.7 version, now it&#8217;s much easier to update WordPress (the process is simplified into just a few clicks!!!). However you have to be carefull and don&#8217;t forget to backup your block as prompted when going trough the upgrade process. There is hardly a significant time difference, but it&#8217;s much safer for you to know that nothing will happen to your blog.</p>
<p style="margin-bottom: 0cm;"><!--more--></p>
<p style="margin-bottom: 0cm;">As a result I would like to mention that according to developers&#8217; words they “are already thinking hard about the next versions, 2.9 and 3.0”. As regards the  improvements which will probably be made, here are some of them: “media hanling, better dependency checking, versioning of templates and themes, and of course the fabled merging of WordPress and MU announced at WordCamp San Francisco”.</p>


<p>Related posts:<ol><li><a href='http://www.lampdocs.com/other-recipes-webmasters/voting-plugins-for-wordpress-blogs/' rel='bookmark' title='Voting Plugins For WordPress Blogs'>Voting Plugins For WordPress Blogs</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/linux-mint-10/' rel='bookmark' title='Linux Mint 10'>Linux Mint 10</a></li>
<li><a href='http://www.lampdocs.com/about/' rel='bookmark' title='About'>About</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/webmasters/wordpress-2-8-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voting Plugins For WordPress Blogs</title>
		<link>http://www.lampdocs.com/other-recipes-webmasters/voting-plugins-for-wordpress-blogs/</link>
		<comments>http://www.lampdocs.com/other-recipes-webmasters/voting-plugins-for-wordpress-blogs/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 16:34:13 +0000</pubDate>
		<dc:creator>serii</dc:creator>
				<category><![CDATA[Other Recipes]]></category>
		<category><![CDATA[add poll]]></category>
		<category><![CDATA[Editing Vote]]></category>
		<category><![CDATA[polls archive]]></category>
		<category><![CDATA[users' feedback]]></category>
		<category><![CDATA[vote the post]]></category>
		<category><![CDATA[voting opportunity]]></category>
		<category><![CDATA[voting plugins]]></category>
		<category><![CDATA[Voting Plugins For WordPress Blogs]]></category>
		<category><![CDATA[voting system]]></category>
		<category><![CDATA[WordPress  voiting plugins]]></category>
		<category><![CDATA[Wordpress polls archive]]></category>
		<category><![CDATA[WordPress voiting system]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/?p=35</guid>
		<description><![CDATA[It&#8217;s quite a well-known fact that users&#8217; feedback is of the great importance to the site owners. In addition to the fact that their feedback makes your site more attractive (because people like to read posts with a lot of comments and to express their opinion – they like being involved), it shows you how [...]


Related posts:<ol><li><a href='http://www.lampdocs.com/webmasters/wordpress-2-8-release/' rel='bookmark' title='WordPress 2.8 Release'>WordPress 2.8 Release</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/opengeu/' rel='bookmark' title='OpenGEU'>OpenGEU</a></li>
<li><a href='http://www.lampdocs.com/about/' rel='bookmark' title='About'>About</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s quite a well-known fact that <strong>users&#8217; feedback</strong> is of the great importance to the site owners. In addition to the fact that their feedback makes your site more attractive (because people like to read posts with a lot of comments and to express their opinion – they like being involved), it shows you how valuable and relevant your content is.</p>
<p>Thus it helps you to understand what the things that should be improved are.   Generally to get this extremely important feedback we give users the opportunity to leave the comments after each and every post. No doubt it&#8217;s a really nice idea. However there is one more thing that shouldn&#8217;t be underestimated – <strong>voting opportunity</strong> (voting functionality for posts).</p>
<p>Let&#8217;s discuss the most popular <strong>voting plugins</strong> for the <strong>WordPress</strong> that can help your blog to become even better.<br />
<span id="more-35"></span></p>
<p><strong>Vote It Up!</strong></p>
<p>Here are the common features of the given plugin:</p>
<ul>
<li>visitors can vote just in case they are allowed to</li>
<li>you can very easy manage the post votes</li>
<li>users can vote &#8220;for&#8221; or &#8220;against&#8221; your posts (you need to enable the feature) – two-way voting</li>
<li>as soon as you activate this plugin the vote of published posts counts</li>
<li>there is quite a decent amount of features to be customized   and etc.</li>
<li><strong>Installing Vote It Up!</strong></li>
</ul>
<p>You can get this plugin by pressing on &#8220;download&#8221; button <a href="http://wordpress.org/extend/plugins/vote-it-up/">here</a>. As soon as you are done with that follow the steps:</p>
<ul>
<li>Upload the folder with the plugin into the &#8220;/wp-content/plugins/&#8221; directory.</li>
<li>Login to your WordPress Administration Panel</li>
<li>Activate the &#8220;Vote It Up&#8221; plugin from the plugins page in the WordPress dashboard. If there are no error messages, the plugin is properly installed.</li>
<li><strong>Customizing the plugin</strong></li>
</ul>
<p>There is a way even to change the themes for this plugin (Settings – Vote It Up – Theming):</p>
<p><span style="font-size: 11pt; line-height: 115%; font-family: Calibri; mso-fareast-font-family: Calibri; mso-bidi-font-family: 'Times New Roman'; mso-ansi-language: RU; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-no-proof: yes;"> </span></p>
<p><img class="aligncenter size-full wp-image-64" title="1" src="http://www.lampdocs.com/wp-content/uploads/2009/06/17.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="115" /></p>
<p>Just above this &#8220;theming&#8221; section there are some options that can be configured as well:</p>
<p><img class="aligncenter size-full wp-image-76" title="2" src="http://www.lampdocs.com/wp-content/uploads/2009/06/26.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="470" /></p>
<p><strong> </strong></p>
<p><strong>Editing Vote It Up!</strong></p>
<p>To edit the votes go to &#8220;Settings – Edit Votes&#8221;</p>
<p>Finally here is plugin&#8217;s look you get (there are options to choose from):</p>
<p><img class="aligncenter size-full wp-image-40" title="3" src="http://www.lampdocs.com/wp-content/uploads/2009/06/31.JPG" alt=" Voting Plugins For WordPress Blogs" width="213" height="63" /></p>
<p>In case you need more detailed information about installation or configuration of the plugin, please visit <a href="http://wordpress.org/extend/plugins/vote-it-up/">this page</a>.</p>
<p><strong>WP-Polls 2.40</strong></p>
<p>Given plugin is used to add an AJAX poll system to your WordPress blog. In addition to the fact that it will help you to include a poll in an easy way, you will be able to customize it as you want (using CSS, templates and many other implemented options).</p>
<ul>
<li style="text-align: center;"><strong>Installing WP-Polls 2.40</strong></li>
</ul>
<p>Please take a look at the <a href="http://lesterchan.net/portfolio/programming/php/#wp-polls">author&#8217;s website</a> and download the plugin.</p>
<p>It&#8217;s really easy to install it. There are just 3 steps you need to follow:</p>
<ul>
<li>open &#8220;wp-content/plugins&#8221; folder</li>
<li>put the folder with the plugin</li>
<li>activate WP-Polls in the administrative panel
<ul>
<li><strong>Creating the polls</strong></li>
</ul>
</li>
</ul>
<p>As soon as the plugin is activated go to &#8220;Polls – Add poll&#8221; to create a poll:</p>
<p><img class="aligncenter size-full wp-image-78" title="4" src="http://www.lampdocs.com/wp-content/uploads/2009/06/43.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="371" /></p>
<p>Here is the example of the poll you can make:</p>
<p><img class="aligncenter size-full wp-image-80" title="5" src="http://www.lampdocs.com/wp-content/uploads/2009/06/52.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="636" /></p>
<p>Once you have the polls you can manage them in the first tab of &#8220;Polls&#8221; menu – &#8220;Manage polls&#8221;:</p>
<p><img class="aligncenter size-full wp-image-82" title="6" src="http://www.lampdocs.com/wp-content/uploads/2009/06/61.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="304" /></p>
<p style="text-align: center;"><strong> </strong> <strong>Usage instructions and ReadMe</strong></p>
<p>Please examine this <a href="http://lesterchan.net/wordpress/readme/wp-polls.html">ReadMe page</a> if there are some things needed to be clarified about usage of this plugin.</p>
<p><strong>Vote The Post</strong></p>
<p>This plugin for WordPress allows users to vote on the individual posts on your blog or website.</p>
<p>Among its characteristic features the following ones should be emphasized:</p>
<ul>
<li>the voting system is based on a 5-star system</li>
<li>after voting user gets immediate feedback that the vote was registered</li>
<li>administrator can control the amount of times for the registration of vote from an IP address</li>
<li><strong>Installation of Vote The Post </strong><strong> </strong></li>
<li>download the plugin from <a href="http://www.1800blogger.com/word-press-voting-plugin/">this page</a></li>
<li>copy the vote-the-post folder  to your wp-content/plugins directory.</li>
<li>go to &#8220;Plugins – Installed&#8221;, choose Vote The Post  and click &#8220;Activate&#8221;.</li>
</ul>
<p>In addition to that there is one more thing you can do &#8211; go to &#8220;Settings – Vote the Post&#8221; and modify the number of times a particular IP address can vote per post.</p>
<p>That&#8217;s it. It&#8217;s very simple, isn&#8217;t it?</p>
<p>Let&#8217;s just see how it looks:</p>
<ul>
<li>before voting</li>
<p><img class="aligncenter size-full wp-image-85" title="7" src="http://www.lampdocs.com/wp-content/uploads/2009/06/72.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="135" /></p>
<li>after voting</li>
</ul>
<p><img class="aligncenter size-full wp-image-86" title="8" src="http://www.lampdocs.com/wp-content/uploads/2009/06/81.JPG" alt=" Voting Plugins For WordPress Blogs" width="470" height="132" /></p>
<p>Hopefully you got some really nice and useful info from this post.</p>


<p>Related posts:<ol><li><a href='http://www.lampdocs.com/webmasters/wordpress-2-8-release/' rel='bookmark' title='WordPress 2.8 Release'>WordPress 2.8 Release</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/opengeu/' rel='bookmark' title='OpenGEU'>OpenGEU</a></li>
<li><a href='http://www.lampdocs.com/about/' rel='bookmark' title='About'>About</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/other-recipes-webmasters/voting-plugins-for-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Online Credit Card Processing Services</title>
		<link>http://www.lampdocs.com/monetization/online-credit-card-processing-services/</link>
		<comments>http://www.lampdocs.com/monetization/online-credit-card-processing-services/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 10:21:17 +0000</pubDate>
		<dc:creator>Vladimir Usenco</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[Credit Card Processing Service]]></category>
		<category><![CDATA[credit card transactions]]></category>
		<category><![CDATA[Credit card transfer]]></category>
		<category><![CDATA[forms of payment]]></category>
		<category><![CDATA[internet merchant’s account]]></category>
		<category><![CDATA[merchant]]></category>
		<category><![CDATA[merchant’s site]]></category>
		<category><![CDATA[payment gateway]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/?p=5</guid>
		<description><![CDATA[It&#8217;s quite an understandable fact that accepting different kinds of payment can help boost your sales. With the Credit Card Processing Services you have the power to accept almost all forms of payment. Using Credit Card Processing Services is especially important when conducting business online. A credit card processing service represents a company which processes [...]


Related posts:<ol><li><a href='http://www.lampdocs.com/linux-distros/astaro-security-gateway/' rel='bookmark' title='Astaro Security Gateway'>Astaro Security Gateway</a></li>
<li><a href='http://www.lampdocs.com/businessmen/back-to-online-project-management-tools-part-4/' rel='bookmark' title='Back to Online Project Management Tools: Part 4'>Back to Online Project Management Tools: Part 4</a></li>
<li><a href='http://www.lampdocs.com/businessmen/online-project-management-tools-in-depth-review-part-1/' rel='bookmark' title='Back to Online Project Management Tools: Part 1'>Back to Online Project Management Tools: Part 1</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s quite an understandable fact that accepting different kinds of payment can help boost your sales. With the Credit Card Processing Services you have the power to accept almost all forms of payment. Using Credit Card Processing Services is especially important when conducting business online.</p>
<p>A <strong>credit card </strong><strong>processing</strong><strong> service</strong> represents a company which processes credit card transactions for the retail, wholesale, mail order, phone, and Internet trades. Such companies handle the multiple steps involved in credit card processing in exchange for a fee (usually a certain percentage of each transaction). If you want to be able to accept credit cards then finding a credit card processing service to deal with is especially vital.</p>
<p><strong>Let&#8217;s take a closer look at how Online Credit Card Processing works…</strong><br />
<span id="more-5"></span></p>
<p><strong> <img class="aligncenter size-full wp-image-91" title="1" src="http://www.lampdocs.com/wp-content/uploads/2009/06/18.JPG" alt=" Online Credit Card Processing Services" width="470" height="300" /></strong><strong></strong></p>
<ul>
<li>Customer finds the merchant&#8217;s site and chooses the products to buy. When he/she is ready to go ahead with the purchase, he/she enters their credit card information.</li>
<li>In case the merchant does not have a secure page, the customer will be transferred to a secure payment gateway. If the merchant does have a secure site, then the information will be &#8220;passed&#8221; to the payment gateway without the customer ever leaving the merchant&#8217;s site.</li>
<li>As soon as the credit card info is introduced the payment gateway transfers it to CCPS.</li>
<li>The processing service transfers the information from the online payment gateway to the bank that issued the credit card, which verifies if the card is valid and has the requested amount on it.</li>
<li>The bank (credit card issuer) sets aside the purchase amount for the merchant and sends back an approval number or a decline message to CCPS.</li>
<li>It takes just 3-15 seconds for the information in steps 2-6 to be passed back to the gateway.</li>
<li>The payment gateway sends the approval code to the merchant&#8217;s site or, if the merchant does not have a secure site, gives the customer their approval information. At this point the merchant can email the customer a payment receipt.</li>
<li>Final payment is secured and is deposited in the internet merchant’s account. Generally it takes two business days for the funds to reach the merchant&#8217;s checking account.</li>
</ul>
<p>At the moment there are so many CCP Companies that it&#8217;s really hard to determine which one is the best for your business.</p>
<p>Thus the purpose of this post-review is to make your decision a little bit easier for you. There are a few things you need to take into consideration when choosing a Credit Card Processing Service:</p>
<ul>
<li>Average approval rating (the number of people that applied divided by the number of people actually approves)</li>
<li>All types of fees and their amount you need to pay</li>
<li>Good customer service (24/7 support, different ways of reaching the customer support service: telephone, email or instant messaging)</li>
<li>Fraud and security protection.</li>
</ul>
<p>At this point you should know enough about the Credit Card Processing Services to be able to compare them. So let&#8217;s go ahead with the comparison…</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="149" valign="top"></td>
<td width="85">
<p style="TEXT-ALIGN: center"><strong>Average Approval Rates </strong>(%)</p>
</td>
<td width="76">
<p style="TEXT-ALIGN: center"><strong>Monthly Fees </strong>($)</p>
</td>
<td width="95">
<p style="TEXT-ALIGN: center"><strong>Transaction Fee </strong>(%)</p>
</td>
<td width="76">
<p align="center"><strong>Days to setup account</strong></p>
</td>
<td width="85">
<p style="TEXT-ALIGN: center"><strong>Customer Service</strong></p>
</td>
<td width="85">
<p style="TEXT-ALIGN: center"><strong>Fraud and Security Protection</strong></p>
</td>
<td width="76">
<p align="center"><strong>Visit site</strong></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Flagship Merchant Services</strong></p>
</td>
<td width="85">
<p align="center">98</p>
</td>
<td width="76">
<p align="center">32,95</p>
</td>
<td width="95">
<p align="center">2,14</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.flagshipmerchantservice.com/">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>2CheckOut</strong></p>
</td>
<td width="85">
<p align="center">97</p>
</td>
<td width="76">
<p align="center">49 ¹</p>
</td>
<td width="95">
<p align="center">5,5</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.2checkout.com/community/">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Merchant Warehouse</strong></p>
</td>
<td width="85">
<p align="center">99</p>
</td>
<td width="76">
<p align="center">37,95</p>
</td>
<td width="95">
<p align="center">2,19</p>
</td>
<td width="76">
<p align="center">2</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://merchantwarehouse.com/?cpao=500">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Go E Merchant Accounts</strong></p>
</td>
<td width="85">
<p align="center">99</p>
</td>
<td width="76">
<p align="center">37,90</p>
</td>
<td width="95">
<p align="center">2,14</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="https://secure.goemerchant.com/secure/application/apply.aspx?ResellerID=22755">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>The Transaction Group</strong></p>
</td>
<td width="85">
<p align="center">95</p>
</td>
<td width="76">
<p align="center">25</p>
</td>
<td width="95">
<p align="center">2,20</p>
</td>
<td width="76">
<p align="center">2</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.thetransactiongroup.net/?a_aid=toptenreviews">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Merchant Accounts Express</strong></p>
</td>
<td width="85">
<p align="center">98</p>
</td>
<td width="76">
<p align="center">44,95</p>
</td>
<td width="95">
<p align="center">2,27</p>
</td>
<td width="76">
<p align="center">3</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="https://www.merchantexpress.com/preAppPage.htm">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Electronic Transfers</strong></p>
</td>
<td width="85">
<p align="center">98</p>
</td>
<td width="76">
<p align="center">40</p>
</td>
<td width="95">
<p align="center">2,25</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.electronictransfer.com/index.php?aff=CJ&amp;AID=12796&amp;PID=1403326">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Free AuthNet</strong></p>
</td>
<td width="85">
<p align="center">99</p>
</td>
<td width="76">
<p align="center">49,90</p>
</td>
<td width="95">
<p align="center">2,14</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.freeauthnet.com/index.html">go</a></p>
</td>
</tr>
<tr>
<td width="149">
<p align="center"><strong>Charge</strong></p>
</td>
<td width="85">
<p align="center">98</p>
</td>
<td width="76">
<p align="center">51,95</p>
</td>
<td width="95">
<p align="center">2,25</p>
</td>
<td width="76">
<p align="center">1</p>
</td>
<td width="85">
<p align="center">24/7</p>
</td>
<td width="85">
<p align="center">Yes</p>
</td>
<td width="76">
<p align="center"><a href="http://www.charge.com/?jerry619">go</a></p>
</td>
</tr>
</tbody>
</table>
<p>49 ¹ – this is just one time set up fee of $49.00. There are no leases, no monthly fees, no application fees, no gateway fees, no additional card company or third party charges and no statement fees.</p>
<p>I&#8217;m more than sure that now it&#8217;s much easier for you to make your final decision.</p>


<p>Related posts:<ol><li><a href='http://www.lampdocs.com/linux-distros/astaro-security-gateway/' rel='bookmark' title='Astaro Security Gateway'>Astaro Security Gateway</a></li>
<li><a href='http://www.lampdocs.com/businessmen/back-to-online-project-management-tools-part-4/' rel='bookmark' title='Back to Online Project Management Tools: Part 4'>Back to Online Project Management Tools: Part 4</a></li>
<li><a href='http://www.lampdocs.com/businessmen/online-project-management-tools-in-depth-review-part-1/' rel='bookmark' title='Back to Online Project Management Tools: Part 1'>Back to Online Project Management Tools: Part 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/monetization/online-credit-card-processing-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

