About Yii-Forum Extension

i wann to use yii forum extension in my application, i follow the procedure but didn’t get any result plz someone tell me the exact flow to extension.and how to use it.plz help me

what extension are you using?

yii-forum extension

Do you mean this one?

I’ve successfully tried this extention, you can try the following :

  1. Extract the extension to folder protected/modules, if modules directory not available just create new one

protected/modules/yii-forum

  1. craete your new database

example : mysample

and import database sample has available in folder protected/modules/yii-forum/data

  1. configure your main.php and modules like this :

'modules'=>array(

		// uncomment the following to enable the Gii tool

		

		'gii'=>array(

			'class'=>'system.gii.GiiModule',

			'password'=>'secret',

			// If removed, Gii defaults to localhost only. Edit carefully to taste.

			'ipFilters'=>array('127.0.0.1','::1'),

		),

            	'forum'=>array(

                	'class'=>'application.modules.yii-forum.YiiForumModule',

            	),

		

	),

  1. go to url :

http://localhost/myforum/index.php?r=forum

done.