<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for iRafi.com</title>
	<link>http://irafi.com</link>
	<description>Just Organizing My Head</description>
	<pubDate>Fri, 21 Nov 2008 17:01:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>Comment on Creating Wildcard Subdomains + Controller/Dispatcher by Nl2QL</title>
		<link>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-37</link>
		<pubDate>Fri, 19 May 2006 18:52:30 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-37</guid>
					<description>Hello,

I'm using your rule but it doesn't go to directory ( name of subdomain ), how can i make this?? I need to load directory by subdomain name...

RewriteEngine On
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{HTTP_HOST} !^www\.example\.com?$
RewriteCond %{HTTP_HOST} ^([^.]+)\.example\.com?$
RewriteRule ^$ /$1 [L]

is last line correct, or what i need to use?? Thank you..</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217;m using your rule but it doesn&#8217;t go to directory ( name of subdomain ), how can i make this?? I need to load directory by subdomain name&#8230;</p>
<p>RewriteEngine On<br />
RewriteRule ^\.htaccess$ - [F]<br />
RewriteCond %{HTTP_HOST} !^www\.example\.com?$<br />
RewriteCond %{HTTP_HOST} ^([^.]+)\.example\.com?$<br />
RewriteRule ^$ /$1 [L]</p>
<p>is last line correct, or what i need to use?? Thank you..
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on PHP5 and XML by Dhanush</title>
		<link>http://irafi.com/post/2006/04/23/php5-and-xml/#comment-36</link>
		<pubDate>Fri, 19 May 2006 03:52:18 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/23/php5-and-xml/#comment-36</guid>
					<description>thank you very much for your example.It is very help for my learning stage.keep it up.

Thanks
Dhanush.R</description>
		<content:encoded><![CDATA[<p>thank you very much for your example.It is very help for my learning stage.keep it up.</p>
<p>Thanks<br />
Dhanush.R
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Creating Wildcard Subdomains + Controller/Dispatcher by justRafi</title>
		<link>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-34</link>
		<pubDate>Fri, 12 May 2006 18:26:01 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-34</guid>
					<description>Alrightttt! :) good for you!
What are you building? Must be something interesting.

Anyways, good luck on the road ahead..</description>
		<content:encoded><![CDATA[<p>Alrightttt! :) good for you!<br />
What are you building? Must be something interesting.</p>
<p>Anyways, good luck on the road ahead..
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Creating Wildcard Subdomains + Controller/Dispatcher by Kristina</title>
		<link>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-33</link>
		<pubDate>Fri, 12 May 2006 17:42:25 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-33</guid>
					<description>Just to add,,,, it works,,, I managed to get the provider to wildcard my domain :) and I am using mod_rewrite to access subdomains on the fly</description>
		<content:encoded><![CDATA[<p>Just to add,,,, it works,,, I managed to get the provider to wildcard my domain :) and I am using mod_rewrite to access subdomains on the fly
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Creating Wildcard Subdomains + Controller/Dispatcher by Kristina</title>
		<link>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-32</link>
		<pubDate>Fri, 12 May 2006 05:43:10 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/27/creating-wildcard-subdomains-controllerdispatcher/#comment-32</guid>
					<description>I have a question for you...

First though,,,, I realy appreciate this post,, it is the first one in the line of many that makes some sense.
Good work...


Now here is what I have on my hands....

I have a hosting account with hostgator and have access to cPanel but no access to WHM...Not to mention that I can't edit my http.conf file as I please. However, I spoke to their support and as the first response so far, they suggested that I use PHP to accomplish what I need by somehow passing the variables to cPanel.... So they have no problem with me finding the workaround for my needs.

No access to WHS,, therefore,,, I can't EDIT DNS ZONE myself. I am pretty sure they would edit it for me but I would like to explain some things to myself first.

I have a situation where I want to accomplish this....

If I have:

www.mydomain.com/somefolder 

I would like it to apear as:

somefolder.mydomain.com

Is what you are suggesting in your post a partial soluiton to what I am after???

That being...

If I edited (or if they edited) my DNS zone in WHM by simply changing the A record like this:

*.mydomain.com. 14400 IN A xx.xx.xx.xx

and then I use .htaccess file like this

RewriteEngine On
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com?$
RewriteCond %{HTTP_HOST} ^([^.]+)\.mydomain\.com?$
RewriteRule ^$ /subdomainfolder/index.html [L]

(how do I read out the &quot;subdomainfolder&quot; from a browser window call?)

Or,do I use PHP code in index.php as you sugested:



I should have the solution DONE??

Goodness I know I killed you with this post but I am almost desperate...
Plus I am not a savy PHP developer,,, worked the desktop stuff for too long?

Thank you :)</description>
		<content:encoded><![CDATA[<p>I have a question for you&#8230;</p>
<p>First though,,,, I realy appreciate this post,, it is the first one in the line of many that makes some sense.<br />
Good work&#8230;</p>
<p>Now here is what I have on my hands&#8230;.</p>
<p>I have a hosting account with hostgator and have access to cPanel but no access to WHM&#8230;Not to mention that I can&#8217;t edit my http.conf file as I please. However, I spoke to their support and as the first response so far, they suggested that I use PHP to accomplish what I need by somehow passing the variables to cPanel&#8230;. So they have no problem with me finding the workaround for my needs.</p>
<p>No access to WHS,, therefore,,, I can&#8217;t EDIT DNS ZONE myself. I am pretty sure they would edit it for me but I would like to explain some things to myself first.</p>
<p>I have a situation where I want to accomplish this&#8230;.</p>
<p>If I have:</p>
<p><a href='http://www.mydomain.com/somefolder' rel='nofollow'>www.mydomain.com/somefolder</a> </p>
<p>I would like it to apear as:</p>
<p>somefolder.mydomain.com</p>
<p>Is what you are suggesting in your post a partial soluiton to what I am after???</p>
<p>That being&#8230;</p>
<p>If I edited (or if they edited) my DNS zone in WHM by simply changing the A record like this:</p>
<p>*.mydomain.com. 14400 IN A xx.xx.xx.xx</p>
<p>and then I use .htaccess file like this</p>
<p>RewriteEngine On<br />
RewriteRule ^\.htaccess$ - [F]<br />
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com?$<br />
RewriteCond %{HTTP_HOST} ^([^.]+)\.mydomain\.com?$<br />
RewriteRule ^$ /subdomainfolder/index.html [L]</p>
<p>(how do I read out the &#8220;subdomainfolder&#8221; from a browser window call?)</p>
<p>Or,do I use PHP code in index.php as you sugested:</p>
<p>I should have the solution DONE??</p>
<p>Goodness I know I killed you with this post but I am almost desperate&#8230;<br />
Plus I am not a savy PHP developer,,, worked the desktop stuff for too long?</p>
<p>Thank you :)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on In the Search for the Perfect PHP Calendar by BeSt</title>
		<link>http://irafi.com/post/2006/03/10/in-the-search-for-the-perfect-php-calendar/#comment-28</link>
		<pubDate>Tue, 09 May 2006 11:06:40 +0000</pubDate>
		<guid>http://irafi.com/post/2006/03/10/in-the-search-for-the-perfect-php-calendar/#comment-28</guid>
					<description>So, which is the best for you ?
I've only tested 
- Monket Calendar : difficult configuration
- PHPiCalendar : can't edit your calendar (only view)
- Google Calendar : only in English, a bit slow, don't have a 'to-do list'</description>
		<content:encoded><![CDATA[<p>So, which is the best for you ?<br />
I&#8217;ve only tested<br />
- Monket Calendar : difficult configuration<br />
- PHPiCalendar : can&#8217;t edit your calendar (only view)<br />
- Google Calendar : only in English, a bit slow, don&#8217;t have a &#8216;to-do list&#8217;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Sneak Peak Into Googles&#8217; New Search Result by justRafi</title>
		<link>http://irafi.com/post/2006/04/14/sneak-peak-into-googles-new-search-result/#comment-16</link>
		<pubDate>Sun, 23 Apr 2006 16:03:50 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/14/sneak-peak-into-googles-new-search-result/#comment-16</guid>
					<description>yeah.. their always upto something those googlers</description>
		<content:encoded><![CDATA[<p>yeah.. their always upto something those googlers
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Sneak Peak Into Googles&#8217; New Search Result by foO</title>
		<link>http://irafi.com/post/2006/04/14/sneak-peak-into-googles-new-search-result/#comment-14</link>
		<pubDate>Fri, 14 Apr 2006 22:00:06 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/14/sneak-peak-into-googles-new-search-result/#comment-14</guid>
					<description>wow... so google is actually looking into change'n up their bread-n-butter search results page?

dont see that everyday, that's for sure! ;)</description>
		<content:encoded><![CDATA[<p>wow&#8230; so google is actually looking into change&#8217;n up their bread-n-butter search results page?</p>
<p>dont see that everyday, that&#8217;s for sure! ;)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Two Simpler and Nicer PHP/MySQL Forums by Sarit</title>
		<link>http://irafi.com/post/2006/04/01/two-simpler-and-nicer-phpmysql-forums/#comment-12</link>
		<pubDate>Mon, 10 Apr 2006 06:14:24 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/01/two-simpler-and-nicer-phpmysql-forums/#comment-12</guid>
					<description>I think the translation won't be such a big deal. The system itself is a bit smaller and it should only take a couple of hours.

I don't know any other translated forum systems, and if they are (like the PHPnuke ones) they're crappy, really.</description>
		<content:encoded><![CDATA[<p>I think the translation won&#8217;t be such a big deal. The system itself is a bit smaller and it should only take a couple of hours.</p>
<p>I don&#8217;t know any other translated forum systems, and if they are (like the PHPnuke ones) they&#8217;re crappy, really.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Two Simpler and Nicer PHP/MySQL Forums by justRafi</title>
		<link>http://irafi.com/post/2006/04/01/two-simpler-and-nicer-phpmysql-forums/#comment-11</link>
		<pubDate>Sun, 09 Apr 2006 23:04:59 +0000</pubDate>
		<guid>http://irafi.com/post/2006/04/01/two-simpler-and-nicer-phpmysql-forums/#comment-11</guid>
					<description>PHPBB seems like it has some security flaws, and we were really looking for something sweet &amp; simple, but customizable - very important.
We chose PunBB.. we'll see how it goes, we're building an English site, so can't help you with the Hebrew.

We are starting a newer project, it's a site in Hebrew that will need a forum system. So either we'll translate PunBB or ....... any suggestions?</description>
		<content:encoded><![CDATA[<p>PHPBB seems like it has some security flaws, and we were really looking for something sweet &#038; simple, but customizable - very important.<br />
We chose PunBB.. we&#8217;ll see how it goes, we&#8217;re building an English site, so can&#8217;t help you with the Hebrew.</p>
<p>We are starting a newer project, it&#8217;s a site in Hebrew that will need a forum system. So either we&#8217;ll translate PunBB or &#8230;&#8230;. any suggestions?
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
