From: Chris W. <la...@us...> - 2005-02-25 05:41:27
|
Update of /cvsroot/openinteract/OpenInteract2/doc/Manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24950/Manual Modified Files: QuickStart.pod Log Message: get rid of 'source_dir' ref and change dbi config Index: QuickStart.pod =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/doc/Manual/QuickStart.pod,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** QuickStart.pod 30 Nov 2004 02:00:29 -0000 1.10 --- QuickStart.pod 25 Feb 2005 05:41:13 -0000 1.11 *************** *** 56,66 **** Next, issue the command to create the website: ! $ oi2_manage create_website --source_dir=/path/to/OpenInteract2-source ! ! (You'll need to use the full path for now, relative paths will fail in ! non-obvious ways.) ! ! The C<--source_dir> must have at least the C<sample/> and C<pkg/> ! directories from the OpenInteract2 distribution. =head2 Configuring Your Site: server.ini --- 56,60 ---- Next, issue the command to create the website: ! $ oi2_manage create_website =head2 Configuring Your Site: server.ini *************** *** 92,104 **** [datasource main] type = DBI ! spops = ! driver_name = ! dsn = username = password = - db_owner = - sql_install = - long_read_len = 65536 - long_trunc_ok = 0 to: --- 86,93 ---- [datasource main] type = DBI ! dbi_type = ! dsn = username = password = to: *************** *** 106,118 **** [datasource main] type = DBI ! spops = SPOPS::DBI::SQLite ! driver_name = SQLite dsn = dbname=/PATH/TO/WEBSITE/oi2test.db username = password = - db_owner = - sql_install = - long_read_len = 65536 - long_trunc_ok = 0 B<Set session handler> --- 95,102 ---- [datasource main] type = DBI ! dbi_type = SQLite dsn = dbname=/PATH/TO/WEBSITE/oi2test.db username = password = B<Set session handler> |