Run Gii on shared hosting?

Hi all,

I am using Yii 2 basic template on a shared hosting environment. I am building the site there. That seems to work fine (so far).

My question relates to Gii. Can I use Gii on this Linux shared hosting environment? I am currently getting the familiar 403 error when I try to run it.

My PC runs Windows and so I would like to avoid having to install PHP, MySQL, Yii etc on it but Gii is a must (from the docs I have seen, it is perfect for what I need)

So can I use Gii on shared hosting?

Thanks in advance.

you need to add your IP in the ipfilters field


		'gii'=>array(

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

			'password'=>'password',

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

			//'ipFilters'=>array('88.15.14.36','::1'),

		),

or


		'gii'=>array(

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

			'password'=>'password',

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

			//'ipFilters'=>array('127.0.0.1', $_SERVER['REMOTE_ADDR']),

		),