<?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>Web-Freak.com &#124; All In One Webmaster Blog &#187; DigitalWebTalk Tutorials</title>
	<atom:link href="http://www.web-freak.com/category/digitalwebtalk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-freak.com</link>
	<description></description>
	<lastBuildDate>Fri, 22 Jan 2010 09:20:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DigitalWebTalk Tutorials &#8211; Make your own PHP Licensing system!</title>
		<link>http://www.web-freak.com/digitalwebtalk/make-your-own-php-licensing-system/</link>
		<comments>http://www.web-freak.com/digitalwebtalk/make-your-own-php-licensing-system/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 07:47:03 +0000</pubDate>
		<dc:creator>Web Freak</dc:creator>
				<category><![CDATA[DigitalWebTalk Tutorials]]></category>
		<category><![CDATA[php licensing]]></category>

		<guid isPermaLink="false">http://www.web-freak.com/?p=225</guid>
		<description><![CDATA[Another useful tutorial from DigitalWebTalk.com
All Credits to to this post..
&#8212;
Ever scared that someone might steal your source code and distribute without any rights?
Well here is a solution. In this tutorial, i will teach you how to make a licensing system to your php scripts. Its fairly simple, however hackers can decode it. but still, you [...]]]></description>
			<content:encoded><![CDATA[<p>Another useful tutorial from <a href="http://www.DigitalWebTalk.com">DigitalWebTalk.com</a></p>
<p>All Credits to to <a href="http://www.digitalwebtalk.com/tutorials/php-tutorials/your-own-licensing-system.html">this</a> post..</p>
<p>&#8212;</p>
<p>Ever scared that someone might steal your source code and distribute without any rights?</p>
<p>Well here is a solution. In this tutorial, i will teach you how to make a licensing system to your php scripts. Its fairly simple, however hackers can decode it. but still, you might be safe from the script-kiddies. Its a simple php web development tutorial.</p>
<p>Here is what you have to do. First Put this php code in any file of your <strong>php script</strong> :</p>
<blockquote><p>$licensed = @file_get_contents (’http://www.<strong>yourdomain.com</strong>/check.php?u=’ . $_SERVER['HTTP_HOST'] );</p>
<p>if($licensed==’1′)  { //your statements }</p>
<p>else die (”Unlicensed”);</p></blockquote>
<p>Now the source of check.php which you have to host on your server</p>
<blockquote><p>&lt;?php<br />
$domain=$_POST['u'];</p>
<p>if( $domain == ‘licenseddomain1.com’ || $domain==’licenseddomain2.com’ ) echo “1″;</p>
<p>//you can add any number of domains to be licensed.</p>
<p>else echo “0″;</p>
<p>?&gt;</p></blockquote>
<p>Now try to hide the First bit of code in any file which has a lot of coding. Also try to encode it. you can also use Free encoders available such as <a title="digitalwebtalk.com" href="http://www.byterun.com/free-php-encoder.php" target="_blank">THIS</a>. But remember, these are not decryptable. I suggest you use ioncibe and encode the file which has the first codebit.</p>
<p>thats it. You ‘ve just made your own licensing system <img class="wp-smiley" src="http://www.digitalwebtalk.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-freak.com/digitalwebtalk/make-your-own-php-licensing-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DigitalWebTalk Tutorials &#8211; Adding a favicon to a Wordpress Blog!</title>
		<link>http://www.web-freak.com/digitalwebtalk/digitalwebtalk-tutorials-adding-a-favicon-to-a-wordpress-blog/</link>
		<comments>http://www.web-freak.com/digitalwebtalk/digitalwebtalk-tutorials-adding-a-favicon-to-a-wordpress-blog/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 06:33:06 +0000</pubDate>
		<dc:creator>Web Freak</dc:creator>
				<category><![CDATA[DigitalWebTalk Tutorials]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[favicon on wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.web-freak.com/?p=220</guid>
		<description><![CDATA[Alright, Digitalwebtalk.com is one of my favorite blogs and I have also dedicated a special category for posts made by the admin!
Its a must visit site for all tutorials etc.
Hi all,
I have had many people asking me how i added a favicon to a wordpress blog. Its not there by default.  So i would like [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, <a href="http://www.Digitalwebtalk.com">Digitalwebtalk.com</a> is one of my favorite blogs and I have also dedicated a special <a href="http://www.web-freak.com/category/digitalwebtalk/">category</a> for posts made by the admin!</p>
<p>Its a must visit site for all tutorials etc.</p>
<p>Hi all,</p>
<p>I have had many people asking me how i added a <strong>favicon to a wordpress blog</strong>. Its not there by default.  So i would like to share this <strong>simple method</strong> to add a favicon to your <strong>wordpress Blog</strong>.</p>
<p>here is what you have to do :</p>
<p>Step 1 :</p>
<p>Get your <strong>favicon</strong> ready. Well , you can get <strong>favicons</strong> from many places. If you want to <strong>design your own</strong> cool favicon, then see <a title="Creating Favicon" href="http://www.digitalwebtalk.com/tutorials/photoshop/create-a-simple-web-2-favicon.html" target="_blank">THIS</a> for the <strong>simple tutorial</strong>.</p>
<p>Step 2 :</p>
<p>Copy the generated favicon to your <strong>wp-content/themes/theme-name</strong> folder.</p>
<p>Step 3 :</p>
<p>Edit the header.php and add the following code anywhere between the &lt;head&gt;&lt;/head&gt; tags.</p>
<blockquote><p>&lt;link rel=”shortcut icon” href=”favicon.ico”&gt;</p></blockquote>
<p>Thats all. The Favicon should start to appear now. <img class="wp-smiley" src="http://www.digitalwebtalk.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<p>All credits to the admins of DWT</p>
<p>Thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-freak.com/digitalwebtalk/digitalwebtalk-tutorials-adding-a-favicon-to-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
