Page 1 sur 1

Can't create field after installation

Posté : lun. 18 juin 2012 03:47
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 ?

Re: Can't create field after installation

Posté : lun. 18 juin 2012 19:44
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

Re: Can't create field after installation

Posté : mar. 19 juin 2012 13:42
par coupeborgward
Thank you that solved my problem