- SearchBot Detection Script for Joomla! ----------------------------------------------- Filename: SearchBot_Detect.php Version: 1.0 Release Date: 10/03/06 Developer: David Hunt Copyright: 2006 Byrgius Technologies License: GNU/GPL (http://www.gnu.org/copyleft/gpl.html) Source: http://software.byrgius.com/ - Installation for (Events v1.2 by Eric Lamette, Dave McDonell) ------------------------ 1) Copy SearchBot_Detect.php to the components/com_events folder 2) Open components/com_events/events.php 3) Add the following at line 25 // Byrgius Technologies (http://software.byrgius.com) // Search Engine Detect include_once($mosConfig_absolute_path."/components/".$option."/SearchBot_Detect.php"); 4) Add the following before the "return $detevent;" for the listed functions For the functions: - listEventsById - listEventsByDate - listEventsByMonth - listEventsByYear - listEventsByCreator - listEventsByCat - listEventsByKeyword Add this code before the return statement: // Byrgius Technologies (http://software.byrgius.com) // Search Engine Detect if( _SEARCH_BOT && !count( $detevent ) ){ ob_clean(); die(_SEARCH_BOT_NAME.': No Records for this Query'); } 5) Save & Close events.php ----------------------------------------------------------------------------------------