[Astrospaces-commits] SF.net SVN: astrospaces: [77] trunk/config.php
Brought to you by:
p3net
From: <p3...@us...> - 2007-07-31 04:09:07
|
Revision: 77 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=77&view=rev Author: p3net Date: 2007-07-30 21:09:10 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Don't make me lock this file Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 04:06:36 UTC (rev 76) +++ trunk/config.php 2007-07-31 04:09:10 UTC (rev 77) @@ -1,6 +1,44 @@ -<?php -/* Stupid file keeps screwing up */ +<?php /* These settings are autogenerated by AstroSPACES + do not change them unless you know what you are + doing! +*/ +define('AS_DB_TYPE', 'mysql'); +define('AS_DB_PREFIX', 'as_'); +define('AS_DB_HOST', 'localhost'); +define('AS_DB_SCHEMA', 'schema'); +define('AS_DB_USER', 'user'); +define('AS_DB_PASS', 'pass'); + +define('AS_EXT', '.php'); +define('AS_LANG', 'en-us'); + +define('AS_LOC_URL', 'http://localhost/'); +define('AS_LOC_DIRECT', 'C:/path/to/astrospaces/'); + +/* These settings are constants and must NOT + be altered. Doing so will prevent AstroSPACES + from functioning. +*/ +define('AS_TBL_USER', AS_DB_PREFIX.'user'); +define('AS_TBL_BLOG', AS_DB_PREFIX.'blog'); +define('AS_TBL_BLOG_CMT', AS_DB_PREFIX.'blog_comments'); +define('AS_TBL_COMMENTS', AS_DB_PREFIX.'comments'); +define('AS_TBL_FRIEND', AS_DB_PREFIX.'friends'); +define('AS_TBL_IMG', AS_DB_PREFIX.'images'); +define('AS_TBL_IMG_CMT', AS_DB_PREFIX.'image_comments'); +define('AS_TBL_ACTION', AS_DB_PREFIX.'actions'); +define('AS_TBL_CMT', AS_DB_PREFIX.'comments'); +define('AS_TBL_SESSION', AS_DB_PREFIX.'sessions'); +define('AS_TBL_PM', AS_DB_PREFIX.'private_messages'); + +define('AS_DIR_TPL', 'template/'); +define('AS_TPL', AS_LOC_URL.AS_DIR_TPL.'default/'); + + +======= +<?php +/* These settings are autogenerated by AstroSPACES do not change them unless if you have instructions stating that these values should be changed. */ @@ -34,5 +72,5 @@ define('AS_TBL_GRP_RES', AS_DB_PREFIX.'group_resolver'); define('AS_DIR_TPL', 'template/'); -define('AS_TPL', AS_LOC_URL.AS_DIR_TPL.'default/'); +define('AS_TPL', AS_LOC_URL.AS_DIR_TPL.'default/'); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |