<?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>crovean.net &#187; Joomla</title>
	<atom:link href="http://www.crovean.net/tag/joomla/feed" rel="self" type="application/rss+xml" />
	<link>http://www.crovean.net</link>
	<description>Home Entertainment, Internet News, TV Technology, and DIYs</description>
	<lastBuildDate>Thu, 26 Aug 2010 17:46:20 +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>Google Analytics Code to Joomla Website</title>
		<link>http://www.crovean.net/google-analytics-code-to-joomla-website</link>
		<comments>http://www.crovean.net/google-analytics-code-to-joomla-website#comments</comments>
		<pubDate>Thu, 14 Aug 2008 21:41:53 +0000</pubDate>
		<dc:creator>Chriss</dc:creator>
				<category><![CDATA[Joomla Tips]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.crovean.net/?p=48</guid>
		<description><![CDATA[Google Analytics is a powerful tool you can use from Google for free. It is a web base program that generates detailed visitor statistic of your website. Traffic analysis from search engines, direct traffic and referrals. In order to use it for your website you need to sign up with Google Analytics. Copy the code [...]]]></description>
			<content:encoded><![CDATA[<p>Google Analytics is a powerful tool you can use from Google for free.  It is a web base program that generates detailed visitor statistic of your website.  Traffic analysis from search engines, direct traffic and referrals.  In order to use it for your website you need to sign up with Google Analytics.  Copy the code and paste it to your website before the ending body tag of your index.php.  This tutorial is basically for Joomla websites just like the titles says <img src='http://www.crovean.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<blockquote><p>Copy Google Analytics Code<br />
Open your index.php for your template:<br />
(Joomla_folder/templates/template_name/index.php)<br />
Scroll to the end of your index.php and look for your ending body tag<br />
Paste Google Analytics Code before the ending body tag<br />
Wait for Google Analytics to start receiving data!</p></blockquote>
<p>From key words to unique visitor of your werbsite Google Analytics is just the perfect tool for a webmaster to improve any marketing strategy. If you need help with Google Analytics on how it works just click the links.</p>
<!-- PHP 5.x --><img src="http://www.crovean.net/?ak_action=api_record_view&id=48&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.crovean.net/google-analytics-code-to-joomla-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSL on Joomla Administrator Access</title>
		<link>http://www.crovean.net/ssl-on-joomla-administrator-access</link>
		<comments>http://www.crovean.net/ssl-on-joomla-administrator-access#comments</comments>
		<pubDate>Thu, 31 Jul 2008 23:47:57 +0000</pubDate>
		<dc:creator>Chriss</dc:creator>
				<category><![CDATA[Joomla Tips]]></category>
		<category><![CDATA[Admin Access]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://crovean.net/?p=3</guid>
		<description><![CDATA[Add security on your Joomla administrator access. If you have Secure Sockets Layer(SSL) on your website just don&#8217;t use it on your shopping carts and forms, use it also with your Joomla administrator log-in. This way you are assured that you are entering your log-in information for your Joomla admin access on a secured connection. [...]]]></description>
			<content:encoded><![CDATA[<p>Add security on your Joomla administrator access. If you have Secure Sockets Layer(SSL) on your website just don&#8217;t use it on your shopping carts and forms, use it also with your Joomla administrator log-in. This way you are assured that you are entering your log-in information for your Joomla admin access on a secured connection. Other way to strengthen your Joomla admin access is to have a complex username and password. Always combine symbols, numbers, letter and atleast 6 to 10 characters.   To make sure Joomla! administrator log-in is on a secure connection.</p>
<p><strong>In administrator/index.php, immediately after the line that says:</strong></p>
<blockquote><p>define( &#8216;_VALID_MOS&#8217;, 1);</p></blockquote>
<p><strong>Add the following: </strong></p>
<blockquote><p>//Redirect to https if accessed over http (except when running locally)</p>
<p>if ($_SERVER['SERVER_NAME'] != &#8220;localhost&#8221;)</p>
<p>{</p>
<p>$port = $_SERVER["SERVER_PORT"];</p>
<p>$ssl_port = &#8220;443&#8243;;  //Change 443 to whatever port you use for https (443 is the default and will work in most cases)</p>
<p>if ($port != $ssl_port)</p>
<p>{     $host = $_SERVER["HTTP_HOST"];</p>
<p>$uri = $_SERVER["REQUEST_URI"];</p>
<p>header(&#8220;Location: https://$host$uri&#8221;);</p>
<p>}</p>
<p>}</p></blockquote>
<p><strong>Logging out and returning to http:  In administrator/logout.php, look for:</strong></p>
<blockquote><p>// return to site homepage mosRedirect( &#8216;../index.php&#8217; );</p></blockquote>
<p><strong>Change it to: </strong></p>
<blockquote><p>// return to site homepage mosRedirect( &#8216;http://www.yourdomainname.com/index.php&#8217; );</p></blockquote>
<p>Disclaimer: This hack is not guaranteed to work on every server configuration or Joomla installation. Use of these hacks is entirely at your own risk!</p>
<!-- PHP 5.x --><img src="http://www.crovean.net/?ak_action=api_record_view&id=3&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.crovean.net/ssl-on-joomla-administrator-access/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
