INSTALL
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. Database installer process :
  2.    - Yes you can run this multiple times, some people actually use 
  3.       different dbs for different roles, i.e. mysql for the sessions,
  4.       and oracle for user authentication. This script is _very_
  5.       dumb and should be used with caution due to that fact. It may
  6.       or may not blow up and delete all previous data.
  7.    - Okay with that said, let's setup a database :
  8.       ./create_dbs.pl   
  9.          --user=foo     
  10.          --password=bar 
  11.          --mysql        
  12.          --session_db   
  13.          --admin_privileges_db 
  14.          --user_db
  15.       What that does is setup the sessions, and users database under 
  16.       the mysql instance indicated above.
  17.       The account that your creating as will need to have create 
  18.       database privileges under mysql, i generally use the root user
  19.       for just this task.
  20.       This doesn't create users or anything like that anymore,
  21.       but there are example sql statements in database/(yourdb)/user.
  22.       ( This is just me being me, i don't like forcing too much on 
  23.       people, i may provide a option to create everything for you)