I must apologize for this. I used the statement:
set_include_path(get_include_path().';'.realpath('../../library'));
but it happens to be that this doesn't work in all operating systems, I forgot to use the PATH_SEPARATOR constant. If you are having trouble with this, you must replace that line with
set_include_path(get_include_path().PATH_SEPARATOR.realpath('../../library'));
Unfortunately, this must be done in the php file for every sample, and in the index.php on the examples folder. Please let me know if this really works for your OS. This will be fixed in the SVN trunk and should be release in the next version.
--
Sergei Walter
ser...@gmail.com