我对php不太了解,但是最近我接手了一个5岁的php项目,其他人一直在从事这个项目。我用谷歌搜索,我的代码似乎正在使用codeIgniter。我首先设置apache的.conf文件,mysql连接到终端,并在database.php中设置设置。但是我的PHP源代码似乎找不到数据库。如何建立成功的数据库连接?
ps。我是韩国开发人员。对不起,我的英语不好。我是Mac用户。
我尝试过: 1. apache设置 2.安装数据库 3.在database.php上设置
1)httpd.conf / apache
...
Listen 80
LoadModule rewrite_module lib/httpd/modules/mod_rewrite.so
<VirtualHost *:80>
ServerName localhost
DocumentRoot "/Users/edenkang/Documents/joahae"
</VirtualHost>
<Directory />
AllowOverride ALL
Require all denied
</Directory>
DocumentRoot "/Users/edenkang/Documents/joahae"
<Directory "/Users/edenkang/Documents/joahae">
...
2)数据库/ mysql
host : localhost
user : root
password : password
database : mydb
3)database.php / codeIgniter
$active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = 'password';
$db['default']['database'] = 'mydb';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = FALSE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
当我访问localhost / index.php时,它显示错误消息。
A Database Error Occurred
Unable to connect to your database server using the provided settings.
Filename: core/Loader.php
Line Number: 346
答案 0 :(得分:0)
您的系统上没有php-mysql软件包。如果您使用的是Ubuntu,请确保已在系统上安装了php-mysql。 您可以从此链接获取有关如何安装的参考。
apt-get install php libapache2-mod-php php-mcrypt php-mysql