我对实际将网站设置为实时版本非常陌生,我只使用本地主机完成了网站。我为此使用了codeigniter,并且我已经将我的问题追溯到它加载数据库的模型。这让我觉得我的数据库配置设置不正确。该模型的功能如下:
public function register($email, $password, $first_name, $last_name, $gender, $birthday){
$salt = $this->generateSalt();
$password = $this->hash($password, $salt);
$data = array('email' => $email, 'password' => $password, 'salt' => $salt, 'first_name' => $first_name,
"last_name" => $last_name, 'gender' => $gender, "birthday" => $birthday);
$this->load->database();
if($this->db->insert('users', $data)){
$this->loginById($this->db->insert_id());
return true;
}else{
return false;
}
}
虽然我删除了密码和用户名以保护隐私,但数据库配置看起来像这样,但我使用的用户名和密码与我用来进入 phpmyadmin 的相同:
$db['default'] = array(
'dsn' => '',
'hostname' => 'http://130.184.99.114/',
'username' => '',
'password' => '',
'database' => 'meetings',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => TRUE,
'db_debug' => TRUE,
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'autoinit' => TRUE,
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array()
);
那么,我需要如何设置呢?我认为我在正确的轨道上,但我对此真的很陌生,所以请以我可以学习的方式解释它!:D 如果您需要更多信息,请告诉我。