|
From: <al...@us...> - 2008-10-22 20:06:56
|
Revision: 749
http://sciret.svn.sourceforge.net/sciret/?rev=749&view=rev
Author: alpeb
Date: 2008-10-22 20:06:36 +0000 (Wed, 22 Oct 2008)
Log Message:
-----------
provide the sample config file
Added Paths:
-----------
trunk/config.ini.php
Removed Paths:
-------------
trunk/config.ini.php.template
Property Changed:
----------------
trunk/
Property changes on: trunk
___________________________________________________________________
Modified: svn:ignore
- config.ini.php
log.txt
nbproject
+ log.txt
Added: trunk/config.ini.php
===================================================================
--- trunk/config.ini.php (rev 0)
+++ trunk/config.ini.php 2008-10-22 20:06:36 UTC (rev 749)
@@ -0,0 +1,28 @@
+<?php
+
+ return array (
+ 'environment' =>
+ array (
+ 'session_name' => 'SCIRET',
+ 'production' => true,
+ 'loglevel' => 0,
+ ),
+ 'general' =>
+ array (
+ 'slowdown_secs' => 0,
+ 'language_default' => 'English',
+ ),
+ 'database' =>
+ array (
+ 'adapter' => 'mysqli',
+ 'params' =>
+ array (
+ 'host' => 'localhost',
+ 'dbname' => 'sciret_trunk',
+ 'username' => 'root',
+ 'password' => '',
+ ),
+ ),
+);
+
+?>
Deleted: trunk/config.ini.php.template
===================================================================
--- trunk/config.ini.php.template 2008-10-22 20:03:26 UTC (rev 748)
+++ trunk/config.ini.php.template 2008-10-22 20:06:36 UTC (rev 749)
@@ -1,28 +0,0 @@
-<?php
-
- return array (
- 'environment' =>
- array (
- 'session_name' => 'SCIRET',
- 'production' => true,
- 'loglevel' => 0,
- ),
- 'general' =>
- array (
- 'slowdown_secs' => 0,
- 'language_default' => 'English',
- ),
- 'database' =>
- array (
- 'adapter' => 'mysqli',
- '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.
|