XOOPS  2.6.0
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 define("XOOPS_DB_CHARSET", "");
23 
24 // Table Prefix
25 // 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".
26 define("XOOPS_DB_PREFIX", "xoops");
27 
28 // Database Hostname
29 // Hostname of the database server. If you are unsure, "localhost" works in most cases.
30 define("XOOPS_DB_HOST", "localhost");
31 
32 // Database Username
33 // Your database user account on the host
34 define("XOOPS_DB_USER", "");
35 
36 // Database Password
37 // Password for your database user account
38 define("XOOPS_DB_PASS", "");
39 
40 // Database Name
41 // The name of database on the host.
42 define("XOOPS_DB_NAME", "");
43 
44 // Use persistent connection? (Yes=1 No=0)
45 // Default is "No". Choose "No" if you are unsure.
46 define("XOOPS_DB_PCONNECT", 0);
47 
48 // Serialized connection parameter
49 // This is built by the installer and includes all connection parameters
50 define("XOOPS_DB_PARAMETERS", "");
51 
52 ?>