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 ?
Can't create field after installation
-
- Messages : 3
- Enregistré le : lun. 18 juin 2012 03:45
Re: Can't create field after installation
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
by
Steevo
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 )
Code : Tout sélectionner
if ( count($child->children()) > 0 )
-
- Messages : 3
- Enregistré le : lun. 18 juin 2012 03:45
Re: Can't create field after installation
Thank you that solved my problem