Depending on plugin
I should have written this little post a while back.
In Nucleus 3.2, a new plugin mechanism is added to allow a plugin to detect whether all plugin(s) it requires are present. There are some plugins that depends on another plugin to function. NP_MostViewed and NP_View is one.
For the same reason, Nuclues now failed the plugin uninstall operation if it is required by another plugin.
For developer, they can simply put in a function in their plugin to tell Nuclues that what plugin(s) the say plugin require:
GetDepPen function getPluginDep() { return array('NP_BlogWithOffset'); }
One note is this new plugin dependancy check mechanism does not break the compatibility for older version of Nucleus, the declared getPluginDep() in the plugin will becomes domrant if a plugin is installed in a older Nucleus.
Wordpress conversion tool ported to Nucleus
Note: v1.2 is out and can be found @ http://edmondhui.homeip.net/nudn/item/1004
I spent some times ported b:cms's wp conversion tool (Thanks to Radek) from b:cms to Nucleus. Enjoy, wp users!
steps:
1 - install Nucleus
2 - put the script in nucleus/converts
3 - run the script, follow the step
4 - done!
click here to download
The latest version can be found here
Please let me know if this script works or you run into any problem (either here or from the forum)
I spent some times ported b:cms's wp conversion tool (Thanks to Radek) from b:cms to Nucleus. Enjoy, wp users!
steps:
1 - install Nucleus
2 - put the script in nucleus/converts
3 - run the script, follow the step
4 - done!
The latest version can be found here
Please let me know if this script works or you run into any problem (either here or from the forum)
Admun's NUDN now using NUDN2 skin
Just update my dev blog to nudn2 skin. A nice skin, to say the least.
NP_PostMan 1.1a (Repost)
NucleusCMS noted by market survey
I guess we start to pick up by the radar, no matter how small a dot we made on the blogosphere. (ok.... still not even 1% on the market)
Cool to work on such exciting project.
elise.com: On the Job: Weblog Tools Market - Update February 2005
Cool to work on such exciting project.
elise.com: On the Job: Weblog Tools Market - Update February 2005
NP_Print debug print.php
Softer plugin dependancy
Currently in CVS, there is a plugin dependancy support to allow a plugin to specify what other plugins must be installed for it to function properly.