Thursday, September 17, 2009

Cupcake A forum plugin for cakephp

A plugin called “Cupcake Forum” released for CakePHP. Now you can integrate forum to your cakephp applications within fraction of minutes. The plugin comes with all the basic features of a famous phpbb forum some of which include topics, posts, replies, users, polls, moderators, staff and much more.
Download: http://www.milesj.me/resources/script/forum-plugin
Demo: http://www.milesj.me/forum

Wednesday, September 9, 2009

Sobi2 Plugin

Joomla sobi2 component. Used to develop website with multiple modules, multiple categories, and subcategories and also create entries (Forms) for end users to submit their data to the site. And admin can manage this data and also the end user can edit his own data. It is very useful for developing sites in joomla.
See All About Sobi2

PHP Dynamic Timezones Setting

Some queries work well in one timezone will effected in another timezones. Because timezones are varied from server to server. To overcome this problem you can set the default timezone for the site irrespective of the server time by using the below function.

date_default_timezone_set('Timezone')

here 'Timezone' is the string for example for setting Indian Standard Time it is "Asia/Calcutta", for Los Angels it is "America/Los_Angeles" etc

Ex: date_default_timezone_set('Asia/Calcutta')

Checkout the timezones list at php.net