選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

config.php.new 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. ###############################################
  3. ### G-CMS Community Framework ###
  4. ### (c) by Marcel Völkel ###
  5. ### http://www.scav-media.com ###
  6. ###############################################
  7. /*
  8. * MAIN CONFIGURATION
  9. * MYSQL VERBINDUNGSDATEN UND ANDERER SCHNICKSCHNACK
  10. */
  11. ##DATABASE EXTENSION
  12. $config['dbext'] = 'mysql';
  13. ##Mysql HOST Name
  14. $config['server'] = 'localhost';
  15. ##MySQL Benutzer
  16. $config['mysqluser'] = 'dbuser';
  17. ##MySQL Kennwort
  18. $config['mysqlpass'] = 'dbpassword';
  19. ##MySQL Datenbankname
  20. $config['mysqldbname'] = 'dbname';
  21. /**
  22. * Technical COntact Information
  23. */
  24. $config['techmail'] = 'techmail';
  25. /**
  26. * DEBUG
  27. * if $config['debug'] = 1; then the Debug operations are on and Stacktraced Error Messages will be visible
  28. * 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
  29. * Parameter ?debug=1 has the same effect as the setting in the Config file.
  30. */
  31. $config['debug'] = 1;