Hi,
I'm hoping someone can help, I'm attempting to create a zoop application and a complete newbie to this particular framework.
I've downloaded and installed both the framework and the skeleton (version 1.5 of both).
Here's where I've run into a few problems.
Zoop is located in /usr/local/lib/zoop
The skeleton is /usr/local/www/apache22/data/skeleton
I've defined the zoop_dir correctly, (I think), however when I go to the particular ip in a web browser all I get is a massive error message:
Warning: include_once(XML/RPC.php) [function.include-once]: failed to open stream: No such file or directory in /usr/local/lib/zoop/app/xmlrpcClasses.php on line 21
Warning: include_once() [function.include]: Failed opening 'XML/RPC.php' for inclusion (include_path='.:/usr/local/share/pear:/usr/local/lib/zoop/lib/pear') in /usr/local/lib/zoop/app/xmlrpcClasses.php on line 21
I get this probably steps from an inability to find XML/RPC.php (wherever that's supposed to be) but from my knowledge this should be working. I've set installed the necessary pear libraries but to no avail.
So I've decided to come to you guys for help. Any ideas anyone?
Thanks,
Mark D
Missing XML/RPC.php
So, the include_path=".:/usr/local/share/pear:/usr/local/lib/zoop/lib/pear", which means it looks in ., then /usr/local/share/pear/ and then /usr/local/lib/zoop/lib/pear/ for XML/RPC.php.
If the file is in one of those places, then the other possibility is that : is not the correct value for PATH_SEPARATOR on your operating system.
In the future, we shouldn't require XML/RPC.php for zoop to function. It's not a widely used feature, and it depends on an ugly PEAR class.
No more XML_RPC
The latest commit to zoop removes the requirement for XML_RPC.
You can try it by typing:
at the command line to get the newest version of zoop from subversion. This branch of zoop should be pretty stable. There's a radical new feature branch going on at:
but it's almost guaranteed to break your old applications, and may or may not work on any given day. You can check out the new skeleton at:
I hope you have fun with it.