Advertisement
Guest User

Untitled

a guest
Apr 25th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Database_Exception [ 2 ]: mysql_connect(): [2002] No such file or directory (trying to connect via unix:///tmp/mysql.sock) ~ MODPATH/database/classes/kohana/database/mysql.php [ 67 ]
  2.  
  3. application
  4. --bootstrap.php
  5. modules
  6. content
  7. --index.php
  8. system
  9.  
  10. $database_config = array
  11. (
  12. 'default' => array
  13. (
  14. 'type' => 'mysql',
  15. 'connection' => array(
  16. 'hostname' => 'localhost',
  17. 'database' => 'driverslife',
  18. 'username' => 'root',
  19. 'password' => 'root',
  20. 'persistent' => FALSE,
  21. 'port' => 8889
  22. ),
  23. 'table_prefix' => '',
  24. 'charset' => 'utf8',
  25. 'caching' => FALSE,
  26. 'profiling' => TRUE,
  27. ),
  28. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement