Fatal Error

Installed from github, ran into this problem

Fatal error: Class 'FabrikHelperHTML' not found in /hsphere/local/home/kencostore/queue.insidekenco.com/administrator/components/com_fabrik/fabrik.php on line 38

looked at the code around lines 38 (these are lines 24-41)
Code:
/**
* Test for YQL & XML document type
* use the format request value to check for document type
*/
$docs = array("yql", "xml");
foreach ($docs as $d)
{
    if (JRequest::getCmd("type") == $d)
    {
        // Get the class
        require_once JPATH_SITE . '/administrator/components/com_fabrik/classes/' . $d . 'document.php';
 
        // Replace the document
        $document = JFactory::getDocument();
        $docClass = 'JDocument' . JString::strtoupper($d);
        $document = new $docClass;
    }
}

The code is referencing document.php which is not in the folder mentioned in line 34

Any help would be appreciated.

Thanks,

Bryan
 
I can't replicate this issue.

Are you sure that's the backend fabrik.php you are quoting, in ./administrator/components/com_fabrik? Shouldn't have any of that YQL stuff in it, that's in the front end fabrik.php file.

Suggest you re-upload from github, and make sure you upload everything, to the right place.

-- hugh
 
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top