XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
secure.dist.php
Go to the documentation of this file.
1 <?php
17 // Database
18 // Choose the database to be used
19 define("XOOPS_DB_TYPE", "mysql");
20 
21 // Set the database charset if applicable
22 if (defined("XOOPS_DB_CHARSET")) die('Restricted Access');
23 define("XOOPS_DB_CHARSET", "");
24 
25 // Table Prefix
26 // 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".
27 define("XOOPS_DB_PREFIX", "xoops");
28 
29 // Database Hostname
30 // Hostname of the database server. If you are unsure, "localhost" works in most cases.
31 define("XOOPS_DB_HOST", "localhost");
32 
33 // Database Username
34 // Your database user account on the host
35 define("XOOPS_DB_USER", "");
36 
37 // Database Password
38 // Password for your database user account
39 define("XOOPS_DB_PASS", "");
40 
41 // Database Name
42 // The name of database on the host. The installer will attempt to create the database if not exist
43 define("XOOPS_DB_NAME", "");
44 
45 // Use persistent connection? (Yes=1 No=0)
46 // Default is "Yes". Choose "Yes" if you are unsure.
47 define("XOOPS_DB_PCONNECT", 0);
48 
49 ?>