Advertisement
Guest User

Untitled

a guest
Jul 11th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  * Coded by `P R O D I G Y™
  5.  * @copyright 2011 - InterBB
  6.  * This source is released as free, under the GNU-GPL License.
  7.  */
  8.  
  9. $file = basename(__FILE__);
  10. if(eregi($file,$_SERVER['REQUEST_URI'])) {
  11.     die("Sorry but you cannot access this file directly for security reasons.");
  12. }
  13.  
  14. // mySQL Database Connection Details \\
  15.  
  16. $dbHost = "localhost";      // EX: 127.0.0.1
  17. $dbUser = "root";           // EX: cPanelUser_dbUser
  18. $dbPass = "";               // EX: databasepass123
  19. $dbPrefix = "";             // EX: prefix_
  20. $dbSelect = "InterFORUM";   // EX: cPanelUser_dbName
  21.  
  22. // Common variable configuration booleans \\
  23.  
  24. $useBadWords = true;        // True/false boolean to use the badwords filter
  25. $useSmilies = true;         // The true/false boolean to use the smilies system
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement