Thursday, June 20, 2013
   
Text Size
Login

Things to Check if Joomla Password Reminder email not being sent

What?
A quick article on a frequent question I get asked. This refers to an issue within the Joomla CMS (version 2.5.x) where it fails to email users who reset their password.

How?
A few things to check:

Improve Default Joomla Search


- Applies to Joomla 2.5.x +

What?
So I can't stand the way the default "Search" component in Joomla works. The default is to sort the results by popularity (hits) which I have never seen in any other system.

I've googled and binged but could not find anything that documents how to bring it into line with other search systems. So here we go, hope this helps you.


Why?
I've created search systems for a plethora of other systems. The aim of this article is to enhance the Joomla search into par with Google and Wikipedia (or near enough).


How?

Joes WebGL Experiment

A replacement for Joes Revolver Maps?

So I recently came across the Chrome Experiments WebGL Globe which I think is beautiful; here's a screenshot of what I envisaged though:

Joes Infographic for Joomla

Demo
It's still in development and a somewhat stable beta version is demo'd at http://demo.joellipman.com/joomla16/index.php/joes-infographic-for-joomla

Limitations

Change the default Joomla Error template

What?
This is a quick article on what I change the error page for Joomla websites to. I like a clean error page, for a demo visit http://www.joellipman.com/elephants.
  • Applies to Joomla 1.6.x, 1.7.x, 2.5.x

How?
  1. Backup the file \templates\system\error.php
  2. Create a replacement file called error.php including the below code
  3. Change the message "The Page you are looking for..." to what you want.
  4. Change the link "www.joellipman.com" to the "www.yoursitename.com".
  5. [Optional] If you want the image that creates the shadow you can download it here. I put it in the folder \templates\system\images.

JDatabase: using the Joomla database

Sorry just a quick note for myself on accessing the Joomla database using the Joomla classes. Source: Docs joomla org

Basic Query - 1 result

  1.  $db = JFactory::getDBO(); 
  2.  $query = " 
  3.    SELECT ".$db->nameQuote('field_name')." 
  4.      FROM ".$db->nameQuote('#__my_table')." 
  5.      WHERE ".$db->nameQuote('some_name')." = ".$db->quote($some_value); 
  6.  $db->setQuery($query); 
  7.  $result = $db->loadResult(); 
  8.   
  9.  -- $result = value of field_name 

Latest Posts

  • Joes Quicklist Weblinks (JQW)

    • Tue 18-Jun-13
      Hi Joel, Great module, it really fills a need, and I'm not even using the thumbnails. It doesn't seem ...
      egrutz
  • Migrate Joomla! 1.5.x to 2.5.x+

    • Fri 07-Jun-13
      Hi Drew, I've got a silly question, are you sure the template you are using has been upgraded or ...
      Joel Lipman  
    • Wed 05-Jun-13
      Joel, Thanks for the newly updated instructions. I was nearly successful in getting everything working.
      drew  
    • Wed 05-Jun-13
      Hi Drew, Good point. You need to copy your images folder from your old site over to your new one. You ...
      Joel Lipman  
    • Tue 04-Jun-13
      Making a little progress here. I already had a copy of the live site running on this test server. So ...
      drew