When a new story is submitted (or promoted to the main pages) would be nice if RSS aggregator services could be pinged so they know to come get your new content.
Here is a page at Pingomatic as why this is important:
http://pingomatic.com/about/
Cheers,
Mubs
![]() |
| | LinkBack | Thread Tools | Display Modes |
| |||
| Ping RSS Aggregators
__________________ -- Mubashar (MUBS) Iqbal -- MubasharIqbal.com | APBNews.com - Digging Crime News | Episode List Light On Dark | Fugitive Toys | All Frameworks | Cutting Edge Tutorials |
| |||
|
bump. I came here to suggest the same. I manually ping right now, it would be nice to have the wordpress ability of listing services to ping upon publication of stories. |
| |||
|
I use Pingomatic saved as a bookmark with my info already in it. I also signed up for feedburner and set up services to ping within, so when pingomatic pings feedburner, feedburner pings the other services. There's also a list on wordpress with some good info: http://codex.wordpress.org/Update_Services |
| |||
|
has there been any new development on this? I would love pligg to set up something like the Horde bounty hunt (http://horde.org/bounties/) in order for people who would like to contribute financially to get recognized for their contributions and people able to program within pligg getting something back for their mods - how about that? There is a long list of features I would like to see implemented, with ping services and auto-expiration being the most urgent ones. Hope to read some input from you! Regards, Martin |
| |||
|
I found this code useful.. i run it manually from unix prompt but im sure someone could recode from it and make it a web based apish cgi thingymahoot.. or just a quick solution for me though.. maybe it can help someone else #!/usr/bin/perl # # requires XMLRPC::Lite # # usage ./ping "your site name" http://yoursite.com use strict; use warnings; use XMLRPC::Lite; sub print_usage_and_exit { print <<USAGE; usage: rpcping.pl "YOUR WEBLOG NAME" URL USAGE exit; } @ARGV == 2 or print_usage_and_exit; my ( $blog_name, $blog_url ) = @ARGV; my @services = ( # See http://codex.wordpress.org/Update_Services for # a more comprehensive list. 'Google' => 'http://blogsearch.google.com/ping/RPC2', 'Weblogs.com' => 'http://rpc.weblogs.com/RPC2', 'Feed Burner' => 'http://ping.feedburner.com/', 'Moreover' => 'http://api.moreover.com/RPC2', 'Syndic8' => 'http://ping.syndic8.com/xmlrpc.php' , 'BlogRolling' => 'http://rpc.blogrolling.com/pinger/', 'Technorati' => 'http://rpc.technorati.com/rpc/ping' , 'BulkFeeds' => 'http://bulkfeeds.net/rpc', 'BlogFlux' => 'http://pinger.blogflux.com/rpc/', 'Ping-o-Matic!' => 'http://rpc.pingomatic.com/', 'NewsGator' => 'http://services.newsgator.com/ngws/xmlrpcping.aspx', 'Blog People' => 'http://www.blogpeople.net/servlet/weblogUpdates', 'Howly Cow Dude' => 'http://www.holycowdude.com/rpc/ping/', 'Blog Update' => 'http://blogupdate.org/ping/', 'FeedSky' => 'http://www.feedsky.com/api/RPC2', # enter more feeds here in format: 'name' => 'http://URL', ); while ( my ( $service_name, $rpc_endpoint ) = splice @services, 0, 2 ) { my $xmlrpc = XMLRPC::Lite->proxy( $rpc_endpoint ); my $call; eval { $call = $xmlrpc->call( 'weblogUpdates.ping', $blog_name, $blog_url ); }; if ( $@ ) { chomp $@; warn "Ping '$service_name' failed: '$@'\n"; next; } unless ( defined $call ) { warn "Ping '$service_name' failed for an unknown reason\n"; next; } if ( $call->fault ) { chomp( my $message = $call->faultstring ); warn "Ping '$service_name' failed: '$message'\n"; next; } my $result = $call->result; if ( $result->{ flerror } ) { warn "Ping '$service_name' returned the following error: '", $result->{ message }, "'\n"; next; } print "Ping '$service_name' returned: '$result->{ message }'\n"; } Make it a file its perl ofcourse... um and you can just use it in command line ./ping "Aoohm - User published cuteness" http://aoohm.us And it goes through each thing in your ping list which you can add more or just the ones you like.. and does it for you Hope it helps someone |
| |||
|
have anyone made something like that for pligg? Maybe as extension? Thanks Igor
__________________ http://www.testorado.de |
| |||
|
any updates for a Ping Plugin
__________________ http://www.testorado.de |
| ||||
|
__________________ Visit PliggPro the official Pligg Mods & Template Shop! |
![]() |
« Previous Thread
|
Next Thread »
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Pligg 2.0 Brainstorming (Your Ideas Needed!) | jitgos | Suggestions | 143 | 07-29-2008 08:16 PM |
| Xml sitemaps new version | mihai | Pligg Modules | 24 | 07-03-2008 03:09 AM |





Linear Mode

