Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?php
  2. // mySQL connection information
  3. $MYSQL_HOST = 'localhost';
  4. $MYSQL_USER = 'root';
  5. $MYSQL_PASSWORD = 'xxxxxxxxxxx';
  6. $MYSQL_DATABASE = 'nucleus';
  7. $MYSQL_PREFIX = '';
  8.  
  9. // new in 3.50. first element is db handler, the second is the db driver used by the handler
  10. // default is $MYSQL_HANDLER = array('mysql','mysql');
  11. //$MYSQL_HANDLER = array('mysql','mysql');
  12. //$MYSQL_HANDLER = array('pdo','mysql');
  13. $MYSQL_HANDLER = array('mysql','');
  14.  
  15. // main nucleus directory
  16. $DIR_NUCLEUS = '/var/www/webapps/nucleus3.61/nucleus/';
  17.  
  18. // path to media dir
  19. $DIR_MEDIA = '/var/www/webapps/nucleus3.61/media/';
  20.  
  21. // extra skin files for imported skins
  22. $DIR_SKINS = '/var/www/webapps/nucleus3.61/skins/';
  23.  
  24. // these dirs are normally sub dirs of the nucleus dir, but
  25. // you can redefine them if you wish
  26. $DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';
  27. $DIR_LANG = $DIR_NUCLEUS . 'language/';
  28. $DIR_LIBS = $DIR_NUCLEUS . 'libs/';
  29.  
  30. // include libs
  31. include($DIR_LIBS.'globalfunctions.php');
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement