I installed a new LMO 4.0.2 and copied my existing league data over to the new directories. Then I tried installing the Team Vergleich addon but can't get it to work...
The install instructions are based upon the previous LMO versions and for example I do not see how to make the change below :
Code:
############################################################################################
#lmo-adminbasic.php #
############################################################################################
### vor Zeile 246
# </tr><?
### einfügen
<?
//Team Vergleich ADDON BEGIN
if (file_exists(PATH_TO_ADDONDIR.'/stats/lmo-adminbasic1.inc.php'))
include(PATH_TO_ADDONDIR.'/stats/lmo-adminbasic1.inc.php');
//Team Vergleich ADDON END
?>
### ersetze ab Zeile 48
# if($_SESSION['lmouserok']==2 || $_SESSION['lmouserokerweitert']==1){
# $urlt=isset($_POST["xurlt"])?1:0;
# $urlb=isset($_POST["xurlb"])?1:0;
# }
### mit
// Team Vergleich ADDON BEGIN
if (file_exists(PATH_TO_ADDONDIR.'/stats/lmo-adminbasic.inc.php'))
include(PATH_TO_ADDONDIR.'/stats/lmo-adminbasic.inc.php');
// Team Vergleich ADDON END
I can't find the code that was supposd to be between lines 48 and following.
Anybody got some new install instructions or suggestions on how to make it work in the LMO4.0.2 version?