Advertisement
tjromano

Config.php

Sep 9th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.16 KB | None | 0 0
  1. <?php
  2. /*
  3.  * This is a PHP Secure login system.
  4.  */
  5. //Define MySQL database parameters
  6.  
  7. $username = "cfauser";
  8. $password = "Me!happy";
  9. $hostname = "localhost";
  10. $database = "cfa";
  11.  
  12. //Define your canonical domain including trailing slash!, example:
  13. $domain= "http://www.chfaloanct.com";
  14.  
  15. //Define sending email notification to webmaster
  16.  
  17. $subject='New user registration notification';
  18. $from='From: www.chfaloanct.com/cfa/';
  19.  
  20. //Define length of salt,minimum=10, maximum=35
  21. $length_salt=15;
  22.  
  23. //Define the maximum number of failed attempts to ban brute force attackers
  24. //minimum is 5
  25. $maxfailedattempt=5;
  26.  
  27. //Define session timeout in seconds
  28. //minimum 60 (for one minute)
  29. $sessiontimeout=180;
  30.  
  31. ////////////////////////////////////
  32. //END OF USER CONFIGURATION/////////
  33. ////////////////////////////////////
  34.  
  35. //DO NOT EDIT ANYTHING BELOW!
  36.  
  37. $dbhandle = mysql_connect($hostname, $username, $password)
  38.  or die("Unable to connect to MySQL");
  39. $selected = mysql_select_db($database,$dbhandle)
  40. or die("Could not select $database");
  41. $loginpage_url= $domain.'/leads/login.php';
  42. $forbidden_url= $domain.'403forbidden.php';
  43. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement