Update of /cvsroot/xoops/xoops-current/html
In directory usw-pr-cvs1:/tmp/cvs-serv27397
Modified Files:
mainfile.php
Log Message:
no message
Index: mainfile.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/mainfile.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** mainfile.php 16 Jul 2002 08:09:30 -0000 1.2
--- mainfile.php 18 Sep 2002 11:01:04 -0000 1.3
***************
*** 24,62 ****
// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
! define("XOOPS_ROOT_PATH","/path/to/xoops/directory");
// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
! define("XOOPS_URL", "http://url_to_xoops_directory");
// Database
// Choose the database to be used
! $xoopsConfig['database'] = "mysql";
// Table Prefix
// This prefix will be added to all new tables created to avoid name conflict in the database. If you are unsure, just use the default 'xoops'.
! $xoopsConfig['prefix'] = "xoops";
// Database Hostname
// Hostname of the database server. If you are unsure, 'localhost' works in most cases.
! $xoopsConfig['dbhost'] = "localhost";
// Database Username
// Your database user account on the host
! $xoopsConfig['dbuname'] = "";
// Database Password
// Password for your database user account
! $xoopsConfig['dbpass'] = "";
// Database Name
// The name of database on the host. The installer will attempt to create the database if not exist
! $xoopsConfig['dbname'] = "";
// Use persistent connection? (Yes=1 No=0)
// Default is 'Yes'. Choose 'Yes' if you are unsure.
! $xoopsConfig['db_pconnect'] = 0;
! include(XOOPS_ROOT_PATH."/include/common.php");
}
--- 24,62 ----
// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
! define('XOOPS_ROOT_PATH', '/path/to/xoops/directory');
// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
! define('XOOPS_URL', 'http://url_to_xoops_directory');
// Database
// Choose the database to be used
! define('XOOPS_DB_TYPE', 'mysql');
// Table Prefix
// This prefix will be added to all new tables created to avoid name conflict in the database. If you are unsure, just use the default 'xoops'.
! define('XOOPS_DB_PREFIX', 'xoops');
// Database Hostname
// Hostname of the database server. If you are unsure, 'localhost' works in most cases.
! define('XOOPS_DB_HOST', 'localhost');
// Database Username
// Your database user account on the host
! define('XOOPS_DB_USER', '');
// Database Password
// Password for your database user account
! define('XOOPS_DB_PASS', '');
// Database Name
// The name of database on the host. The installer will attempt to create the database if not exist
! define('XOOPS_DB_NAME', '');
// Use persistent connection? (Yes=1 No=0)
// Default is 'Yes'. Choose 'Yes' if you are unsure.
! define('XOOPS_DB_PCONNECT', 0);
! include(XOOPS_ROOT_PATH.'/include/common.php');
}
|