From: <al...@us...> - 2008-08-19 22:33:27
|
Revision: 612 http://sciret.svn.sourceforge.net/sciret/?rev=612&view=rev Author: alpeb Date: 2008-08-19 22:33:25 +0000 (Tue, 19 Aug 2008) Log Message: ----------- replaced config.ini with config.ini.php to avoid access Added Paths: ----------- trunk/config.ini.php Removed Paths: ------------- trunk/config.ini Deleted: trunk/config.ini =================================================================== --- trunk/config.ini 2008-08-19 22:32:30 UTC (rev 611) +++ trunk/config.ini 2008-08-19 22:33:25 UTC (rev 612) @@ -1,10 +0,0 @@ -[general] -slowdown_secs = 0 -language_default = "English" - -[database] -adapter = pdo_mysql -params.host = localhost -params.dbname = monkeys -params.username = root -params.password = Added: trunk/config.ini.php =================================================================== --- trunk/config.ini.php (rev 0) +++ trunk/config.ini.php 2008-08-19 22:33:25 UTC (rev 612) @@ -0,0 +1,27 @@ +<?php + + return array ( + 'environment' => + array ( + 'production' => false, + 'loglevel' => 0, + ), + 'general' => + array ( + 'slowdown_secs' => 0, + 'language_default' => 'English', + ), + 'database' => + array ( + 'adapter' => 'pdo_mysql', + 'params' => + array ( + 'host' => 'localhost', + 'dbname' => 'sciret_trunk', + 'username' => 'root', + 'password' => '', + ), + ), +); + +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |