Can't create field after installation

En cas de problème lors de l'installation...
coupeborgward
Messages : 3
Enregistré le : lun. 18 juin 2012 03:45

Can't create field after installation

Message par coupeborgward »

Hi

I installed 0.5 on Joomla 2.5 and after the installation I can create a collection and lists. But as soon as I create a field I get the following error:

Fatal error: Call to undefined method JXMLElement::count() in /mnt/webf/c2/39/5100239/htdocs/Seiten/BorgwardRegistry/administrator/components/com_collector/classes/field.php on line 317

Steevo any idea what this might be ?

Avatar du membre
steevo
Administrateur du site
Messages : 330
Enregistré le : jeu. 17 déc. 2009 22:59
Contact :

Re: Can't create field after installation

Message par steevo »

Hi

You can find the solution here: viewtopic.php?f=10&t=136

You have to modify the file /administrator/components/com_collector/classes/field.php
replace line 317

Code : Tout sélectionner

if ( $child->count() > 0 )
by

Code : Tout sélectionner

if ( count($child->children()) > 0 )
Steevo

coupeborgward
Messages : 3
Enregistré le : lun. 18 juin 2012 03:45

Re: Can't create field after installation

Message par coupeborgward »

Thank you that solved my problem

Répondre