- 论坛徽章:
- 0
|
freebsd6+apache21+mod_php5+PostgreSQL+Discuz!
配置Discuz的时候 出现
“config.inc.php可写检查 ... 失败
安装向导无法写入配置文件, 请核对现有信息, 如需修改, 请通过 FTP 将改好的 config.inc.php 上传.”
刚开始以为是 config.inc.php的属性问题 我修改为“777”
还是出现这个
我是这样创建用户和数据库的:
# pw user add postgres
# mkdir /usr/local/pgsql/data
# chown postgres /usr/local/pgsql/data
# su postgres
$ /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
$ /usr/local/pgsql/bin/createdb test
测试
$ /usr/local/bin/psql test
Welcome to psql 8.0.3, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit
test=#
难道是我的这个填错了?
$dbhost = 'localhost'; // database server^M
// 数据库服务器^M
^M
$dbuser = 'postgres'; // database username^M
// 数据库用户名^M
^M
$dbpw = '12345'; // database password^M
// 数据库密码^M
^M
$dbname = 'test'; // database name^M
// 数据库名^M
^M
$adminemail = 'admin@192.168.1.200'; // admin email^M
// 论坛系统 Email^M
^M
$dbreport = 0; // send db error report? 1=yes^M
// 是否发送数据库错误报告? 0=否, 1=是^M
我看见下面有
$database = 'mysql'; // 'mysql' for MySQL version and 'pgsql' for PostgreSQL version^M
// MySQL 版本请设置 'mysql', PgSQL 版本请设置 'pgsql'^M
的提示 我就把这个也改了 mysql改为pgsql了 还是不行 郁闷啊
哪位老大帮我一下啊 我折腾了快2、3个小时了 网上的资料也不多 THX |
|