First issue with phrame: I get the following error:
Notice: Use of undefined constant _ACTION - assumed '_ACTION' in phrameConstants.php on line 3
relating to the following line:
define(_ACTION, 'action');
The code should have been written with quotes around the _ACTION:
define('_ACTION', 'action');
but you can also set php.ini to not report Notices, only errors:
- Show all errors, except for notices:
error_reporting = E_ALL & ~E_NOTICE
I still get the following error:
Warning: Sablotron error on line none: cannot open file 'C:/sokkit/Apache2/bin/views/index.xsl' in C:sokkitsitephrameextXml.php on line 160
This indicates that xslt functions are using Apache2/bin for the base of the relative path and this is just wrong!
so I found this explanation in the php developers mailing list that this is an issue with my version of PHP (4.3.2) and it is fixed in 4.3
12:11:45 AM
|