DOFOLLOW BLOGS

Webmaster stuff, Articles, Blogging Tips and Tricks

Archive for the ‘wordpress’ Category

list of wordpress update services

Written by admin on Aug 12th, 2008 | Filed under: blogging, wordpress

here is the list of wordpress update services

http://1470.net/api/ping
http://api.feedster.com/ping
http://api.moreover.com/ping
http://api.moreover.com/RPC2
http://api.my.yahoo.com/RPC2
http://api.my.yahoo.com/rss/ping
http://bblog.com/ping.php
http://bitacoras.net/ping
http://blog.goo.ne.jp
http://blog.goo.ne.jp/XMLRPC
http://blogbot.dk
http://blogbot.dk/io/xml-rpc.php
http://blogdb.jp
http://blogdb.jp/xmlrpc
http://blogmatcher.com/u.php
http://blogoole.com/ping
http://blogroots.com/tb_populi.blog?id=1
http://blogsearch.google.com/ping/RPC2
http://blogsnow.com/ping
http://bulkfeeds.net
http://bulkfeeds.net/rpc
http://coreblog.org/ping/
http://effbot.org/rpc/ping.cgi
http://godesigngroup.com
http://godesigngroup.com/blog/feed
http://imblogs.net/ping
http://lasermemory.com/lsrpc
http://mod-pubsub.org/kn_apps/blogchatt
http://ping.amagle.com/
http://ping.bitacoras.com
http://ping.blo.gs/
http://ping.blogg.de
http://ping.bloggers.jp/rpc/
http://ping.blogmura.jp/rpc/
http://ping.cocolog-nifty.com/xmlrpc
http://ping.exblog.jp/xmlrpc
http://ping.fakapster.com/rpc
http://ping.feedburner.com
http://ping.myblog.jp
http://ping.rootblog.com/rpc.php
http://ping.syndic8.com/xmlrpc.php
http://ping.weblogalot.com/rpc.php
http://ping.weblogs.se/
http://ping.wordblog.de/
http://pinger.blogflux.com/rpc
http://pingoat.com/goat/RPC2
http://pingqueue.com/rpc
http://popdex.com/addsite.php
http://rcs.datashed.net/RPC2/
http://rpc.blogbuzzmachine.com/RPC2
http://rpc.blogrolling.com/pinger/
http://rpc.britblog.com/
http://rpc.feedsky.com/ping
http://rpc.icerocket.com:10080/
http://rpc.newsgator.com/
http://rpc.pingomatic.com/
http://rpc.tailrank.com/feedburner/RPC2
http://rpc.technorati.com/rpc/ping
http://rpc.weblogs.com/RPC2
http://rpc.wpkeys.com/
http://services.newsgator.com/ngws/xmlrpcping.aspx
http://signup.alerts.msn.com/alerts-PREP/submitPingExtended.doz
http://snipsnap.org/RPC2
http://thingamablog.sourceforge.net/ping.php
http://topicexchange.com/RPC2
http://trackback.bakeinu.jp/bakeping.php
http://weblogues.com/RPC
http://www.a2b.cc/setloc/bp.a2b
http://www.bitacoles.net/ping.php
http://www.blogdigger.com/RPC2
http://www.blogoole.com/ping/
http://www.blogoon.net/ping/
http://www.blogpeople.net/servlet/weblogUpdates
http://www.blogroots.com/tb_populi.blog?id=1
http://www.blogsdominicanos.com/ping/
http://www.blogshares.com/rpc.php
http://www.blogsnow.com/ping
http://www.blogstreet.com/xrbin/xmlrpc.cgi
http://www.catapings.com/ping.php
http://www.feedsky.com/api/RPC2
http://www.focuslook.com/ping.php
http://www.godesigngroup.com
http://www.holycowdude.com/rpc/ping/
http://www.imblogs.net/ping/
http://www.lasermemory.com/lsrpc/
http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php
http://www.mod-pubsub.org/ping.php
http://www.newsisfree.com/RPCCloud
http://www.newsisfree.com/xmlrpctest.php
http://www.popdex.com/addsite.php
http://www.snipsnap.org/RPC2
http://www.syndic8.com/xmlrpc.php
http://www.wasalive.com/ping/
http://www.weblogues.com/RPC/
http://www.xianguo.com/xmlrpc/ping.php
http://xmlrpc.blogg.de/
http://xping.pubsub.com/ping/
https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast

please give me some feedback from the listed services


How to backup and restore a WordPress database

