Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. 'Datasources' => [
  2. 'default' => [
  3. 'className' => 'CakeDatabaseConnection',
  4. 'driver' => 'CakeDatabaseDriverMysql',
  5. 'persistent' => false,
  6. 'host' => 'https://192.168.1.19',
  7. /**
  8. * CakePHP will use the default DB port based on the driver selected
  9. * MySQL on MAMP uses port 8889, MAMP users will want to uncomment
  10. * the following line and set the port accordingly
  11. */
  12. 'port' => '3306',
  13. 'username' => '****',
  14. 'password' => '******',
  15. 'database' => '********',
  16. 'encoding' => 'utf8',
  17. 'timezone' => 'UTC',
  18. 'flags' => [],
  19. 'cacheMetadata' => true,
  20. 'log' => false,
  21. ],
  22. /*Other configs*/
  23. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement