老师讲的都是干货,什么分页验证码之类的资料一查一大把,和老师讲的这些是术与道的区别。如果一个分页能卡住你,你就一个人继续迷茫彷徨去吧。 @qq_迷茫彷徨_03295150
2017-12-22
Invalid Configuration – yii\base\InvalidConfigException
The table does not exist: {{%test_search}}
老师这是啥错误呀
The table does not exist: {{%test_search}}
老师这是啥错误呀
2017-09-28
Invalid Configuration – yii\base\InvalidConfigException
The table does not exist: {{%test_search}}
The table does not exist: {{%test_search}}
2017-09-28
yii默认只允许本地访问,允许远程访问的话,在 web.php中开启远程访问地址即可。
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '192.168.*.*', '::1'],
];
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
// uncomment the following to add your IP if you are not connecting from localhost.
'allowedIPs' => ['127.0.0.1', '192.168.*.*', '::1'],
];
2017-07-04