Is php XSLT enabled?

Status
Not open for further replies.

gdickx10

New Member
Messages
4
Reaction score
0
Points
1
I was wondering if php has XSLT enabled in it? And if not if we could get it enabled?

Thanks in advance!
 

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
on my account's free-hosting server [ xo3 = (old Level) - IP: 198.91.81.3 ] - I receive a fatal error "Class 'XSLTProcessor' not found" - from this PHP script
PHP:
<?php
error_reporting(E_ALL);

// This method determines if PHP was built with the EXSLT library

$proc = new XSLTProcessor;
// might receive --> Fatal error: Class 'XSLTProcessor' not found in ******** on line 6

if (!$proc->hasExsltSupport())
  {
    die('EXSLT support NOT available');
  }

print "Found EXSLT support available<br>\n"

?>
 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
It's not likely to happen on Free Hosting; the various parse trees get huge in a hurry even for relatively small document sets (sources, transforms, formatting and target) and RAM's a bit of a bottleneck on servers with so many shared accounts. It's not that it can't happen (and I don't make the decisions, which is probably something people should be thankful for), but there are sound technical reasons why it might not.
 
Status
Not open for further replies.
Top