home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / config.php < prev    next >
PHP Script  |  2004-08-23  |  4KB  |  118 lines

  1. <?php
  2.  
  3. ######################################################################
  4. # PHP-NUKE: Advanced Content Management System
  5. # ============================================
  6. #
  7. # Copyright (c) 2002 by Francisco Burzi (fbc@mandrakesoft.com)
  8. # http://phpnuke.org
  9. #
  10. # This module is to configure the main options for your site
  11. #
  12. # This program is free software. You can redistribute it and/or modify
  13. # it under the terms of the GNU General Public License as published by
  14. # the Free Software Foundation; either version 2 of the License.
  15. ######################################################################
  16.  
  17. ######################################################################
  18. # Database & System Config
  19. #
  20. # dbhost:       SQL Database Hostname
  21. # dbuname:      SQL Username
  22. # dbpass:       SQL Password
  23. # dbname:       SQL Database Name
  24. # $prefix:      Your Database table's prefix
  25. # $user_prefix: Your Users' Database table's prefix (To share it)
  26. # $dbtype:      Your Database Server type. Supported servers are:
  27. #               MySQL, mysql4, postgres, mssql, oracle, msaccess,
  28. #               db2 and mssql-odbc
  29. #               Be sure to write it exactly as above, case SeNsItIvE!
  30. # $sitekey:    Security Key. CHANGE it to whatever you want, as long
  31. #               as you want. Just don't use quotes.
  32. # $gfx_chk:    Set the graphic security code on every login screen,
  33. #        You need to have GD extension installed:
  34. #        0: No check
  35. #        1: Administrators login only
  36. #        2: Users login only
  37. #        3: New users registration only
  38. #        4: Both, users login and new users registration only
  39. #        5: Administrators and users login only
  40. #        6: Administrators and new users registration only
  41. #        7: Everywhere on all login options (Admins and Users)
  42. #        NOTE: If you aren't sure set this value to 0
  43. # $subscription_url : If you manage subscriptions on your site, you
  44. #                     must write here the url of the subscription
  45. #                     information/renewal page. This will send by
  46. #                     email if set.
  47. ######################################################################
  48.  
  49. $dbhost = "localhost";
  50. $dbuname = "root";
  51. $dbpass = "";
  52. $dbname = "nuke";
  53. $prefix = "nuke";
  54. $user_prefix = "nuke";
  55. $dbtype = "MySQL";
  56. $sitekey = "SdFk*fa28367-dm56w69.3a2fDS+e9";
  57. $gfx_chk = 0;
  58. $subscription_url = "";
  59.  
  60. /*********************************************************************/
  61. /* You finished to configure the Database. Now you can change all    */
  62. /* you want in the Administration Section.   To enter just launch    */
  63. /* you web browser pointing to http://yourdomain.com/admin.php       */
  64. /*                                                                   */
  65. /* Remeber to go to Settings section where you can configure your    */
  66. /* new site. In that menu you can change all you need to change.     */
  67. /*                                                                   */
  68. /* Congratulations! now you have an automated news portal!           */
  69. /* Thanks for choose PHP-Nuke: The Future of the Web                 */
  70. /*********************************************************************/
  71.  
  72. // DO NOT TOUCH ANYTHING BELOW THIS LINE UNTIL YOU KNOW WHAT YOU'RE DOING
  73.  
  74. $reasons = array("As Is",
  75.             "Offtopic",
  76.             "Flamebait",
  77.             "Troll",
  78.             "Redundant",
  79.             "Insighful",
  80.             "Interesting",
  81.             "Informative",
  82.             "Funny",
  83.             "Overrated",
  84.             "Underrated");
  85. $badreasons = 4;
  86. $AllowableHTML = array("b"=>1,
  87.             "i"=>1,
  88.             "a"=>2,
  89.             "em"=>1,
  90.             "br"=>1,
  91.             "strong"=>1,
  92.             "blockquote"=>1,
  93.                     "tt"=>1,
  94.                     "li"=>1,
  95.                     "ol"=>1,
  96.                     "ul"=>1);
  97. $CensorList = array("fuck",
  98.             "cunt",
  99.             "fucker",
  100.             "fucking",
  101.             "pussy",
  102.             "cock",
  103.             "c0ck",
  104.             "cum",
  105.             "twat",
  106.             "clit",
  107.             "bitch",
  108.             "fuk",
  109.             "fuking",
  110.             "motherfucker");
  111. $tipath = "images/topics/";
  112. if (eregi("config.php",$_SERVER['PHP_SELF'])) {
  113.     Header("Location: index.php");
  114.     die();
  115. }
  116.  
  117. ?>
  118.