1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

Comments in configs

This commit is contained in:
Savetheinternet 2010-11-05 01:02:13 +11:00
parent 05dd518cb9
commit 0296a7666f
2 changed files with 34 additions and 0 deletions

View File

@ -1,4 +1,19 @@
<?php
/*
* .d88888b d888888P .88888. 888888ba
* 88. "' 88 d8' `8b 88 `8b
* `Y88888b. 88 88 88 a88aaaa8P'
* `8b 88 88 88 88
* d8' .8P 88 Y8. .8P 88
* Y88888P dP `8888P' dP
*
* Do not edit this file. Edit instance-config instead!
*
* This is the default configuration. You can copy values from here and use them in
* your instance-config.php
*
*/
// Database stuff
define('MY_SERVER', 'localhost', true);

19
inc/instance-config.php Normal file
View File

@ -0,0 +1,19 @@
<?php
/*
* Instance Configuration
* ----------------------
* Edit this file and not config.php for imageboard configuration.
*
* You can copy values from config.php (defaults) and paste them here.
*/
/*
define('MY_SERVER', 'localhost', true);
define('MY_USER', '', true);
define('MY_PASSWORD', '', true);
define('MY_DATABASE', '', true);
// define('FOO', 'bar');
*/
?>