<?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>SuperScriptz &#187; Wordpress</title>
	<atom:link href="http://superscriptz.net/projects/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://superscriptz.net</link>
	<description>Scripting with Attitude</description>
	<lastBuildDate>Sat, 27 Mar 2010 23:55:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Hide your email address in plain sight</title>
		<link>http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/</link>
		<comments>http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 22:39:06 +0000</pubDate>
		<dc:creator>onykage</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Web Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[decoding]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[hide your email]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://superscriptz.net/?p=220</guid>
		<description><![CDATA[


Do you want to post your email publicly and visible for anyone who reads your blog/website to have the ability to contact you but you do not want to have your private email box spammed with ridiculous amounts of phishing emails and junk you did not ask for?  What about making the email address [...]<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
			<content:encoded><![CDATA[<div width="89" height="94" style="position: absolute; top: 2px; right: 2px;">
<img width="89" height="94" src="/wp-content/themes/greenme/images/concept_tag.png" alt="" />
</div>
<p>Do you want to post your email publicly and visible for anyone who reads your blog/website to have the ability to contact you but you do not want to have your private email box spammed with ridiculous amounts of phishing emails and junk you did not ask for?  What about making the email address fully click-able with a &#8220;mailto:&#8221; anchor tag.  What about setting the email address automatically in a completely cloaked image, that remains anonymous at the same time?  Well I think I have thought up the perfect solution for you.</p>
<p>The concept is really simple.  Page crawlers look for <span style="color: #993300;"><strong>mailto:myemailaddress@mydomain.com</strong></span>, or the key factors in there, which are &#8216;<span style="color: #993300;">mailto:</span>&#8216;, &#8216;<span style="color: #993300;">@</span>&#8216;, and &#8216;<span style="color: #993300;">.com</span>,<span style="color: #993300;">.net</span>,<span style="color: #993300;">.org</span>, etc&#8217;.  So if we take these out of the raw HTML code then the page crawler wont see it.  Now sure you can just break it up with stuff like <span style="color: #993300;">myemailaddress</span> -at- <span style="color: #993300;">mydomain</span> -dot- <span style="color: #993300;">com</span>, which definately will slow the crawlers down, but lets remember that the people who write these bots are smart and like a challenge.  So because the idea of breaking up or spelling out email addresses has gotten more popular, its also gotten common to include a small dictionary of common words that are releated to email addresses and then to just grab a string and then convert it back to the real email address.</p>
<p>The Idea here is to take the above mention concept and move to the next extreme.  Lets encode our email address when we bust it up and it will quite literally disappear into the website and yet it will also remain in plain site for us humans.  Also because we have made it for all practical purposes invisible to bots and crawlers, we can put back some of the features we removed before, like put the link back in and make the email address clickable once more.</p>
<p>So.. lets have a look at some code.</p>
<p>First thing we need to do when we grab out email address out of a database is to give it a simple encoding like so&#8230;</p>
<pre name="code" class="php">
function strToHex($string, $x=0) {
	$hex='';
	for($i=0; $i < strlen($string); $i++) {
		$hex .= dechex(ord($string[$i]));
	}
	echo strtoupper($hex);
}
</pre>
<p>Next we need to work some javascript magic on it.  For this I prefer to use <a href="http://jquery.com" target="_blank" title="(23 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://jquery.com'; return false">jQuery</a>. </p>
<pre name="code" class="javascript">
jQuery.fn.hex_mail = function(username, domain_name, domain_ext, link_text) {
    var conusername = DoAsciiHex(username);
    var condomain = DoAsciiHex(domain_name);
    var condomext = DoAsciiHex(domain_ext);
    var link_text;
    var email;
    var useImage = 0;

	if(link_text) {
		if(link_text == " ") {
			useImage = 1;
		} else {
        	link_txt = link_text;
    	}
    } else {
        link_txt = conusername + "@" + condomain + "." + condomext;
    }
    if(useImage == 1) {
    	mail_link = "<a " + "href" + "=" + "'mail" + "to" + ":" + conusername + "@" + condomain + "." + condomext +"'>";
    	jQuery(this).wrap(mail_link);
	} else {
	    mail_link = "<a " + "href" + "=" + ">" + link_txt +"</a>";
	    jQuery(this).append(mail_link);
    }
};
</pre>
<p>Now what the javascript is doing is, taking the encoded text, decoding it and then placing the text into a dynamically created anchor tag that is only visible within the DOM.  Sure we can just put non-encoded strings of text into the same script and stuff that into the head of the doc, and it will do the same thing, but, the keywords i mentioned earlier are still present.  The encoding provides the javascript with a nifty cloaking device if you will.</p>
<p>Next let slap the whole thing into some HTML and have a look.</p>
<pre name="code" class="html">
 < html >
	< head >
		<script src="http://code.jquery.com/jquery-latest.js"></script>
		<script type="text/javascript" src="hexmail.js"></script>
		<script type="text/javascript">
			jQuery(document).ready(function(){
				jQuery('#contactme').hex_mail("<?php strToHex($part[0]); ?>", "<?php strToHex($part[1]); ?>", "<?php strToHex($ext[1]); ?>");
				jQuery('#contactrmer').hex_mail("<?php strToHex($part[0]); ?>", "<?php strToHex($part[1]); ?>", "<?php strToHex($ext[1]); ?>", "MyHiddenEmail");
			});
		</script>
<style>
			a {
				text-decoration: none;
				color: #000;
			}
		</style>

	< /head >
        < body >
<div><span>Example that uses your readable email address.</span></div>
<div style="margin-bottom: 50px;"><span id="contactme"></span></div>
<div><span>Example that uses a hidden email.</span></div>
<div style="margin-bottom: 50px;"><span id="contactrmer"></span></div>

        < /body >
< /html >
</pre>
<p>In the above code we are doing both putting the email in plain site, as well as making the email link hidden and only visible via click or mouseover event in the status bar.</p>
<p>Want to take it to the next extreme?  how about dynamically embed your email in an image thats encoded, cloaked, and now not even really text??</p>
<p>check this out.</p>
<pre name="code" class="php">
function strToJpeg($string, $size, $fcolor, $bgcolor, $hex){

header('Content-type: image/jpeg');
if($hex == 1) {
	$string = hexToStr($string);
}

$len = (strlen($string)*8.75);

$txtbox = imagecreatetruecolor($len, $size+5);

$fcolor = explode(',',rgbColor($fcolor));
$fcolor = imagecolorallocate($txtbox,$fcolor[0],$fcolor[1],$fcolor[2]);
//$fcolor = imagecolorallocate($txtbox,0,0,0);
$bgcolor = explode(',',rgbColor($bgcolor));
//echo $bgcolor;
$bgcolor = imagecolorallocate($txtbox,$bgcolor[0],$bgcolor[1],$bgcolor[2]);
//$bgcolor = imagecolorallocate($txtbox,255,255,255);

imagefilledrectangle($txtbox,0,0,$len,$size+5,$bgcolor);

$font = 'arial.ttf';

imagettftext($txtbox,$size,0,0,12,$fcolor,$font,$string);
imagejpeg($txtbox);
imagedestroy($txtbox);
}
strToJpeg($_GET['string'],$_GET['size'],$_GET['fcolor'],$_GET['bgcolor'],$_GET['hex']);
</pre>
<p>If we take the encoded email address parts, and put them all back together and decode them then use the PHP GD libs to create an image out of the text.  Then we can use the javascript function from above to "wrap" the image into an anchor.  like so</p>
<pre name="code" class="html">
<script>
jQuery('#contactrrmerr').hex_mail("<?php strToHex($part[0]); ?>", "<?php strToHex($part[1]); ?>", "<?php strToHex($ext[1]); ?>", " ");
</script>
<div style="margin-bottom: 50px;">
			<span id="contactrrmerr"><img src="imgJpeg.php?string=< ? php echo $imgstr; ? >&#038;size=12&#038;fcolor=000&#038;bgcolor=fff&#038;hex=1" border="0" alt="" /></span>
		</div>
</pre>
<p>This option is for those of us who are so paranoid that we are afraid to go to rehab.</p>
<p>For now thats a start on the concept.  I may revisit this in the future and give some more incite or ideas.  For now if you want to look at some real working code, download my example.</p>
<h4>||<a href="http://superscriptz.net/wp-content/uploads/hexmail.zip" title="(6 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://superscriptz.net/wp-content/uploads/hexmail.zip'; return false">Download</a>|--|<a href="http://www.onykage.com/sandbox/hexmail/example.php" title="(33 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.onykage.com/sandbox/hexmail/example.php'; return false">Example</a>||</h4>
<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/" title="(10 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.gdstarrating.com/'; return false"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p align="left"><a class="tt" href="http://twitter.com/home/?status=Hide+your+email+address+in+plain+sight+http://6k3mw.th8.us" title="Post to Twitter"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/&amp;title=Hide+your+email+address+in+plain+sight" title="Post to Digg"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/&amp;t=Hide+your+email+address+in+plain+sight" title="Post to Facebook"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-facebook-big4.png" alt="Post to Facebook" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Hide+your+email+address+in+plain+sight&amp;link=http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/" title="Post to Ping.fm"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-ping-big4.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/&amp;title=Hide+your+email+address+in+plain+sight" title="Post to StumbleUpon"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://superscriptz.net/onykage/wordpress/hide-your-email-address-in-plain-sight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ventrilo Status Monitor (Beta Project)</title>
		<link>http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/</link>
		<comments>http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 21:32:04 +0000</pubDate>
		<dc:creator>onykage</dc:creator>
				<category><![CDATA[WP Vent Spy]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[beta testing]]></category>
		<category><![CDATA[ventrilo]]></category>
		<category><![CDATA[vspy]]></category>

		<guid isPermaLink="false">http://superscriptz.net/?p=187</guid>
		<description><![CDATA[


This is the beta project for the Wordpress Ventrilo Status Monitor Script.
If you have asked for changes or additions, before those changes make it to the official current release, the beta has to be tested to insure that the script works for everyone.  Do you want to try the bleeding edge version of the [...]<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
			<content:encoded><![CDATA[<div width="89" height="94" style="position: absolute; top: 2px; right: 2px;">
<img width="89" height="94" src="/wp-content/themes/greenme/images/beta_tag.png" alt="" />
</div>
<p>This is the beta project for the Wordpress Ventrilo Status Monitor Script.</p>
<p>If you have asked for changes or additions, before those changes make it to the official current release, the beta has to be tested to insure that the script works for everyone.  Do you want to try the bleeding edge version of the plugin?  Did you make a suggestion that is not part of the project?  Well dont wait any longer, download the beta version of the plugin right now!  And make sure you come back and report your bugs.</p>
<h4 style="color:red;">Possible plugin conflicts</h4>
<p>Ajax Login Widget++<br />
Google Syntax Highlighter for WordPress</p>
<p><!-- Download Link--></p>
<h3><a href="http://downloads.wordpress.org/plugin/wp-vent-spy.1.2.62_beta.zip" onclick="window.location='http://superscriptz.net/go.php?http://downloads.wordpress.org/plugin/wp-vent-spy.1.2.62_beta.zip'; return false">Download the beta package</a> <span class="hitcounter">(87 downloads)</span></h3>
<h2><strong>Beta Change Log</strong></h2>
<div style="height: 200px; width: 100%; overflow: auto; border: 1px solid #c4c4c4; margin-bottom: 15px; padding: 5px;">
<span style="color: #3366ff;">1.2.62_beta</span></p>
<ul>
<li>Added Donation renew option for those who donate to remove the ad in increments.</li>
<li>Added Update notice</li>
<li>Added Paranoid Option
<p>This option is for people who have a community or clan based WP website and you dont want the general public being able to have access to your server status.&nbsp;&nbsp;This option will most likely be renamed to &#8220;privacy&#8221; on the official release.</p>
</li>
<li>Bug Fix: open_basedir or php safe mode enabled in the php.ini.</li>
</ul>
</div>
<h2><strong>New Upcoming Features</strong></h2>
<div style="height: 200px; width: 100%; overflow: auto; border: 1px solid #c4c4c4; margin-bottom: 15px; padding: 5px;">
<ol>
<li>Ambiguous Widget Placement</li>
<li>New Improved Options Page (better organization)</li>
<li>New Status window menu panel</li>
<li>Auto Donation ID validation</li>
</ol>
</div>
<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=0.0" /></div><div>Rating: 0.0/<strong>10</strong> (0 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/" title="(10 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.gdstarrating.com/'; return false"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p align="left"><a class="tt" href="http://twitter.com/home/?status=Ventrilo+Status+Monitor+%28Beta+Project%29+http://79gbi.th8.us" title="Post to Twitter"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/&amp;title=Ventrilo+Status+Monitor+%28Beta+Project%29" title="Post to Digg"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/&amp;t=Ventrilo+Status+Monitor+%28Beta+Project%29" title="Post to Facebook"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-facebook-big4.png" alt="Post to Facebook" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Ventrilo+Status+Monitor+%28Beta+Project%29&amp;link=http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/" title="Post to Ping.fm"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-ping-big4.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/&amp;title=Ventrilo+Status+Monitor+%28Beta+Project%29" title="Post to StumbleUpon"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WP Ventrilo Status Monitor</title>
		<link>http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/</link>
		<comments>http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 22:34:29 +0000</pubDate>
		<dc:creator>onykage</dc:creator>
				<category><![CDATA[WP Vent Spy]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ventrilo]]></category>
		<category><![CDATA[vspy]]></category>

		<guid isPermaLink="false">http://superscriptz.net/?p=57</guid>
		<description><![CDATA[














A robust and highly configurable ventrilo server status plugin for WordPress.  This is free utility that is powered by flagships ventrilo_status program and sponsored by InstantVentrilo.com
Basics
This plugin has a hosted or managed operation.
Hosted Option

Will ask another website what the provided vent server address is doing.
Has a small ad at the bottom of the script.
Custom [...]<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=8.7" /></div><div>Rating: 8.7/<strong>10</strong> (7 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br />]]></description>
			<content:encoded><![CDATA[<div style="position: absolute; top: 7px; left: 50%; height: 25px; width: 160px;">
<table border="0" cellpadding="0" cellspacing="0" style="padding: 0px; margin: 0px; border: 0px; width: 160px; height: 25px;">
<tr>
<td style="border: 0px;"><img src="http://superscriptz.net/wp-content/uploads/browsers.png" alt="Supported Browsers(IE,FF,Safari,Opera,Chrome,Flock)" /></td>
</tr>
</table>
</div>
<div style="position: absolute; top: 25px; left: 80%; width: 120px;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="10805248">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
</div>
<p>A robust and highly configurable ventrilo server status plugin for WordPress.  This is free utility that is powered by flagships ventrilo_status program and sponsored by <a href="https://cp.light-speed.com/t.php?OKEY=custom_ivt_onykage" target="_blank" title="(111 downloads)" onclick="window.location='http://superscriptz.net/go.php?https://cp.light-speed.com/t.php?OKEY=custom_ivt_onykage'; return false">InstantVentrilo.com</a></p>
<h2><strong>Basics</strong></h2>
<p>This plugin has a hosted or managed operation.</p>
<p>Hosted Option</p>
<ul>
<li>Will ask another website what the provided vent server address is doing.</li>
<li>Has a small ad at the bottom of the script.</li>
<li>Custom Width</li>
<li>Custom Height</li>
<li>Refresh On Demand</li>
<li>Styled Overflow</li>
<li>Vent Logo Toggle in Titlebar</li>
</ul>
<p>Managed Option</p>
<ul>
<li>User managed</li>
<li>No Ad at the bottom of the script</li>
<li>Custom Width</li>
<li>Custom Height</li>
<li>Styled Overflow</li>
<li>Custom Colors</li>
<li>Custom Width &amp; Height with Overflow</li>
<li>Menubar Toggle</li>
<li>Fancy or Plain Display</li>
<li>Refresh On Demand</li>
<li>Automatic Server Software Configuration</li>
<li><span style="color: red;">Requires that the webserver is running a linux OS.</span></li>
<li><span style="color: red;">Requires that the webserver have permission to run the program.</span></li>
<li><span style="color: red;">Requires the server to have the ventrilo server port on a whitelist.</span></li>
</ul>
<h2><strong>Download</strong></h2>
<p>The most recent stable version can be downloaded from</p>
<p><a href="http://wordpress.org/extend/plugins/wp-vent-spy/" target="_blank" title="(324 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://wordpress.org/extend/plugins/wp-vent-spy/'; return false">http://wordpress.org/extend/plugins/wp-vent-spy/</a></p>
<h2><strong>Beta Version</strong></h2>
<p>Would you rather have a bleeding edge version of the plugin?  Did you suggest something be added or did you report a bug?  Is the current version just not working for you?  Then give the <span style="color: #f00;">beta</span> version a try.<br />
<a href="http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/" target="_blank" title="(98 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/'; return false">http://superscriptz.net/onykage/wordpress/ventrilo-status-monitor-beta/</a></p>
<h2><strong>Plugin Advertisement</strong></h2>
<p>If you want to remove the ad from the status widget, simply click the donate button at the top of the article subject or from inside the plugin options page.  Once you have successfully completed the donation a unique ID code will be emailed to you.  Enter this code in the <em>Donation ID Code</em> field on the plugin options page to remove the ad from the bottom of the plugin.</p>
<h2><strong>F.A.Q.</strong></h2>
<ol>
<li>
<ul>
<li><b>Q:</b>&nbsp;I am getting “No response from server.” error on the widget</li>
<li><b>A:</b>&nbsp;There is no server responce from the ip address + port you provided.  Check your information or try a different server you know works.  For testing purposes please feel free to use vent.onykage.com:5733.</li>
<li>Another common reason for this issue is if the ventrilo server host has the web ports blocked.  If this is the case then no monitor script will work until you tell the host company to unblock the ports.</li>
</ul>
</li>
<li>
<ul>
<li><b>Q:</b>&nbsp;The plugin loading image doesnt disappear.</li>
<li><b>A:</b>&nbsp;Your current wordpress template is forcing the wrong version of jQuery or not allowing jQuery to function or you have a no script plugin running on your current browser.</li>
</ul>
</li>
</li>
<li>
<ul>
<li><b>Q:</b>&nbsp;The plugin is configured and it doesnt show anything besides the lobby.</li>
<li><b>A:</b>&nbsp;Your webhost has the port you assigned as your ventrilo server port blocked.  The port needs to be added to your websites whitelist</li>
</ul>
</li>
<li>
<ul>
<li><b>Q:</b>&nbsp;I got the Error &#8220;PHP Unable to start external status process.&#8221;, what now?</li>
<li><b>A:</b>&nbsp;If you got this error then either <em>A</em> You do not have permission to execute the status program or <em>B</em> Your webhost has deemed the program as a security threat and disabled all access to it or removed it for you.  I highly recomend you get a less retarded and more mainstream webhost if this is the case, I recommend <a href="http://www.hostmonster.com/track/onikage" target="_blank" title="Goto Hostmonster.com (11 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.hostmonster.com/track/onikage'; return false">hostmonster</a> or <a href="http://www.webfaction.com?affiliate=onykage" target="_blank" title="Goto Webfaction.com (16 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.webfaction.com?affiliate=onykage'; return false">webfaction</a> to name a few.  Both offer a wide variety of services and are completely customizable to allow for what ever you decide you want to do with your website which is how it should be.</li>
</ul>
</li>
<li>
<ul>
<li><b>Q:</b>&nbsp;Does the donation ID expire?</li>
<li><b>A:</b>&nbsp;Maybe.&nbsp;&nbsp;It depends on the amount of the donation.&nbsp;&nbsp;Donations in excess of 15 USD give ID&#8217;s that will not expire.&nbsp;&nbsp;Otherwise the experation is based on how much you use the plugin vs how much you donated.&nbsp;&nbsp;Use a ratio of 0.01 cents per use or 1000 uses per dollar.</li>
</ul>
</li>
</ol>
<h2><strong>Change Log</strong></h2>
<div style="height: 200px; width: 100%; overflow: auto; border: 1px solid #c4c4c4; margin-bottom: 15px;">
<span style="color: #3366ff;">1.2.3</span><br />
added option to remove Ventrilo Logo from title bar<br />
added option to remove the Menubar from the status window for managed users.<br />
fixed validation button display on managed pane.</p>
<p><span style="color: #3366ff;">1.2.1a-b-c</span><br />
various minor bug fixes and adjustments.</p>
<p><span style="color: #3366ff;">1.2</span><br />
now supports FireFox 2.5 and later, IE 6.5 and later, Chrome(all), Safari(all), Opera(all), Flock<br />
moved ajax were it belongs (in the head)<br />
optimized ajax for smoother operation (now 40% faster process time)<br />
removed loading image<br />
added ventrilo logo to the title bar<br />
reorganised the options page to a more logical easy to use page<br />
added ajax based refresh effect<br />
added toggle based menu to extremespy utility</p>
<p><span style="color: #3366ff;">1.1.372b</span><br />
changed loader.gif to ajax-loader.gif<br />
changed loading div to align center, and be the width of the sidebar<br />
adjustments made for changing the loader image tutorial<br />
test adjustments to readme.txt to include xml formatting</p>
<p><span style="color: #3366ff;">1.1.364</span><br />
fixed mulitple security issues with donation system<br />
more code cleanup</p>
<p><span style="color: #3366ff;">1.1.146</span><br />
added donation activation system<br />
removed old versions from repo.  Plugin is now fully stable so older versions are no longer needed.</p>
<p><span style="color: #3366ff;">1.1.033</span><br />
added sponsorship banner and information into the options page<br />
added sponsorship link into the vspy hosted banner.</p>
<p><span style="color: #3366ff;">1.1.013</span><br />
added ability to change width/height/overflow on hosted &amp; managed options</p>
<p><span style="color: #3366ff;">1.1.0</span><br />
several minor code fixes and cleanup<br />
changed the options page banner to a dynamic header<br />
fixed no jquery problem<br />
added managed autofix</p>
<p><span style="color: #3366ff;">1.0.372</span><br />
fixed a few typeOs<br />
fixed the fancy toggle.</p>
<p><span style="color: #3366ff;">1.0.366</span><br />
fixed several precurser parse and instant errors.<br />
added some security fixes<br />
added some statitical resorce information to help with debugging.</p>
<p><span style="color: #3366ff;">1.0.326</span><br />
replaced php file_get_content() with cURL libs as a php.ini workaround for hosted option.</p>
<p><span style="color: #3366ff;">1.0.318</span><br />
fixed display delay for hosted option<br />
added hosted.php file(jQuery work around for Post())<br />
added loading.gif<br />
added loading sequence in ajax to increase page load speeds<br />
added fancy graphics to display<br />
updated screenshots<br />
added width options<br />
added fancy/plain toggle<br />
added custom colors<br />
added hex color data to buildTable</p>
<p><span style="color: #3366ff;">1.0.115</span><br />
fixed version oversite (project just now reached 1.0 state.)<br />
added options page<br />
added hosted option<br />
change widget control to dynamic insertion<br />
added file permissions test option for the managed section.;</p>
<p><span style="color: #3366ff;">0.7.77</span><br />
Cleaned up the code.;<br />
Fixed the file location bug in the widget.;<br />
added a post based display module, please see installation.</p>
<p><span style="color: #3366ff;">0.6.42</span><br />
added ajax refresh options</p>
<p><span style="color: #3366ff;">0.5.11</span><br />
project start<br />
inicial addition to wordpress svn
</div>
<br /><div><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx.php?value=8.7" /></div><div>Rating: 8.7/<strong>10</strong> (7 votes cast)</div><br /><a target="_blank" href="http://www.gdstarrating.com/" title="(10 downloads)" onclick="window.location='http://superscriptz.net/go.php?http://www.gdstarrating.com/'; return false"><img src="http://superscriptz.net/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p align="left"><a class="tt" href="http://twitter.com/home/?status=WP+Ventrilo+Status+Monitor+http://fcffa.th8.us" title="Post to Twitter"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-twitter-big4.png" alt="Post to Twitter" /></a> <a class="tt" href="http://digg.com/submit?url=http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/&amp;title=WP+Ventrilo+Status+Monitor" title="Post to Digg"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/&amp;t=WP+Ventrilo+Status+Monitor" title="Post to Facebook"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-facebook-big4.png" alt="Post to Facebook" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=WP+Ventrilo+Status+Monitor&amp;link=http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/" title="Post to Ping.fm"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-ping-big4.png" alt="Post to Ping.fm" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/&amp;title=WP+Ventrilo+Status+Monitor" title="Post to StumbleUpon"><img class="nothumb" src="http://superscriptz.net/wp-content/plugins/tweet-this/icons/tt-su-big4.png" alt="Post to StumbleUpon" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://superscriptz.net/onykage/wordpress/wp-ventrilo-status-monitor/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>
