Guest User

Untitled

a guest
Jul 18th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. global $project;
  2. $project = 'mysite';
  3.  
  4. global $databaseConfig;
  5. $databaseConfig = array(
  6. "type" => "MySQLDatabase",
  7. "server" => "localhost",
  8. "username" => "silverstripe",
  9. "password" => "homepage",
  10. "database" => "ss_silver",
  11. );
  12.  
  13. Director::set_dev_servers(array(
  14. 'localhost',
  15. '127.0.0.1',
  16. ));
  17. Director::set_environment_type("dev");
  18.  
  19. ContentNegotiator::set_encoding('utf-8');
  20.  
  21. Security::setDefaultAdmin("admin", "admin");
  22.  
  23. Email::setAdminEmail('your@email.com');
  24.  
  25. SSViewer::set_theme('blackcandy');
  26.  
  27. i18n::set_default_lang('en');
  28. i18n::set_locale('en_US');
Add Comment
Please, Sign In to add comment