server
マシンがあり、PCのIPアドレスでgii
を使用できるようにしようとしています。
私のPCのIPアドレスは192.168.1.101
です
server
マシンIPは192.168.1.102
です。
composer
を使用してgii module
をインストールしました。
これは私のcomposer.json
設定がどのように見えるかです:
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"yiisoft/yii2-gii": "*"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
php init
とcomposer update
とphp yii migrate
を使用しました。
frontend
にもログインしています。
これはmain.php
ファイルのコンテンツです:
return [
'id' => 'app-frontend',
'basePath' => dirname(__DIR__),
'bootstrap' => ['gii'],
'controllerNamespace' => 'frontend\controllers',
'components' => [
'user' => [
'identityClass' => 'common\models\User',
'enableAutoLogin' => true,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'errorHandler' => [
'errorAction' => 'site/error',
],
],
'params' => $params,
'modules' => [
'gii' => [
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1', '::1', '192.168.1.101'],
'password' => '123456'
],
],
];
同様の問題があり、すべての異なるipFilterの変更を試みました。最後に、これをmain-local.phpに追加する必要がありました。私は高度なアプリケーションを使用しており、設定は「yii2基本」セットアップ用であったため、これは奇妙でした。
http://www.yiiframework.com/doc-2.0/guide-start-gii.html
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';}
また、指摘する必要があります、これをmain.phpに追加しました
'modules' => [
'gii' => [
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1', '::1', '192.168.1.*', 'XXX.XXX.XXX.XXX'] // adjust this to your needs
],
],
dev
モードで初期化した後、\backend\config\main-local.php
を変更し、「allowedIPs」を追加する必要がありました。
[〜#〜] all [〜#〜] IPを許可しているため、内部の開発者のみが使用することをお勧めします!ニーズに合わせて調整します。
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['*'],
];
現在のバージョンのYiiでは、web.phpでGiiへのアクセスを許可する必要があります。
//$config['modules']['gii'] = 'yii\gii\Module'; // <--- replace this line
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['XXX.XXX.XXX.XXX', 'YYY.YYY.YYY.YYY']
];
/common/config/main-local.phpを次のように変更します。
return [
'components' => [
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:Host=localhost;dbname=YourDatbase',
'username' => 'YourDBUserName',
'password' => 'YourDBPassword',
'charset' => 'utf8',
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
'useFileTransport' => true,
],
],
// Add this to get debug and gii to work
'modules' => [
'gii' => [
'class' => 'yii\gii\Module',
// permits any and all IPs
// you should probably restrict this
'allowedIPs' => ['*']
],
'debug' => [
'class' => 'yii\debug\Module',
// permits any and all IPs
// you should probably restrict this
'allowedIPs' => ['*']
]
]
];
If part内のYII_ENV_DEVの前に感嘆符(!)を追加した後、コードは私(yii 2.0.8)で機能しました:
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
];
$config['modules']['debug']['allowedIPs'] = ['*'];
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
];
$config['modules']['gii']['allowedIPs'] = ['*'];
}
疑わしい場合は、ログを確認してください。そこに警告があります。
10 06:00:19.040 warning yii\gii\Module::checkAccess Access to Gii is denied due to IP address restriction. The requested IP is 127.0.0.1
11 06:00:19.041 error yii\web\HttpException:403 exception 'yii\web\ForbiddenHttpException' with message 'You are not allowed to access this page.' in ......./html/vendor/yiisoft/yii2-gii/Module.php:112
おそらくあなたはIPについて間違っています。私はあなたが持っている設定を試しましたが、それは私のために機能します。
PS1:サーバー上でGiiを有効にするべきではありませんが、既に知っていると思いますが、これはまだ開発環境です。
PS2:Yii2にはgiiのパスワード設定はありません
私は答えを見つけました、そしてこれはyiiチーム!
init
コマンドを使用した後、/frontend/config/main-local.php
、私は見つけた:
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}
私のアプリはdev
モードであり、上記の宣言は、gii
が機能するのを停止します。