Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 3rd, 2012  |  syntax: PHP  |  size: 1.56 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. /////////////////////////
  3. /////Config File///////
  4. //Coded By Secured///
  5. ///////////////////
  6.  
  7. $config['host']    = ""; // your sql instance
  8. $config['user']    = ""; // username
  9. $config['pw']      = ""; // password
  10. $config['db']      = ""; // db
  11. $config['key']     = "2011"; // your md5 key
  12.  
  13. //Tite of your Site( will appear in copyright footer)
  14. $config['title']   = "Site Title"; //Site Title
  15.  
  16. //colors (use only text names or hex color codes including "#")
  17. $config['ecolor']  = "red"; //Error Color
  18. $config['scolor']  = "green"; //Success Color
  19.  
  20. //Error Text (Can be left NULL (Blank))
  21. $config['euname']  = "Username Must be 4-25 Characters."; //Missing Username or Length not long enough(4-25)
  22. $config['nameex']  = "The Selected Username Already Exists."; //UserName Exsists
  23. $config['epass']   = "Password Must be 5-25 Characters."; //Pass Missing or Length not long enough(5-25)
  24. $config['eage']    = "Age Must be 1-3 Characters."; //age Missing or Length not long enough(1-2)
  25. $config['vage']    = "Age should only be Numeric!"; //Age is not valid. (Meaning its something other than numbers.
  26. $config['ecaptcha']    = "Captcha Code Seems to be Incorrect!"; //Captcha Code is Incorrect
  27.  
  28. //On Register Success Message
  29. //You can use {user} {pass} {age} to make your message more spify it will replace it
  30. //the actual var.
  31. $config['success'] = "Registration Was Successful, {user}! Thanks for Joining";
  32. //Ex: Registration Was Successful, Secured! Thanks for Joining!
  33.  
  34. //NOTE: Additional Configuration for Capcha Can be found in "inc/captcha/captcha.inc.php"!
  35. ?>