Advertisement
Guest User

Untitled

a guest
Mar 17th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Config.php
  2.  
  3. $ Mysql_provision_host = "149.91.81.203";
  4.  
  5. // The quota limits database username.
  6. $ Mysql_provision_username = "worlpad";
  7.  
  8. // The quota limits database password.
  9. $ Mysql_provision_password = "T !! FSAD";
  10.  
  11.  
  12. // The quota limitations database.
  13. $ Mysql_provision_database = "Evoluheberg";
  14.  
  15. // The quota limitations table
  16. $ Mysql_provision_table = "Quota";
  17. // The prefix to be Appended before the username. Only Applies to provisioned databases.
  18. Mysql_provision_prefix $ = "";
  19.  
  20. // Whether limits shoulds be Assigned or not.
  21. $ Mysql_provision_assignLimit = false;
  22.  
  23.  
  24. db_check.php
  25.  
  26. $mysql_host = "149.91.81.203";
  27. $mysql_user = "worlpad"; //Use root unless you setup the correct grants.
  28. $mysql_pass = "T!!FSAD";
  29. $mysql_db = "Evoluheberg"; //The database which contains the below table.
  30. $mysql_table = "Quota"; //This table should be setup according to the statement provided..
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement