Ho risolto seguendo queste operazioni:
1) In file: mambo/includes/domit/xml_domit_lite_parser.php on
lines ~1670 and ~1673 just before "xml_parser_create()"
remove "&"
(ampersands)
(tildes mean, that exact line numbers depend on exact version
of Mambo)
BEFORE:
~~~~~~~~~~~~~~~~~~~~~~~
<?php
....
$parser =& xml_parser_create('');
}
else {
$parser =& xml_parser_create();
...
?>
~~~~~~~~~~~~~~~~~~~~~~
AFTER
~~~~~~~~~~~~~~~~~~~~~~~
<?php
...
$parser = xml_parser_create('');
}
else {
$parser = xml_parser_create();
...
?>
~~~~~~~~~~~~~~~~~~~~~~
2) In file:
mambo/administrator/components/com_mambelfish/mambelfish.class.php
on
line ~295 add "&" (ampersand) before function name
getTable
BEFORE:
~~~~~~~~~~~~~~~~~~~~~~~
<?php
...
function getTable() {
if( !isset($this->referenceInformation["table"])
&&
isset($this->_xmlFile) ) {
$tableElement =
$this->_xmlFile->getElementsByPath('reference/table', 1);
...
?>
~~~~~~~~~~~~~~~~~~~~~~
AFTER
~~~~~~~~~~~~~~~~~~~~~~~
<?php
...
function & getTable() {
if( !isset($this->referenceInformation["table"])
&&
isset($this->_xmlFile) ) {
$tableElement =
$this->_xmlFile->getElementsByPath('reference/table', 1);
...
?>
~~~~~~~~~~~~~~~~~~~~~~
Le ho trovate in qst pagina:
http://mamboforge.net/tracker/index.php?func=detail&aid=7375&group_id=7&atid=109