Ping Services

We are using the following pingservices.xml file for BlogEngine.NET.

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <services> <!-- Wikipedia: Open Ping Servers --> <service>http://rpc.weblogs.com/rpc2</service> <service>http://ping.blo.gs/</service> <!-- Wikipedia: Aggregators --> <service>http://api.blogblogs.com.br/api/ping</service> <service>http://bulkfeeds.net/rpc</service> <service>http://ping.feedburner.com</service> <service>http://blogsearch.google.com/ping/RPC2</service> <service>http://rpc.icerocket.com:10080/</service> <service>http://rpc.technorati.com/rpc/ping</service> <service>http://api.my.yahoo.com/RPC2</service> <service>http://api.my.yahoo.com/rss/ping</service> <!-- Wikipedia: Multi-Pinging services --> <service>http://pinger.blogflux.com/rpc</service> <service>http://blogpinger.de/</service> <service>http://www.kping.com/</service> <service>http://ping.in/</service> <service>http://pingoat.com/</service> <service>http://rpc.pingomatic.com/rpc2</service> <service>http://mohanjith.net/pnp</service> <!-- Various --> <service>http://www.bloglines.com/ping</service> <service>http://services.newsgator.com/ngws/xmlrpcping.aspx</service> <service>http://xping.pubsub.com/ping/</service> <service>http://xmlrpc.blogg.de/</service> <service>http://api.moreover.com/RPC2</service> <service>http://ping.weblogs.se/</service> <service>http://www.weblogues.com/RPC/</service> <service>http://coreblog.org/ping</service> <service>http://ping.myblog.jp</service> <service>http://ping.bloggers.jp/rpc</service> <service>http://ping.bitacoras.com</service> <service>http://ping.weblogalot.com/rpc.php</service> <service>http://bblog.com/ping.php</service> <service>http://blog.goo.ne.jp/XMLRPC</service> <service>http://effbot.org/rpc/ping.cgi</service> <service>http://mod-pubsub.org/kn_apps/blogchatt</service> <service>http://ping.exblog.jp/xmlrpc</service> <service>http://ping.syndic8.com/xmlrpc.php</service> <service>https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast</service> <service>http://www.blogdigger.com/RPC2</service> <service>http://www.blogoole.com/ping</service> <service>http://www.blogoon.net/ping</service> <service>http://www.blogshares.com/rpc.php</service> <service>http://rpc.blogrolling.com/pinger</service> <service>http://www.blogpeople.net/servlet/weblogUpdates</service> <service>http://www.wasalive.com/ping/</service> <service>http://www.popdex.com/addsite.php</service> <service>http://rpc.blogbuzzmachine.com/RPC2</service> <service>http://www.bitacoles.net/ping.php</service> <service>http://www.focuslook.com/ping.php</service> </services>

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Install BlogEngine.NET in a virtual directory underneath a DotNetNuke installation

If you want to install BlogEngine.NET or any other web application in a virtual directory (or subdirectory) underneath a DotNetNuke installation, you'll have to make sure, that the configuration settings of DotNetNuke are not inherited by BlogEngine.Net. In order to prevent this, you need to change the web.config file of DotNetNuke and surround the <system.web> part with the following tag:

<location path="." inheritInChildApplications="false"> <system.web> ... </system.web> </location>

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Missing Login on Login Page

If the username and password textboxes don't show up on the login page of a BlogEngine.NET installation, you probably have uncommented the following line in the BlogEngine.NET web.config file:

<add name="CleanPageModule" type="BlogEngine.Core.Web.HttpModules.CleanPageModule, BlogEngine.Core"/>

Comment this line out again, and it will work. 

Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkList

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5