admin
|
Re:Getting the Joomla! modules to work...in Englis - 12/09/2006 02:12
Hi Ricardo,
sorry ... my fault 
in the directory lmo/addon/mini/ you may find in the lmo-minitab.php, as in the lmo-mininext.php, nearly to the beginning of the file (20-22), the following lines:
| Code: |
require(dirname(__FILE__).'/../../init.php');
require_once(PATH_TO_ADDONDIR."/classlib/ini.php");
|
or
| Code: |
require_once(dirname(__FILE__).'/../../init.php');
require_once(PATH_TO_ADDONDIR."/classlib/ini.php");
|
Please change 'require_once' to 'require' in both files (have a look at the following Code)
| Code: |
require(dirname(__FILE__).'/../../init.php');
require(PATH_TO_ADDONDIR."/classlib/ini.php");
|
I guess it should work with those changes.
Best regards,
Jörn
|