Hope someone can help me.
I installed the component and the module.
The only thing i need is a plugin to work with another great component called Remository v3.40.
http://www.remository.com
I tried making my own plugin:
<?php
/**
* @version 2.0.0 beta
* @package Raf Cloud
* @copyright Copyright (C) 2007 Skorp. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL
* Raf Cloud is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @Author: Rafal Blachowski (Skorp) <http://joomla.royy.net>
*/
defined( '_VALID_MOS' ) or die( 'Restricted access' );
$descr= "Joomla Remository v3.40 Plugin v 2.0.0"; //short information about plugin
global $database;
if (($runMe)&&($loadWord))
{
//categories
$database->setQuery("SELECT name,description,headerdesc FROM #__downloads_files"

;
if ($cur = $database->query())
{
while ($row = mysql_fetch_object( $cur ))
{
$stag.= " ".$row->name;
$stag.= " ".$row->description;
$stag.= " ".$row->headerdesc;
}
}
//messages
$database->setQuery("SELECT subject FROM #__downloads_containers"

;
if ($cur = $database->query())
{
while ($row = mysql_fetch_object( $cur ))
{
$stag.= " ".$row->subject;
}
}
//text
$database->setQuery("SELECT message FROM #__downloads_reviews"

;
if ($cur = $database->query())
{
while ($row = mysql_fetch_object( $cur ))
{
$stag.= " ".$row->message;
}
}
}
?>
I published the plugin. No words are shown..
Who can help me ?