Advertisement
Guest User

Untitled

a guest
May 2nd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <?php
  2. /* Data base details */
  3. $dsn='mysql:host=localhost;dbname=pse'; //DSN
  4. $db_user='root'; //DB username
  5. $db_pass=''; //DB password
  6. $driver='Custom'; //Integration driver
  7. $db_prefix=''; //prefix used for tables in database
  8. $uid='590831e878eff'; //Any random unique number
  9.  
  10. $connected='YES'; //only for custom installation
  11.  
  12. $PATH = 'freichat/'; // Use this only if you have placed the freichat folder somewhere else
  13. $installed=true; //make it false if you want to reinstall freichat
  14. $admin_pswd='kosim123'; //backend password
  15.  
  16. $debug = false;
  17. $custom_error_handling='YES'; // used during custom installation
  18.  
  19. $use_cookie='false';
  20.  
  21. /* email plugin */
  22. $smtp_username = '';
  23. $smtp_password = '';
  24.  
  25. $force_load_jquery = 'NO';
  26.  
  27. /* Custom driver */
  28. $usertable='user'; //specifies the name of the table in which your user information is stored.
  29. $row_username='nama'; //specifies the name of the field in which the user's name/display name is stored.
  30. $row_userid='fbid'; //specifies the name of the field in which the user's id is stored (usually id or userid)
  31.  
  32.  
  33. $avatar_table_name='members'; //specifies the table where avatar information is stored
  34. $avatar_column_name='avatar'; //specifies the column name where the avatar url is stored
  35. $avatar_userid='id'; //specifies the userid to the user to get the user's avatar
  36. $avatar_reference_user='id'; //specifies the reference to the user to get the user's avatar in user table
  37. $avatar_reference_avatar='id'; //specifies the reference to the user to get the user's avatar in avatar
  38. $avatar_field_name=$avatar_column_name; //to avoid unnecessary file changes , *do not change
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement