Advertisement
Guest User

Untitled

a guest
Feb 25th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Stores all data inside a database. It is database generic, the connexion to the database must be described in an array, see http://dibiphp.com/cs/ for more info on databases supported and configurations. A create.sql file is included to generate the necessary tables for storing users data.
  2.  
  3. The SQL_DRIVER option defined in the bootstrap_plugins.php file must be set with a "dibi" configuration that is PHP array like this :
  4.  
  5.  
  6. "SQL_DRIVER" => array(
  7. "driver" => "mysql",
  8. "host" => "localhost",
  9. "database" => "ajxp",
  10. "user" => "user",
  11. "password" => "pass",
  12. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement