<?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>Fundaa.com &#187; Joomla</title>
	<atom:link href="http://fundaa.com/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://fundaa.com</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 12:46:12 +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>Using .htaccess to password protect entire site other than landing(index) page</title>
		<link>http://fundaa.com/solved-issues/using-htaccess-to-password-protect-entire-site-other-than-landingindex-page/</link>
		<comments>http://fundaa.com/solved-issues/using-htaccess-to-password-protect-entire-site-other-than-landingindex-page/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 13:08:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Solved Issues]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Zen Cart]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[password protect]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=272</guid>
		<description><![CDATA[<br/>just add below code in your .htaccess and save your hrs&#8230;
AuthName &#8220;Restricted Area&#8221;
AuthType Basic
AuthUserFile &#8220;your htpasswd file path&#8221;
AuthGroupFile /dev/null
require valid-user
SetEnvIf Request_URI &#8220;\/$&#8221; allow
SetEnvIf Request_URI &#8220;\/css/(.*)$&#8221; allow
SetEnvIf Request_URI &#8220;\/js/(.*)$&#8221; allow
SetEnvIf Request_URI &#8220;\/images/(.*)$&#8221; allow
# write above line for all folder those need public access
Order allow,deny
Allow from env=allow
Satisfy any

  allow from all
  Satisfy any

]]></description>
			<content:encoded><![CDATA[<br/><p>just add below code in your .htaccess and save your hrs&#8230;</p>
<p>AuthName &#8220;Restricted Area&#8221;<br />
AuthType Basic<br />
AuthUserFile &#8220;your htpasswd file path&#8221;<br />
AuthGroupFile /dev/null<br />
require valid-user<br />
SetEnvIf Request_URI &#8220;\/$&#8221; allow<br />
SetEnvIf Request_URI &#8220;\/css/(.*)$&#8221; allow<br />
SetEnvIf Request_URI &#8220;\/js/(.*)$&#8221; allow<br />
SetEnvIf Request_URI &#8220;\/images/(.*)$&#8221; allow<br />
# write above line for all folder those need public access<br />
Order allow,deny<br />
Allow from env=allow<br />
Satisfy any<br />
<Files "index.html" ><br />
  allow from all<br />
  Satisfy any<br />
</Files></p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/solved-issues/using-htaccess-to-password-protect-entire-site-other-than-landingindex-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add New Fields in Joomla Registration And Change Registration Mail Content</title>
		<link>http://fundaa.com/joomla/add-new-fields-in-joomla-registration-and-change-registration-mail-content/</link>
		<comments>http://fundaa.com/joomla/add-new-fields-in-joomla-registration-and-change-registration-mail-content/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 06:59:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomal registration mail change]]></category>
		<category><![CDATA[joomla registration custom fields]]></category>

		<guid isPermaLink="false">http://fundaa.com/?p=136</guid>
		<description><![CDATA[<br/>You can add additional fields in the Joomla Registration Form and also send that field's data to the default email that is sent. You just need to follow some simple steps and it is done. Please read the full post to get the solution.]]></description>
			<content:encoded><![CDATA[<br/><p>Please visit below links to add custom fields to joomla registration page:</p>
<p><a href="http://joomla-and-more.com/2010/02/05/how-to-velden-toevoegen-bij-de-joomla-registration-form/">http://joomla-and-more.com/2010/02/05/how-to-velden-toevoegen-bij-de-joomla-registration-form/</a></p>
<p><a href="http://www.mediainti.com/en/forum/6-tutorials/8-adding-additional-field-to-the-joomla-15-registration-form.html  ">http://www.mediainti.com/en/forum/6-tutorials/8-adding-additional-field-to-the-joomla-15-registration-form.html  </a></p>
<p>To change content of registration mail :</p>
<p>To change conent of joomla registration mail follow the below steps:</p>
<p>Suppose we need to add &#8216;city&#8217; field to the mail content</p>
<p>1. First goto components &#8211;> com_user &#8212; > controller.php</p>
<p>2. Findout function register_save()</p>
<p>Below the line $document   =&#038; JFactory::getDocument();</p>
<p>Add following line for city</p>
<p><strong>$city = JRequest::getVar(&#8216;city&#8217;);</strong></p>
<p>3. Now in the same function (function register_save())</p>
<p>Below the line $user->set(&#8216;gid&#8217;, $authorize->get_group_id( &#8221;, $newUsertype, &#8216;ARO&#8217; ));</p>
<p>Add following line for city</p>
<p><strong>$user->set(&#8216;city&#8217;, $city);</strong></p>
<p>4. Now Findout function register_save()</p>
<p>Below the line $username = $user->get(&#8216;username&#8217;);</p>
<p>Add following line for city</p>
<p><strong>$city = $user->get(&#8216;city&#8217;);</strong></p>
<p>5. Now in the same function ( function register_save())</p>
<p>Find out the <strong>foreach</strong> statement at the end of page there you need to change the code as follows:</p>
<p>foreach ( $rows as $row )<br />
		{<br />
			if ($row->sendEmail)<br />
			{<br />
				$message2 = sprintf ( JText::_( &#8216;SEND_MSG_ADMIN&#8217; ), $row->name, $sitename, $name, $email, $username, $city);<br />
				$message2 .= &#8220;City:&#8221;.$city;<br />
				$message2 = html_entity_decode($message2, ENT_QUOTES);<br />
				JUtility::sendMail($mailfrom, $fromname, $row->email, $subject2, $message2);<br />
			}<br />
		}</p>
<p>Please note the <strong>$city</strong> field in above code.</p>
<p>6. Now goto path language &#8211;> en-GB &#8211;> en-GB.com_user.ini</p>
<p>Here find out variable S<strong>END_MSG_ADMIN</strong> ( nearly at line no. 117, this will only change content of mail going to admin ) </p>
<p>Hello %s,\n\nA new user has registered at %s.\nThis e-mail contains their details:\n\nName: %s\nE-mail: %s<br />
\nUsername: %s\n\nCity: %s\n\nPlease do not respond to this message.<br />
It is automatically generated and is for information purposes only.</p>
<p>Please note the change in above code. Here we have added <strong>City: %s</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://fundaa.com/joomla/add-new-fields-in-joomla-registration-and-change-registration-mail-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

