//http://stackoverflow.com/questions/26315808/yii2-gii-forbidden-code-403-you-are-not-allowed-to-access-this-page
//When in doubt check the logs. There is a warning in there that should tell you something like
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*' , '192.168.56.*', '75.157.241.9']
];
2015-12-18 06:34:52 [192.168.56.1][-][c8qrbae4q8tjtpqbstdtvtnr17][warning][yii\debug\Module::checkAccess] Access to debugger is denied due to IP address restriction. The requesting IP address is 192.168.56.1
in /home/me/domains/brownhanky.com/public_html/yii/basic/basic/views/layouts/main.php:70
Also tried ‘192.168.56.1’, Both that and * fail. Now I am unsure what to look for…