NP_TechnoratiTags v0.9.2
This version fix a few bugs:
- skip tag update to del.icio.us if there is no user/password set
- fix tag cloud to ensure it displays according to PlusSwitch option
- rename templete var dcloud switch to dtag
click here to download
- skip tag update to del.icio.us if there is no user/password set
- fix tag cloud to ensure it displays according to PlusSwitch option
- rename templete var dcloud switch to dtag
click here to download
Wordpress convertor v1.2
This new version add Nucleus table name prefix detection, so import is more rebust.
Import steps:
1 - install Nucleus
2 - download the import tools (see below)
3 - unzip the tools and upload the convert/ under nucleus/
3 - run the script wordpress.php, follow the step to fill in wp and nucleus database info.
4 - run it
5 - done!
click here to download
Import steps:
1 - install Nucleus
2 - download the import tools (see below)
3 - unzip the tools and upload the convert/ under nucleus/
3 - run the script wordpress.php, follow the step to fill in wp and nucleus database info.
4 - run it
5 - done!
click here to download
NP_TechnoratiTags v0.9.1
This version fixed the bug when inserting tags at the end of the post. Also there is an option to choice tags type to inserted.
click here to download
click here to download
NP_TechnoratiTags v0.9.0
New major release:
- allow per blog tag cloud - current, all, by blogid
- show tag count
- option for tag search title
- outbound tag support to del.icio.us; 1) add dcloud skin/templete control to point to del.icio.us instead of Technorati 2) tag a post to del.icio.us (each user need to provide login/password)
click here to download
p.s. del.icio.us support is using code from http://www.ejeliot.com/pages/php-delicious (Thanks, Ed!)
- allow per blog tag cloud - current, all, by blogid
- show tag count
- option for tag search title
- outbound tag support to del.icio.us; 1) add dcloud skin/templete control to point to del.icio.us instead of Technorati 2) tag a post to del.icio.us (each user need to provide login/password)
click here to download
p.s. del.icio.us support is using code from http://www.ejeliot.com/pages/php-delicious (Thanks, Ed!)
To Make createItemLink() Work....
Just saw some code from NP_Trackback that need to make createItemLink() to work... I ran into some problem in the past that have to resolve into manually construct the item link. In fact, what need to do is to set $CONF['ItemURL'] using the following code:
global $manager, $CONF; // need to reset the ItemURL so createItemLink work properly $blog =& $manager->getBlog(getBlogIDFromItemID($itemid)); $CONF['ItemURL'] = preg_replace('/\/$/', '', $blog->getURL()); // then createItemLink() will work! $url = createItemLink($itemid);