Hi
Noticed following does not work under linux:
in samples/TestOutput.php:
line 17:
ini_set( "include_path", ini_get( "include_path" ).
";..\\;.\\styles\\;..\\styles\\;.\\content\\;..\\content\\" );
the function does execute, but the result is not what we are looking for:
for linux the following works:
-notice the change of the delimiter from ";" to ":".
ini_set( "include_path", ini_get( "include_path" ).
":..\\:.\\styles\\:..\\styles\\:.\\content\\:..\\content\\" );
I posted this as a bug @ the sf-site of this project.
Please reply if you fix this.
Also, there is a variable called $PathToDocument which is set with a
Windows-like content: "D:/PHP/OpenDocument". While I haven't found how
this affects the process, I guess it would not have the desired effect
on unix/linux systems.
-Flavio
|