Thanks for your response micker.
Ran through it all again and the same error occured, though the xml files did make it back in on installation and
this time it did create a Flexcontent section. Well, it created four of them, in fact.
This is the code in items.php that it's erroring out on at line 1488:
Code:
// Get the category default parameters in a string
$xml = new JSimpleXML;
$xml->loadFile(JPATH_COMPONENT.DS.'models'.DS.'category.xml');
$catparams = new JParameter('');
I'm not a php guy by any means but it seems that there's an attempt to set a new varible new JSimpleXML then load a the file in the next line and fails on the JPATH etc construction.
Any idea what's causing that?
The result is that there seems to no way to manually bring in what's been left out as a result of this error. At least none that I can see.
Worse, perhaps, is that in changing it in the congfiguration replaces what's already been brought in. (Worse from my perspective, certainly.) This does make things difficult when some components like CorePHP's WordPress MU component want to create their own section and categories.
Is there any advice you can give me on that? Or on the error thrown?
BTW, Firebug doesn't report any problems,
Thanks again.