Fotobilder export

Jul 16, 2008 23:24

I'm having trouble with my Fotobilder client. I'd like to be able to export the user's pictures as a backup. I knew that the Perl client did this, so I looked at how it works. It's rather different to the rest of the Fotobilder stuff: it seems to get the export data by POSTing to Read more... )

client: export, client, code: perl, client: fotobilder

Leave a comment

Comments 4

pauamma July 17 2008, 06:49:11 UTC
Check the following:
- libxml2 is installed (wherever cygwin would put object code libraries)
- XML::LibXML (the perl module) is installed, accessible through perl INC, and includes the XML::LibXML::SAX package.

What is the output of the following command:

perl -e 'use XML::LibXML; print "XML::LibXML::VERSION=$XML::LibXML::VERSION\nXML::LibXML::SAX::VERSION=$XML::LibXML::SAX::VERSION\n";'

Reply

banana July 18 2008, 22:43:19 UTC
Thanks. It doesn't look good:
Can't load '/usr/lib/perl5/vendor_perl/5.10/i686-cygwin/auto/XML/LibXML/Common/Common.dll' for module XML::LibXML::Common: No such file or directory at /usr/lib/perl5/5.10/i686-cygwin/DynaLoader.pm line 201.
at /usr/lib/perl5/vendor_perl/5.10/i686-cygwin/XML/LibXML.pm line 12
Compilation failed in require at /usr/lib/perl5/vendor_perl/5.10/i686-cygwin/XML/LibXML.pm line 12.
BEGIN failed--compilation aborted at /usr/lib/perl5/vendor_perl/5.10/i686-cygwin/XML/LibXML.pm line 12.
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

Reply

pauamma July 18 2008, 23:03:46 UTC
It looks like some of the necessary modules or libraries didn't get installed or not installed properly. Try installing them by hand (or reinstalling them). If that doesn't work, check Cygwin docs or support resources.

Reply

banana July 18 2008, 23:28:28 UTC
OK, thanks.

Reply


Leave a comment

Up