OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk/utf8@947...
[nucleus-jp/nucleus-jp-ancient.git] / config.php
index 1acc83a..4a4caad 100755 (executable)
 // and basic functions that every page can use
 
 // mySQL connection information
-$MYSQL_HOST = 'hostname';
-$MYSQL_USER = 'username';
+$MYSQL_HOST     = 'hostname';
+$MYSQL_USER     = 'username';
 $MYSQL_PASSWORD = 'password';
 $MYSQL_DATABASE = 'databasename';
-$MYSQL_PREFIX = '';
+$MYSQL_PREFIX   = '';
 
 // main nucleus directory
 $DIR_NUCLEUS = '/your/path/to/nucleus/';
 
 // media dir
-$DIR_MEDIA = '/your/path/to/media/';
+$DIR_MEDIA   = '/your/path/to/media/';
 
 // extra skin files for imported skins
-$DIR_SKINS = '/your/path/to/skins/';
+$DIR_SKINS   = '/your/path/to/skins/';
 
 // these dirs are normally subdirs of the nucleus dir, but
 // you can redefine them if you wish
 $DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';
-$DIR_LANG = $DIR_NUCLEUS . 'language/';
-$DIR_LIBS = $DIR_NUCLEUS . 'libs/';
+$DIR_LANG    = $DIR_NUCLEUS . 'language/';
+$DIR_LIBS    = $DIR_NUCLEUS . 'libs/';
 
 if (!@file_exists($DIR_LIBS . 'globalfunctions.php')) {
-       echo "Configuration error, please run the install script or modify config.php";
+       echo 'Configuration error, please run the <a href="install.php">install script</a> or modify config.php';
        exit;
 }