<?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>Jorink.nl &#187; Joomla</title>
	<atom:link href="http://www.jorink.nl/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jorink.nl</link>
	<description>Just for documentation</description>
	<lastBuildDate>Thu, 15 Dec 2011 09:36:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to Reset Your Lost Joomla Password in a few Easy Steps</title>
		<link>http://www.jorink.nl/2011/02/how-to-reset-your-lost-joomla-password-in-a-few-easy-steps/</link>
		<comments>http://www.jorink.nl/2011/02/how-to-reset-your-lost-joomla-password-in-a-few-easy-steps/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 23:32:41 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=520</guid>
		<description><![CDATA[Before we begin, you must have access to your database. If you don&#8217;t, pass these instructions on to someone that does. It&#8217;s also a good idea to backup your database before making changes, just in case something goes awry. Finding the Password Log in to your Joomla database (via phpMyAdmin for example) Click to edit [...]]]></description>
			<content:encoded><![CDATA[<p>Before we begin, you must have access to your database. If you don&#8217;t, pass these instructions on to someone that does.  It&#8217;s also a good idea to backup your database before making changes, just in case something goes awry.<br />
Finding the Password</p>
<p>    Log in to your Joomla database (via phpMyAdmin for example)<br />
    Click to edit the _users database (will be preceded by your account name, for example: example_users)<br />
    Edit the entry for where usertype = &#8220;Super Administrator&#8221; (should be the first record)</p>
<p>Resetting the Password</p>
<p>In the password field you&#8217;ll notice a string of characters. Joomla uses a one-way encoding method, which means you won&#8217;t be able to retrieve your old password. However, you will be able to reset the password to a new one using mySQL&#8217;s built in MD5 function:</p>
<p>UPDATE example_users SET password=MD5(&#8216;new password&#8217;) WHERE usertype = &#8220;Super Administrator&#8221;;</p>
<p>Voila &#8211; you just successfully reset your Joomla password Smiling Go to your joomla domain at example.com/administrator and try logging in with the new password. You should be logged in as Super Administrator.<br />
Copying the Password from Another User</p>
<p>An alternate method to reset your password, if you&#8217;re not comfortable with SQL commands, is to simply copy and paste the password hash from another user (to which you know the password) over to your admin user. You&#8217;ll then be able to login as the admin user using that password. If you don&#8217;t have another user, you should be able to register as one, and then copy the password over.<br />
Applying the Email From Another User</p>
<p>Yet another alternate method to retrieving your lost Joomla admin password is to change your admin user&#8217;s email address to one you are familiar with. Then use the lost password retrieval function (the &#8220;forgot password&#8221; link in the login section) to have your Joomla password emailed to you.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2011/02/how-to-reset-your-lost-joomla-password-in-a-few-easy-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change the Virtuemart product search minimum characters</title>
		<link>http://www.jorink.nl/2010/11/change-the-virtuemart-product-search-minimum-characters/</link>
		<comments>http://www.jorink.nl/2010/11/change-the-virtuemart-product-search-minimum-characters/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 11:56:46 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Virtuemart]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=457</guid>
		<description><![CDATA[To change the minimum characters you want to search for in your VirtueMart store edit the following file administrator/components/com_virtuemart/classes/ps_main.php Change around line 1273 if( $strlen &#62; 2 ) { to if( $strlen &#62; 1 ) { for 2 character search]]></description>
			<content:encoded><![CDATA[<p>To change the minimum characters you want to search for in your VirtueMart store edit the following file</p>
<pre>administrator/components/com_virtuemart/classes/ps_main.php</pre>
<p>Change around line 1273</p>
<pre>if( $strlen &gt; 2 ) {</pre>
<p>to</p>
<pre>if( $strlen &gt; 1 ) {</pre>
<p>for 2 character search<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/11/change-the-virtuemart-product-search-minimum-characters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Speed up your Joomla! site</title>
		<link>http://www.jorink.nl/2010/10/speed-up-your-joomla-site/</link>
		<comments>http://www.jorink.nl/2010/10/speed-up-your-joomla-site/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 19:44:39 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=420</guid>
		<description><![CDATA[Here are a few tips for speeding up your Joomla! site. Gzip, Sometimes Encoding your pages with Gzip is an 90% solution&#8230;  If your server&#8217;s processor is faster than your bandwidth (again, 90% of the time), than enabling Gzip compression will actually speed up your site.  I say that because gzipping the pages does require [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few tips for speeding up your Joomla! site.</p>
<h3>Gzip, Sometimes</h3>
<p>Encoding your pages with Gzip is an 90% solution&#8230;  If your  server&#8217;s processor is faster than your bandwidth (again, 90% of the  time), than enabling Gzip compression will actually speed up your site.   I say that because gzipping the pages does require some CPU  horsepower.  Try enabling Gzip and see if your site loads any faster  (especially on highly loaded servers).  If it doesn&#8217;t, or you get CPU  warnings from your host, disable Gzip.  It can hurt you, but most of the  time it does help.  The only way to find out is to try it.</p>
<h3>Statistics May Seem Nice, but&#8230;</h3>
<p>They use a ton of SQL queries to get done what they do.  They  are not worth it at all!  If you want nice stats, use Google Analytics  to track your users.  Stay away from 3pd stats components.  They do  generate nice stats, but at a huge performance penalty.  The only  statistic worth keeping is the search queries (from the Joomla config).   If you have access to the webserver, you can also disable logging  statistics from the server end as well (this process is much more  efficient, and only will really help if your server is heavily  loaded).</p>
<h3>SEF is not Server Friendly</h3>
<p>One of the best things you can do to a site, is make the  URL&#8217;s look more better.  The Joomla core does an acceptable job, but  there are a handful of 3pd components that make really nice URLs.  The  problem with these components, is that they are not very performance  friendly (they use a ton of queries).  I prefer OpenSEF to any of the  others (But it&#8217;s no longer actively developed) as it seems to be a good  mix of power, flexibility and performance.  Keep in mind, that using SEF  URLs is a tradeoff.  A good URL will look better to a search engine,  and to end users, but it hurts the load time.  Think carefully before  deciding to enable SEF URLs.  One thing you can do, is periodically  optimize the database by purging unpublished and invalid URLs from the  OpenSEF database (an option in the admin section of OpenSEF).</p>
<h3>Enable Caching as Much as Possible</h3>
<p>If you can, enable Joomla&#8217;s core content cache.  It does  speed things up when viewing content and modules (mambots don&#8217;t need to  be processed each time the page is loaded).  If you really want to speed  things up for unregistered users, take a look at my  Page Caching  component which caches entire pages.  This is probably the best  performance gain you can find you unregistered users (the majority of  users for 95% of websites).  This does not mean that you can forget  about the rest of these optimizations, because the registered users will  still see the uncached site.</p>
<p>For a complete list of Joomla Performance tips please visit: <a title="Joomla Performance" href="http://www.joomlaperformance.com/articles/performance/so_you_want_to_speed_up_joomla_3_14.html" target="_blank">JoomlaPerformance.com</a><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/10/speed-up-your-joomla-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activate SEO friendly URL in Joomla!</title>
		<link>http://www.jorink.nl/2010/10/activate-seo-friendly-url-in-joomla/</link>
		<comments>http://www.jorink.nl/2010/10/activate-seo-friendly-url-in-joomla/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 19:27:18 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=414</guid>
		<description><![CDATA[After a fresh install of Joomla your URL of a article may look something like this http://www.hjdesign.nl/index.php?option=com_aicontactsafe&#038;view=message&#038;layout=message&#038;pf=1&#038;Itemid=58 This is of course not a very friendly URL to remember. So lets change this to something more readable for everyone who visits your site. Rename htaccess.txt to .htaccess in your root folder of your Joomla installation Edit [...]]]></description>
			<content:encoded><![CDATA[<p>After a fresh install of Joomla your URL of a article may look something like this</p>
<p>http://www.hjdesign.nl/index.php?option=com_aicontactsafe&#038;view=message&#038;layout=message&#038;pf=1&#038;Itemid=58</p>
<p>This is of course not a very friendly URL to remember.<br />
So lets change this to something more readable for everyone who visits your site.</p>
<ol>
<li>Rename htaccess.txt to .htaccess in your root folder of your Joomla installation</li>
<li>Edit .htaccess and change <strong># RewriteBase / </strong>to  <strong>RewriteBase /</strong> ( in short, remove the # )</li>
<li>Login to your Joomla backend, and go to Global Configuration &gt; Site</li>
<li>On the left you will find the SEO settings.</li>
<li>Change the setting of <em>Search Engine Friendly URLs</em> to Yes and click on Apply<br />
This will change the URL of the article to</p>
<p>http://www.hjdesign.nl/index.php/contact</li>
<li>To get rid of that ugly index.php change the setting of <em>Use Apache <em>mod_rewrite</em></em> to Yes and click on Apply<br />
This will change the URL of the article to</p>
<p>http://www.hjdesign.nl/contact</li>
<li>If you want you can set the last option <em>Add suffix to URLs </em>to Yes.<br />
This will change the URL of the article to</p>
<p>http://www.hjdesign.nl/contact.html</p>
<p>The last one is just a matter of taste. Personally I leave this options disabled.</li>
</ol>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/10/activate-seo-friendly-url-in-joomla/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JError Unable to load Database Driver</title>
		<link>http://www.jorink.nl/2010/03/jerror-unable-to-load-database-driver/</link>
		<comments>http://www.jorink.nl/2010/03/jerror-unable-to-load-database-driver/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 10:59:42 +0000</pubDate>
		<dc:creator>Arjan Jorink</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.jorink.nl/?p=224</guid>
		<description><![CDATA[After restoring a site with AkeebaBackup I got the following error. JError Unable to load Database Driver After some research the configuration.php missed the database information. The following lines were not complete. var $dbtype = &#8216;mysql&#8217;; var $host = &#8216;xxxxxxxxxx&#8217;; var $user = &#8216;xxxxxxxxxx&#8217;; var $db = &#8216;xxxxxxxxx&#8217;; var $dbprefix = &#8216;jos_&#8217;; I filled those [...]]]></description>
			<content:encoded><![CDATA[<p>After restoring a site with <a href="http://www.akeebabackup.com/">AkeebaBackup</a> I got the following error.<br />
JError Unable to load Database Driver</p>
<p>After some research the configuration.php missed the database information.<br />
The following lines were not complete.</p>
<blockquote><p>var $dbtype = &#8216;mysql&#8217;;<br />
var $host = &#8216;xxxxxxxxxx&#8217;;<br />
var $user = &#8216;xxxxxxxxxx&#8217;;<br />
var $db = &#8216;xxxxxxxxx&#8217;;<br />
var $dbprefix = &#8216;jos_&#8217;;
</p></blockquote>
<p>I filled those lines with my MySql info.</p>
<p>At the end of the configuration.php there is one more line that needs info.</p>
<blockquote><p>var $password = &#8216;xxxxxxx&#8217;; </p></blockquote>
<p>This is your database password. Non-encrypted.<br />
<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jorink.nl/2010/03/jerror-unable-to-load-database-driver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

