Guest User

Untitled

a guest
Oct 6th, 2017
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. $dbhost = "localhost";
  4. $dbuser = "test_faucet";
  5. $dbpass = "test_pass";
  6. $dbname = "test_faucet";
  7. $display_errors = false;
  8. $disable_admin_panel = false;
  9.  
  10. $connection_options = array(
  11. 'disable_curl' => false,
  12. 'local_cafile' => false,
  13. 'force_ipv4' => false // cURL only
  14. );
  15.  
  16. // dsn - Data Source Name
  17. // if you use MySQL, leave it as is
  18. // more information:
  19. // http://php.net/manual/en/pdo.construct.php
  20. $dbdsn = "mysql:host=$dbhost;dbname=$dbname";
Add Comment
Please, Sign In to add comment