You are viewing revision #5 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version.
After enabling the Gii module in your protected/config/main.php
file and then try to use it with http://example.com/index.php?r=gii
, you get an error:
~~~
Error 403
You are not allowed to access this page.
~~~
This is almost certainly caused by the IP filtering mechanism that Gii uses to protect your system from outsiders - by default it allows localhost
only (both IPv4 and IPv6), and remote users (which apparently includes you) won't be allowed in.
To fix this, look in your main config file for the modules
section for Gii, and add an ipFilters
array that includes your own IP:
// protected/config/main.php
return array(
...
'modules' => array(
'gii' => array(
'class' => 'system.gii.GiiModule',
'password' => 'Enter Your Password Here',
'ipFilters' => array('127.0.0.1', '192.168.1.7'), // EDIT TO TASTE
),
...
The ipFilters
property can include as many items as you like, and they can be straight IP addresses or wildcards such as "192.168.1.*"
.
IPv6 addresses are supported as well if the underlying platform supports it, and "::1"
represents localhost (which may be required in some configurations).
Be careful not to open Gii to a too-wide audience lest it become a security risk.
Question on Gii
Ok, so I am working on this behind a proxy server, SO the only way I can get GII to work is by allowing my public ip address, which is the same for everybody???
Thanks. It works fine.
together.
Re: Question on Gii
Thats right. Except ipFilters use strong password for proper security.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.