12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- ###############################################
- ### G-CMS Community Framework ###
- ### (c) by Marcel Völkel ###
- ### http://www.scav-media.com ###
- ###############################################
-
- /*
- * MAIN CONFIGURATION
- * MYSQL VERBINDUNGSDATEN UND ANDERER SCHNICKSCHNACK
- */
-
- ##DATABASE EXTENSION
- $config['dbext'] = 'mysql';
-
- ##Mysql HOST Name
- $config['server'] = 'localhost';
-
- ##MySQL Benutzer
- $config['mysqluser'] = 'dbuser';
-
- ##MySQL Kennwort
- $config['mysqlpass'] = 'dbpassword';
-
- ##MySQL Datenbankname
- $config['mysqldbname'] = 'dbname';
-
-
- /**
- * Technical COntact Information
- */
- $config['techmail'] = 'techmail';
-
- /**
- * DEBUG
- * if $config['debug'] = 1; then the Debug operations are on and Stacktraced Error Messages will be visible
- * if $config['debug'] = 0; then the Debug Messages are off and no errors will be visible. But you can enable them via URL Parameter ?debug=1
- * Parameter ?debug=1 has the same effect as the setting in the Config file.
- */
- $config['debug'] = 1;
|