Go Back   Pligg CMS Forum > Other > Suggestions

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-29-2005, 06:49 PM
New Pligger
 
Join Date: Dec 2005
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Ping RSS Aggregators

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
Reply With Quote
  #2 (permalink)  
Old 03-19-2007, 05:04 AM
Constant Pligger
 
Join Date: Feb 2007
Posts: 107
Thanks: 11
Thanked 1 Time in 1 Post
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.
Reply With Quote
  #3 (permalink)  
Old 03-19-2007, 07:24 PM
jon's Avatar
jon jon is offline
Casual Pligger
 
Join Date: Jan 2007
Posts: 76
Thanks: 5
Thanked 3 Times in 2 Posts
Just out of interest, where are good places to "ping". I have used Technorati for my blogs, but little else really.

Cheers,

Jon.
Reply With Quote
  #4 (permalink)  
Old 03-19-2007, 10:14 PM
Constant Pligger
 
Join Date: Feb 2007
Posts: 107
Thanks: 11
Thanked 1 Time in 1 Post
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
Reply With Quote
  #5 (permalink)  
Old 04-09-2007, 07:28 AM
New Pligger
 
Join Date: Sep 2006
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote
  #6 (permalink)  
Old 05-16-2007, 12:59 PM
New Pligger
 
Join Date: May 2007
Posts: 20
Thanks: 0
Thanked 1 Time in 1 Post
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
__________________
Aoohm - User Published cuteness at http://aoohm.us
Reply With Quote
  #7 (permalink)  
Old 10-09-2007, 09:04 AM
Constant Pligger
 
Join Date: Aug 2007
Posts: 100
Thanks: 1
Thanked 2 Times in 1 Post
have anyone made something like that for pligg? Maybe as extension?
Thanks Igor
__________________
http://www.testorado.de
Reply With Quote
  #8 (permalink)  
Old 11-05-2007, 03:20 AM
Constant Pligger
 
Join Date: Aug 2007
Posts: 100
Thanks: 1
Thanked 2 Times in 1 Post
any updates for a Ping Plugin
__________________
http://www.testorado.de
Reply With Quote
  #9 (permalink)  
Old 11-05-2007, 08:19 PM
chuckroast's Avatar
Coder/Designer
Pligg Version: 1.0
Pligg Template: ExpertVision
 
Join Date: Jun 2006
Location: PA
Posts: 2,367
Thanks: 169
Thanked 437 Times in 276 Posts
Quote:
Originally Posted by GrinGEO View Post
any updates for a Ping Plugin
See Ping Technorati and others with Pligg Ping Module
__________________
Visit PliggPro the official Pligg Mods & Template Shop!

Reply With Quote
  #10 (permalink)  
Old 02-01-2008, 12:58 AM
New Pligger
 
Join Date: Apr 2007
Posts: 23
Thanks: 1
Thanked 0 Times in 0 Posts
is available one module for download to use this service of auto ping notification?
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
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


Search Engine Friendly URLs by vBSEO 3.2.0