Advertisement
Guest User

Untitled

a guest
Oct 28th, 2015
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2.  
  3. /* What kind of environment is this: development, test, or live (ie, production)? */
  4. define('SS_ENVIRONMENT_TYPE', 'dev');
  5.  
  6. // These four define set the database connection details.
  7. define('SS_DATABASE_CLASS', 'MySQLPDODatabase');
  8. define('SS_DATABASE_SERVER', 'localhost');
  9. define('SS_DATABASE_USERNAME', 'root');
  10. define('SS_DATABASE_PASSWORD', 'root');
  11. define('SS_DATABASE_NAME', 'deefuse-compta');
  12.  
  13.  
  14.  
  15. /* Configure a default username and password to access the CMS on all sites in this environment. */
  16. define('SS_DEFAULT_ADMIN_USERNAME', 'admin');
  17. define('SS_DEFAULT_ADMIN_PASSWORD', 'admin');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement