diff options
Diffstat (limited to 'scire/.lib/config.php.example')
-rw-r--r-- | scire/.lib/config.php.example | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scire/.lib/config.php.example b/scire/.lib/config.php.example new file mode 100644 index 0000000..f9b4674 --- /dev/null +++ b/scire/.lib/config.php.example @@ -0,0 +1,25 @@ +<?php + +# Base directory +$basedir = '/var/www/localhost/htdocs/scire/'; + +# Base URL +$baseurl = '/scire/'; + +# Database +$db_name = 'scire'; +$db_host = 'localhost'; +$db_username = 'USERNAME GOES HERE'; +$db_password = 'PASSWORD GOES HERE'; +$db_sessions_table = 'sessions'; + +# ADOdb path +$ADOdb_path = '/usr/share/php5/adodb/'; +$db_type = 'mysql'; + +# Smarty directory +$smarty_dir = '/usr/share/php/smarty/'; + +# Permissions filter +$scire_ui_section = "scire_ui"; +?> |