texasag90 has asked for the wisdom of the Perl Monks concerning the following question:
I am running on a "standard" linux cpanel 11 box:HTTP::Message content not bytes at /home/iiadmin/perl/usr/lib/perl5/si +te_perl/5.8.8/SOAP/Transport/HTTP.pm line 194 <code> I am running this script: <code> #!/usr/local/bin/perl -w use strict; use WordPress::XMLRPC; my $o = WordPress::XMLRPC->new({ username => 'xxxxxx', password => 'xxxxxx', proxy => 'http://golden.masonworld.com/wordpress/xmlrpc.php', }); my $post = $o->getPost(16); # id 16 # let's change the title $post->{title} = 'I did not like the old test post title.'; # let's save the changes back to the server.. $o->editPost(16, $post, 1); # 1 is publish
Any thoughts or comments would be appreciated.[iiadmin@server txt2plr]$ perl -ver This is perl, v5.8.8 built for i686-linux
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help with WordPress:XMLRPC
by moritz (Cardinal) on Aug 26, 2008 at 17:03 UTC | |
|
Re: Help with WordPress:XMLRPC
by Anonymous Monk on Aug 26, 2008 at 21:11 UTC | |
by Anonymous Monk on Aug 26, 2008 at 21:13 UTC |