I set up WordPress blogging per the help and screencast instructions. When I fetch posts (I just did an svn up on the bundle, so I¹m at v.5327), I get the following error:
/usr/lib/ruby/1.8/xmlrpc/client.rb:535:in `do_rpc': HTTP-Error: 406 Not Acceptable (RuntimeError) from /usr/lib/ruby/1.8/xmlrpc/client.rb:409:in `call2' from /usr/lib/ruby/1.8/xmlrpc/client.rb:399:in `call' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/metaweblog.rb:31:in `getRecentPosts' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:546:in `fetch' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `popen' from /Library/Application Support/TextMate/Support/lib/progress.rb:11:in `call_with_progress' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `fetch' from /tmp/temp_textmate.mU5BiJ:3
The setup is:
# List of Blogs # # Enter a blog name followed by the endpoint URL # # Blog Name URL finesite http://admin@myfinesite.com/wp/xmlrpc.php
Is this a familiar result and is there something stupid I¹m missing? BTW: There is an admin user for the blog and I¹ve tried:
* siteadmin@myfinesite.com * admin@www.myfinesite.com
Not sure where to go from here. Help appreciated!
Thanks
When I try your address I get a Server Not Found... With or without the www.
Brett
On 9/28/06 12:22 PM, "s.ross" cwdinfo@gmail.com wrote:
I set up WordPress blogging per the help and screencast instructions. When I fetch posts (I just did an svn up on the bundle, so I¹m at v.5327), I get the following error:
/usr/lib/ruby/1.8/xmlrpc/client.rb:535:in `do_rpc': HTTP-Error: 406 Not Acceptable (RuntimeError) from /usr/lib/ruby/1.8/xmlrpc/client.rb:409:in `call2' from /usr/lib/ruby/1.8/xmlrpc/client.rb:399:in `call' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/metaweblog.rb:31:in `getRecentPosts' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:546:in `fetch' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `popen' from /Library/Application Support/TextMate/Support/lib/progress.rb:11:in `call_with_progress' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `fetch' from /tmp/temp_textmate.mU5BiJ:3
The setup is:
# List of Blogs # # Enter a blog name followed by the endpoint URL # # Blog Name URL finesite http://admin@myfinesite.com/wp/xmlrpc.php
Is this a familiar result and is there something stupid I¹m missing? BTW: There is an admin user for the blog and I¹ve tried:
- siteadmin@myfinesite.com
- admin@www.myfinesite.com
Not sure where to go from here. Help appreciated!
Thanks
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
Yeah, as a reflexive gesture, I substituted a fake domain for the real one. Try calicowebdesigns.com/wp/xmlrpc.php
Sorry
On 9/28/06 11:23 AM, "Brett Terpstra" brett@circlesixdesign.com wrote:
When I try your address I get a Server Not Found... With or without the www.
Brett
On 9/28/06 12:22 PM, "s.ross" cwdinfo@gmail.com wrote:
I set up WordPress blogging per the help and screencast instructions. When I fetch posts (I just did an svn up on the bundle, so I¹m at v.5327), I get the following error:
/usr/lib/ruby/1.8/xmlrpc/client.rb:535:in `do_rpc': HTTP-Error: 406 Not Acceptable (RuntimeError) from /usr/lib/ruby/1.8/xmlrpc/client.rb:409:in `call2' from /usr/lib/ruby/1.8/xmlrpc/client.rb:399:in `call' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/metaweblog.rb:31:in `getRecentPosts' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:546:in `fetch' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `popen' from /Library/Application Support/TextMate/Support/lib/progress.rb:11:in `call_with_progress' from /Library/Application Support/TextMate/Bundles/Blogging.tmbundle/Support/lib/blogging.rb:545:in `fetch' from /tmp/temp_textmate.mU5BiJ:3
The setup is:
# List of Blogs # # Enter a blog name followed by the endpoint URL # # Blog Name URL finesite http://admin@myfinesite.com/wp/xmlrpc.php
Is this a familiar result and is there something stupid I¹m missing? BTW: There is an admin user for the blog and I¹ve tried:
- siteadmin@myfinesite.com
- admin@www.myfinesite.com
Not sure where to go from here. Help appreciated!
Thanks
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
On 28/9/2006, at 20:38, s.ross wrote:
Yeah, as a reflexive gesture, I substituted a fake domain for the real one. Try calicowebdesigns.com/wp/xmlrpc.php
You might have a server-side problem here:
% curl -I calicowebdesigns.com/wp/xmlrpc.php HTTP/1.1 406 Not Acceptable …
% curl -I macromates.com/blog/xmlrpc.php HTTP/1.1 200 OK …
Perhaps you need to enable xml-rpc in the WP preferences.
Brett Terpstra suggested the following fix:
File: .htaccess
<Files xmlrpc.php>
SecFilterInheritance Off
</Files>
This works, and Alan¹s suggestion of using curl to test was perfect. Yet another cool use for TextMate. And I only thought I¹d use it for programming ;)
On 9/28/06 12:36 PM, "Allan Odgaard" throw-away-1@macromates.com wrote:
On 28/9/2006, at 20:38, s.ross wrote:
Yeah, as a reflexive gesture, I substituted a fake domain for the real one. Try calicowebdesigns.com/wp/xmlrpc.php
You might have a server-side problem here:
% curl -I calicowebdesigns.com/wp/xmlrpc.php HTTP/1.1 406 Not Acceptable % curl -I macromates.com/blog/xmlrpc.php HTTP/1.1 200 OK
Perhaps you need to enable xml-rpc in the WP preferences.
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate