<?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>Internet Marketing Survival by Praveen Kumar C &#187; Joomla</title>
	<atom:link href="http://www.cpraveen.com/blog/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cpraveen.com/blog</link>
	<description>Beginner's guide for Web Analytics, Search Engine Optimization and Marketing...</description>
	<lastBuildDate>Sun, 26 Sep 2010 09:26:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Flash does not work in Joomla Template? Simple Workaround</title>
		<link>http://www.cpraveen.com/blog/flash-does-not-work-in-joomla-template-simple-workaround/</link>
		<comments>http://www.cpraveen.com/blog/flash-does-not-work-in-joomla-template-simple-workaround/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 18:04:04 +0000</pubDate>
		<dc:creator>Praveen Kumar C</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.cpraveen.com/blog/?p=112</guid>
		<description><![CDATA[Hey all.. Are you stuck with displaying your SWF flash file on joomla template? Some times, it displays but not functioning properly? Well, I had same issue just before writing this post. I managed to embed SWF file on header of joomla template but on click event does not work. But fixed it after some [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all.. Are you stuck with displaying your SWF flash file on joomla template? Some times, it displays but not functioning properly? Well, I had same issue just before writing this post. I managed to embed SWF file on header of joomla template but on click event does not work. But fixed it after some research.</p>
<p>It is a simple workaround to get it running and I just wanted to share that with you guys.  You know all the joomla sites will run on only one domain either www.yourdomain.com or yourdomain.com. It will redirect to the original URL if you try the other one.  On this case find the actual domain that runs the joomla site. If it is www.yourdomain.com then the URL you are trying to embed SWF file should with start with WWW else it should not start with WWW. Simple.. Try this. Best if luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpraveen.com/blog/flash-does-not-work-in-joomla-template-simple-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google Apps &amp; Gmail To Send SMTP Mails In Joomla</title>
		<link>http://www.cpraveen.com/blog/use-google-apps-gmail-to-send-smtp-mails-in-joomla/</link>
		<comments>http://www.cpraveen.com/blog/use-google-apps-gmail-to-send-smtp-mails-in-joomla/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 20:49:10 +0000</pubDate>
		<dc:creator>Praveen Kumar C</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.cpraveen.com/blog/?p=83</guid>
		<description><![CDATA[I am sure every body using Joomla with Google Apps or Gmail will be facing problem to authenticate SMTP in Global configuration. To use Google Apps or Gmail as SMTP mail sender you should first enable SSL on your server. Next, you need to hack the phpmailer page to connect with Google SMTP mail server [...]]]></description>
			<content:encoded><![CDATA[<p>I am sure every body using Joomla with Google Apps or Gmail will be facing problem to authenticate SMTP in Global configuration. To use Google Apps or Gmail as SMTP mail sender you should first enable SSL on your server. Next, you need to hack the phpmailer page to connect with Google SMTP mail server to send mails.This phpmailer page differs in which version of joomla you are using. Below is the location of the phpmailer page which you need to hack. Before doing anything <strong>be smart to backup</strong> the file.</p>
<p><strong>Joomla 1.0.x:</strong> includes/class.phpmailer.php</p>
<p><strong>Joomla 1.5:</strong> includes/phpmailer.php</p>
<p>Find the code around the line 537:</p>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 0px; overflow: auto; width: 640px; height: 130px; text-align: left;" dir="ltr">if(strstr($hosts[$index], ":"))
        list($host, $port) = explode(":", $hosts[$index]);
else
{
        $host = $hosts[$index];
        $port = $this-&gt;Port;
}</pre>
<p>Replace it with:</p>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 0px; overflow: auto; width: 640px; height: 178px; text-align: left;" dir="ltr">if (preg_match('#(([a-z]+://)?[^:]+):(\d+)#i', $hosts[$index], $match))
{
        $host = $match[1];
        $port = $match[3];
}
else
{
        $host = $hosts[$index];
        $port = $this-&gt;Port;
}</pre>
<p>Now login to your joomla backend and go to Mailer in Global configuration</p>
<p>Enter/choose the options in below format</p>
<p>Mailer: SMTP Server<br />
Mail From: &lt;your_user_id&gt;@gmail.com (Google apps user: your_user_id@yourdomain.com)<br />
SMTP Auth: Yes<br />
SMTP User: &lt;your_user_id&gt;@gmail.com (Google apps user: your_user_id@yourdomain.com)<br />
SMTP Password: &lt;your_password&gt;<br />
SMTP Host: <!-- m --><span class="postlink">ssl://smtp.gmail.com:465</span></p>
<p>Be sure that you have enable POP in your Gmail or Google Apps before you save this and test. All the best.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9010845825059404";
google_ad_slot = "1786192512";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cpraveen.com/blog/use-google-apps-gmail-to-send-smtp-mails-in-joomla/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

