|
|
|
|
|
by chaosmachine
5980 days ago
|
|
I just installed this on a fresh Linode with a basic Ubuntu 9.10 LAMP stack. It built ok, and the module shows up in phpinfo(), but when I try to run any of the example code, I get an error: Fatal error: Class 'xhp_a' not found in /home/me/public_html/test.php on line 3
Here's the code I tested with: <?php
$href = 'http://www.facebook.com';
echo <a href={$href}>Facebook</a>;
I tried running the code through the xhpize tool, and got the following output: <?php
$href='http://www.facebook.com';
echo new xhp_a(array('href' => $href,), array('Facebook',), __FILE__, 3);
Which produces the same "class not found" error. |
|