Guest User

Untitled

a guest
May 30th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <?php
  2.  
  3. $server="mgmt"; // Most probably you won't need to change this
  4. $user="blahblah"; // The database user
  5. $password='duckssuckatflying'; // That user's password
  6. $db_name="cydiacrawler"; // The db name you want to use
  7. //$prefix = ''.'_'; // Prefix for all tables (optional)
  8.  
  9.  
  10. $table_repositories = 'repos';
  11. $table_packages = 'packages';
  12.  
  13. //$table_repositories = $prefix.'repos';
  14. //$table_packages = $prefix.'packages';
  15.  
  16.  
  17. // WARNING! THE BELOW "define" commands might NOT work on all servers.
  18. // If the parser doesn't work on your server comment out these definitions and un-comment the ones below them.
  19. // define('NEW_LINE',"\n");
  20. // define('DOUBLE_LINE',"\n\n");
  21.  
  22.  
  23. // IF THE PARSER DOESN'T WORK, UNCOMMENT THE FOLLOWING
  24.  
  25. define("NEW_LINE",'
  26. '); // This should remain divided into two lines.
  27. // Because different operating systems have different line break conventions.
  28. define("DOUBLE_LINE",'
  29.  
  30. ');
  31.  
  32.  
  33. // DO NOT MODIFY BELOW THIS LINE!
  34. // error_reporting(E_ERROR | E_PARSE);
  35. ?>
Add Comment
Please, Sign In to add comment