Plugin Author
Luke
(@codifyllc)
That’s strange .. are you not getting an error that the phpOpenFW framework can not be loaded? Because that function is located and loaded by the framework.
Plugin Author
Luke
(@codifyllc)
If you want to provide me a jailed FTP account to the ez staff directory I can look into it for you. you can send me an email to info [at] thecodify.com
Plugin Author
Luke
(@codifyllc)
Got it.. did you get my reply or is it going to spam?
Plugin Author
Luke
(@codifyllc)
It looks like like it’s NOT getting into here:
// Check if extensions required for XSL/Dom Transformations are loaded
$this->xml_ext_loaded = (extension_loaded('xsl') && extension_loaded('dom')) ? (true) : (false);
// Load element class
include_once("$this->frame_path/core/structure/objects/element.class.php");
// If proper extensions are loaded, load XML transformation plugin and record set list class
if ($this->xml_ext_loaded) {
if ($this->mode == 'litefw') {
$this->load_plugin('xml_transform');
include_once("$this->frame_path/core/structure/objects/rs_list.class.php");
include_once("$this->frame_path/core/structure/objects/table.class.php");
}
}
So that tells me something changed with the the XSL and DOM extensions not being loaded.
I assume you were using this before and it was working fine? You said after you “updated” are you talking about after you updated the staff list plugin or after you updated something on the server?
I checked your phpinfo() and it looks like XSL and XSLT are not enabled. Can you check with your host about why that was disabled?
Luke
Recompiling Apache with XSL fixed it. Not sure why it would have broken upon update but could be something to check.
Thank you for the help!
Plugin Author
Luke
(@codifyllc)
Glad you got it working. Let me know if you have any other issues.