If you have upgraded the PDA plugin in past 2 days you might run into header output issues which might break the operation of wordpress where ever header function was being used. To overcome the issues please de-activate the plugin and upgrade the plugin to the latest version 1.2.6 and activate the plugin back. This… Continue reading WordPress PDA plugin causing header output issues
Category: Programming
stuffs I do…
PDA plugin with iPhone support
Today I upgraded my blog to latest WordPress 2.5. You have no idea what they have done to the WordPress. It is really great and lovely. I really like the new interface and media manager integration. Most of the functionalities what my organizer plugin did is of no use now. Thanks to WordPress team 🙂… Continue reading PDA plugin with iPhone support
Tinymce 3.0 released
Moxiecode has released new version of Tinymce. Some new features updated from change log Rewrote the core and most of the plugins and themes from scratch. Added new and improved serialization engine, faster and more powerful. Added new internal event system, things like editor.onClick.add(func). Added new inline popups plugin, the dialogs are now skinable and… Continue reading Tinymce 3.0 released
MySQL ORDER BY FIELD – Custom Field Sorting
Today I ran into a problem. I need to sort results of a given query by fixed column values. Example I have a column named status and which holds the following values 1,2,3,4 When I user normal sort method like Order By status ASC will return 1,2,3,4 Order By status DESC will return 4,3,2,1 Suppose… Continue reading MySQL ORDER BY FIELD – Custom Field Sorting
Javascript Library jquery
For past few days I was playing around with this javascript library jquery which is really light and powerful. This was told by Nishanth from our company. He is a great fan of this tool and even I am one now. http://jquery.com/ Some of examples to use this library $(“p.surprise”).addClass(“ohmy”).show(“slow”); The selectors are really powerful… Continue reading Javascript Library jquery