Quote:
Hi!
I had the same problem and solved it by adding following lines into moscredits.php:
Line 111:
if (!file_exists($filename)){
continue;
}
The reason for the problem seems to be one entry in the mos_modules database-table. There exists an entity with position "cpanel" and nothing in column module.
|
obiges Zitat stammt aus dem holländischem Forum und hat mir nun auch nicht wirklich weitergeholfen!
Gemeint ist wohl folgende Zeile (bei mir ab Zeile 114)
PHP Code:
if (!$xmlDoc->loadXML( $xmlfile, false, true )) {
continue;
}
welche ich folgendermassen ersetzt habe:
PHP Code:
if (!file_exists( $xmlfile)) {
continue;
}
nur dann bekome ich folgende Ausgabe:
Quote:
|
Fatal error: Call to a member function getTagName() on a non-object in /opt/lampp/htdocs/projekte/mosakk/mambots/content/moscredits.php on line 120
|
Line 120 sieht folgendermassen aus:
PHP Code:
if ($element->getTagName() != 'mosinstall') {
continue;
}
Nutze Mambo 4.5.2 gepatcht, weiss jemand Rat?