<?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>Interact through writing at AskCrazy &#187; Tutorials</title>
	<atom:link href="http://www.askcrazy.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.askcrazy.com</link>
	<description>share ideas</description>
	<lastBuildDate>Sun, 24 Jan 2010 23:51:34 +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>How to hide a RAR file in JPG file</title>
		<link>http://www.askcrazy.com/tutorials/how-to-hide-a-rar-file-in-jpg-file.html</link>
		<comments>http://www.askcrazy.com/tutorials/how-to-hide-a-rar-file-in-jpg-file.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 23:51:34 +0000</pubDate>
		<dc:creator>yaw300</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.askcrazy.com/?p=10</guid>
		<description><![CDATA[First you need to have a rar file and a jpg image to hide the rar
Say the jpg is &#8220;image.jpg&#8221; and the rar is “file.rar”
Go to Windows command prompt (Start&#62;Run&#62;type cmd and press enter)
Now type this command:
copy /b image.jpg + file.rar newfile.jpg
switch “/b” indicates the copy function is binary
“newfile.jpg” is the resulting image with the [...]]]></description>
			<content:encoded><![CDATA[<p>First you need to have a rar file and a jpg image to hide the rar<br />
Say the jpg is &#8220;image.jpg&#8221; and the rar is “file.rar”</p>
<p>Go to Windows command prompt (Start&gt;Run&gt;type cmd and press enter)</p>
<p>Now type this command:</p>
<p>copy /b image.jpg + file.rar newfile.jpg</p>
<p>switch “/b” indicates the copy function is binary<br />
“newfile.jpg” is the resulting image with the rar file embedded (you can use a name of your choice)<span id="more-10"></span></p>
<p>That’s all</p>
<p>When you click on newfile.jpg the image will be displayed. Now it you change the jpg extension to rar (ie: newfile.rar) and open it with WinRAR the contents of the embedded rar file will be displayed.</p>
<p>The jpg can be replaced with a bmp,png,gif or swf file. The rar archive can be replaced with zip,tar.gz/bz2 or 7z archive. Actually in theory you can use any image format and any archive.</p>
<p>Here are some sample commands:</p>
<p>copy /b image.bmp + file.zip newfile.jpg<br />
copy /b image.gif + file.7z newfile.jpg<br />
copy /b image.png + file.tar.gz newfile.jpg<br />
copy /b image.swf + file.rar newfile.jpg</p>
<p>hide-a-rar-file-in-a-jpg-file<br />
Hide a RAR file in a JPG file</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askcrazy.com/tutorials/how-to-hide-a-rar-file-in-jpg-file.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add wildcard DNS to your subdomain</title>
		<link>http://www.askcrazy.com/tutorials/how-to-add-wildcard-dns-to-your-subdomain.html</link>
		<comments>http://www.askcrazy.com/tutorials/how-to-add-wildcard-dns-to-your-subdomain.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 23:15:03 +0000</pubDate>
		<dc:creator>yaw300</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.askcrazy.com/?p=6</guid>
		<description><![CDATA[Wildcard subdomains are important when you want to direct all visitors to your main website irrespective of what subdomain they use to access your website through.
Adding a wildcard subdomain becomes very important when you install Wordpress-MU. This helps you to create a multiple number of sites as well as increase the number of visitors.
For instance [...]]]></description>
			<content:encoded><![CDATA[<p>Wildcard subdomains are important when you want to direct all visitors to your main website irrespective of what subdomain they use to access your website through.</p>
<p>Adding a wildcard subdomain becomes very important when you install Wordpress-MU. This helps you to create a multiple number of sites as well as increase the number of visitors.</p>
<p>For instance when a visitor makes a mistake and types your domain name mistakenly he is taken to your domain due to the wildcard DNS you have enabled.</p>
<p>There are three ways in which you can add/enable a wild card DNS to your subdomain.<br />
1. The easiest way to add wildcard DNS to your subdomain is to create a subdomain with *. That means the subdomain will be *.yourdomain.com (*askcrazy.com). To do this, Just go to your control panel, next go to add sub domains. The sub-domain you create should be *.domain.com<br />
It works perfectly. Also bear in mind that some of the hosting companies will not allow this to take effect immediately. Just give it some time and your wildcard DNS will be created</p>
<p>2. If you have access to WHM in your cPanel, log in to WHM. Next go to Edit DNS Zone and select the domain you wish to change.<span id="more-6"></span></p>
<p>Under Add New Entries Below this Line you should fill in the fields so that they look like:</p>
<p>*.domain-name.com. IN A 131.4.6.1</p>
<p>where 131.4.6.1 is the IP of the account</p>
<p>3. Another way to add wildcard DNS subdomain is to edit the httpd.conf file. (For this you will need root access to the server hosting the account.)</p>
<p>Log in as root and open the httpd.conf file (this file is usually located in /etc/httpd/conf) with a text editor such as vim or nano. Look for VirtualHost entry for the website. You can also visit <a href="http://www.wiredstudios.com/php-programming/setting-up-wildcard-dns-for-subdomains-on-cpanel.html">here</a> for a clear documentation.  It looks like this<br />
ServerAlias www.yourdomain.com<br />
ServerAdmin webmaster@yourdomain.com<br />
DocumentRoot /home/yourdoma/public_html/drois<br />
ServerName yourdomain.com<br />
User yourdoma<br />
Group yourdoma<br />
BytesLog /usr/local/apache/domlogs/yourdomain.com-bytes_log<br />
CustomLog /usr/local/apache/domlogs/yourdomain.com combined<br />
ScriptAlias /cgi-bin/ /home/yourdoma/public_html/drois/cgi-bin/</p>
<p>The only change you make is to modify</p>
<p>ServerAlias www.yourdomain.com</p>
<p>to</p>
<p>ServerAlias *.yourdomain.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.askcrazy.com/tutorials/how-to-add-wildcard-dns-to-your-subdomain.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
