人
我有网站,它建立在codeigniter上。
我在大约1.5周前制作了它。
在database.php中我有
$db['default']['hostname'] = 'somehosting.com';
直到今天一直很好。但大约两个小时前,出现了错误:
Unable to connect to your database server using the provided settings.
我写了mysqli连接脚本,发现错误,它是:
Warning: mysqli::mysqli(): (HY000/1129): Host 'somehosting' is blocked because of many connection errors;
然后我用Google搜索并找到解决方案。我改变了
$db['default']['hostname'] = 'somehosting.com';
使用:
$db['default']['hostname'] = 'localhost';
现在一切都恢复了。
但是什么意味着“许多连接错误”以及为什么会出现这些错误?
有人能解释我,那里发生了什么?