Written by admin on Jul 24th, 2008 | Filed under: blogging, wordpress

To backup your WordPress database, you’ll need a database backup utility.

phpMyAdmin is a web-based MySql database administration tool that most hosting providers make available to their customers. This tool includes a backup utility and allows you to edit data in the database directly (among other things). It’s pretty easy to use once you get the hang of it.

One caveat: while phpMyAdmin is a good utility, remember that you’re working over an internet connection. Some quirkiness is to be expected. You may have to try things twice or play around a little.

These instructions were tested using a MySql 4.0.27 database and phpMyAdmin 2.6.4-pl2 on Linux 2.6.9. If your configuration numbers vary within reason, these instructions should still work.

In Summary

To Backup

There are two basic options:

• Export the entire database
• Export only the tables

This is a subtle but important difference. If you want to manually create the database before restoring, then export only the tables. Exporting only the tables has some advantages. First, you will eliminate any uncertainty regarding this step of the restore – that is, you will know whether or not the database was successfully created before inserting the tables. In addition, you can add the necessary users to the database before populating it with data.

To Restore

Use the Import feature in phpMyAdmin to upload the gzipped file from your workstation’s hard drive to the web server. phpMyAdmin will automatically extract and restore the database/tables.

In Detail

  1. Log in to your host’s control panel for your site and go to the MySql database admin page.
  2. Open phpMyAdmin. From the phpMyAdmin home page:
    • If you are exporting a database:
      Click on the Export link from the home page for a database export.
    • If you are exporting tables:
      Select the database first, then click the Export link for exporting the tables.

    (the following screenshots show a table export)

    Click Export after selecting the database:

  3. After selecting the database and clicking Export, you will be presented with the Export screen, which has several options. Our recommendations are reflected below.

    You can research the settings selected in the screenshot if you wish. For the sake of brevity, we simply present our recommendations as tested:

    Structure
    – add DROP TABLE
    – Add AUTO_INCREMENT value
    – Enclose table and field names with backquotes

    Data
    – Use hexadecimal for binary fields

    Save as file
    [use default File name template]
    – “gzipped”

  4. Click the GO button, and you will be prompted to save the compressed file to your workstation’s hard drive. Do not change the name of the file. Save it with the default name given by phpMyAdmin.

TO RESTORE

  1. From the phpMyAdmin utility home page:
    • If you are importing a database:
      The database should not yet exist on the server, so just open the Query Window (the import process will create the database automatically).
    • If you are importing tables:
      First select the database you want to restore from the drop-down list, then click the SQL icon (in the left column) to open the Query Window. Note: this assumes you’ve already created the new database into which you will be inserting your tables.
  2. Select the empty database (if importing tables), then click the SQL icon.
  3. In the Query Window, click the Import files button.
  4. Use the Browse button to select the compressed backup file from your workstation’s hard drive.
  5. Be sure the gzipped option is selected and click the GO button.

Done!

Important note:

If the URL to your new host or site is different from what it was previously, you’ll need to use phpMyAdmin to change two fields directly in the database. These two fields are in the options table: siteurl and home. You’ll have all kinds of trouble if you try to access your blog without changing these fields.

articles source : http://www.clearpointsystems.com/


move a WordPress blog to a new URL or domain

Written by admin on Jul 24th, 2008 | Filed under: blogging, wordpress

If you change your site’s domain or move your blog so it uses a different URL, you’ll need to use phpMyAdmin to change two fields directly in the database. These two fields are in the options table: siteurl and home. You’ll have all kinds of trouble if you try to access your blog without changing these fields.

  1. Log in to your host’s control panel for your site and go to the MySql database admin page.
  2. Open phpMyAdmin.
  3. Select the correct database from the drop-down list in the column on the left, then select the options table.
  4. Click the Browse button.
  5. Find the siteurl row with the option_value of your old server (should be the first row).
  6. Click on the pencil icon to edit the value and change it to the URL of your new host.
  7. Click the Go button at the bottom of the screen to save the change.
  8. You should be taken back to the Browse screen (if not, just select the table from the list on the left and click Browse again). We need to make one more edit.
  9. At the bottom of the Browse page you will see a button for paging forward. Click the button so the additional fields in the table are displayed (the options table has more fields than phpMyAdmin displays on one page).We are looking the home field.

    Repeat the same procedure to edit the home field.

  10. Click the GO button at the bottom of the screen to save the changes.

Done!

thanks to www.clearpointsystems.com [article source]