Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2. session_start();
  3. header('Content-Type: text/html; charset=utf-8');
  4. ini_set('magic_quotes_gpc', 0);
  5. $ospartner = "OpenSim Partner";
  6. $version = "0.2";
  7. $debug = TRUE;
  8.  
  9. //setting provided for dreamgrid
  10. $dbhost = "localhost"; // if you host this page on same computer as running robust ( or opensim stand alone )
  11. $dbuser = "vlad"; // the same database name that you use in robust.ini settings ( or commun.ini in stand alone )
  12. $dbpass = "yrmusjcm49390"; // the same pass you use in robust.ini ( or commun.ini stand alone )
  13. $dbname = "robust"; // the same name you use in robust.ini ( or commun.ini stand alone )
  14. /*
  15. the above information is found in [DatabaseService] section of Robust.ini or GridCommon.ini for standalone.
  16. Where database include the userprofil table.
  17. */
  18.  
  19.  
  20. $useTheme = FALSE;
  21. /* Navbar Style */
  22. // navbar
  23. // navbar-btn
  24. // navbar-form
  25. // navbar-left
  26. // navbar-right
  27. // navbar-default
  28. // navbar-inverse
  29. // navbar-collapse
  30. // navbar-fixed-top
  31. // navbar-fixed-bottom
  32. $CLASS_NAVBAR = "navbar navbar-default";
  33. $CLASS_ORDERBY_NAVBAR = "navbar navbar-default";
  34.  
  35. /* Nav Style */
  36. // nav
  37. // nav-tabs
  38. // nav-pills
  39. // navbar-nav
  40. // nav-stacked
  41. // nav-justified
  42. $CLASS_NAV = "nav navbar-nav";
  43. $CLASS_ORDERBY_NAV = "nav navbar-nav";
  44. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement