Thread: [Astrospaces-commits] SF.net SVN: astrospaces: [25] trunk/config.php
Brought to you by:
p3net
From: <cal...@us...> - 2007-07-30 03:03:40
|
Revision: 25 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=25&view=rev Author: caleb870 Date: 2007-07-29 20:03:43 -0700 (Sun, 29 Jul 2007) Log Message: ----------- Just a little clean-up and reformatting of the configuration file. I'll try to change the calls to the settings shortly hopefully. Added Paths: ----------- trunk/config.php Added: trunk/config.php =================================================================== --- trunk/config.php (rev 0) +++ trunk/config.php 2007-07-30 03:03:43 UTC (rev 25) @@ -0,0 +1,34 @@ +<?php +/* Old-style +$db_info = array( + 'user' => '', + 'pass' => '', + 'host' => '', + 'name' => '' + ); +*/ +global $_AS; +$_AS['ext'] = '.php'; +$_AS['lang'] = 'en-us'; + +$_AS['db_type'] = 'mysql'; // Needed for ADOdb. +$_AS['db_prefix'] = 'as_'; +$_AS['db_host'] = 'localhost'; +$_AS['db_user'] = 'username'; +$_AS['db_pass'] = 'password'; +$_AS['db_schema'] = 'schema'; + +$_AS['loc_url'] = 'http://localhost/'; +$_AS['loc_direct'] = 'C:/path/to/astrospaces/'; + +$_AS['tbl_user'] = $_AS['db_prefix'].'user'; +$_AS['tbl_blog'] = $_AS['db_prefix'].'blog'; +$_AS['tbl_blog_comment'] = $_AS['db_prefix'].'blog_comments'; +$_AS['tbl_friend'] = $_AS['db_prefix'].'friend'; +$_AS['tbl_img'] = $_AS['db_prefix'].'images'; +$_AS['tbl_img_comment'] = $_AS['db_prefix'].'image_comments'; +$_AS['tbl_actions'] = $_AS['db_prefix'].'actions'; +$_AS['tbl_comments'] = $_AS['db_prefix'].'comments'; +$_AS['tbl_sessions'] = $_AS['db_prefix'].'sessions'; +$_AS['tbl_pm'] = $_AS['db_prefix'].'pm'; +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cal...@us...> - 2007-07-30 03:16:52
|
Revision: 24 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=24&view=rev Author: caleb870 Date: 2007-07-29 20:03:31 -0700 (Sun, 29 Jul 2007) Log Message: ----------- Removed file/folder Removed Paths: ------------- trunk/config.php Deleted: trunk/config.php =================================================================== --- trunk/config.php 2007-07-29 21:01:52 UTC (rev 23) +++ trunk/config.php 2007-07-30 03:03:31 UTC (rev 24) @@ -1,8 +0,0 @@ -<?php -$db_info = array( - 'user' => '', - 'pass' => '', - 'host' => '', - 'name' => '' - ); -?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cal...@us...> - 2007-07-30 04:53:43
|
Revision: 37 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=37&view=rev Author: caleb870 Date: 2007-07-29 21:53:45 -0700 (Sun, 29 Jul 2007) Log Message: ----------- Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-30 03:24:55 UTC (rev 36) +++ trunk/config.php 2007-07-30 04:53:45 UTC (rev 37) @@ -7,28 +7,30 @@ 'name' => '' ); */ -global $_AS; -$_AS['ext'] = '.php'; -$_AS['lang'] = 'en-us'; +define('AS_EXT', '.php'); +define('AS_LANG', 'en-us'); -$_AS['db_type'] = 'mysql'; // Needed for ADOdb. -$_AS['db_prefix'] = 'as_'; -$_AS['db_host'] = 'localhost'; -$_AS['db_user'] = 'username'; -$_AS['db_pass'] = 'password'; -$_AS['db_schema'] = 'schema'; +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'); -$_AS['loc_url'] = 'http://localhost/'; -$_AS['loc_direct'] = 'C:/path/to/astrospaces/'; +define('AS_LOC_URL', AS_DB_PREFIX.'http://localhost/'); +define('AS_LOC_DIRECT', AS_DB_PREFIX.'C:/path/to/astrospaces/'); -$_AS['tbl_user'] = $_AS['db_prefix'].'user'; -$_AS['tbl_blog'] = $_AS['db_prefix'].'blog'; -$_AS['tbl_blog_comment'] = $_AS['db_prefix'].'blog_comments'; -$_AS['tbl_friend'] = $_AS['db_prefix'].'friend'; -$_AS['tbl_img'] = $_AS['db_prefix'].'images'; -$_AS['tbl_img_comment'] = $_AS['db_prefix'].'image_comments'; -$_AS['tbl_actions'] = $_AS['db_prefix'].'actions'; -$_AS['tbl_comments'] = $_AS['db_prefix'].'comments'; -$_AS['tbl_sessions'] = $_AS['db_prefix'].'sessions'; -$_AS['tbl_pm'] = $_AS['db_prefix'].'pm'; +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_FRIEND', AS_DB_PREFIX.'friend'); +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.'pm'); + +define('AS_DIR_TPL', 'template/'); +define('AS_TPL', AS_LOC_URL.AS_DIR_TPL); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cal...@us...> - 2007-07-30 20:16:11
|
Revision: 44 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=44&view=rev Author: caleb870 Date: 2007-07-30 13:16:14 -0700 (Mon, 30 Jul 2007) Log Message: ----------- A small fix for an error I made in the configuration file, which was that I put the prefix for the DB tables as a prefix for the directory declarations accidentally. Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-30 20:02:42 UTC (rev 43) +++ trunk/config.php 2007-07-30 20:16:14 UTC (rev 44) @@ -13,8 +13,8 @@ define('AS_EXT', '.php'); define('AS_LANG', 'en-us'); -define('AS_LOC_URL', AS_DB_PREFIX.'http://localhost/'); -define('AS_LOC_DIRECT', AS_DB_PREFIX.'C:/path/to/astrospaces/'); +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 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <p3...@us...> - 2007-07-31 03:06:57
|
Revision: 73 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=73&view=rev Author: p3net Date: 2007-07-30 20:06:58 -0700 (Mon, 30 Jul 2007) Log Message: ----------- What did you do to my config file *slap* Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 03:05:24 UTC (rev 72) +++ trunk/config.php 2007-07-31 03:06:58 UTC (rev 73) @@ -1,3 +1,43 @@ +<<<<<<< .mine +<?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 @@ -36,4 +76,5 @@ define('AS_TPL', AS_LOC_URL.AS_DIR_TPL.'default/'); +>>>>>>> .r71 ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <p3...@us...> - 2007-07-31 03:08:04
|
Revision: 74 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=74&view=rev Author: p3net Date: 2007-07-30 20:08:06 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Grr... it's going back right! Keep it until we write the installer. You can blank it for your /develop script Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 03:06:58 UTC (rev 73) +++ trunk/config.php 2007-07-31 03:08:06 UTC (rev 74) @@ -1,4 +1,3 @@ -<<<<<<< .mine <?php /* These settings are autogenerated by AstroSPACES do not change them unless you know what you are @@ -38,43 +37,40 @@ ======= -<?php -/* These settings are autogenerated by AstroSPACES - do not change them unless if you have instructions - stating that these values should be changed. -*/ -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 unless if you understand what you are doing. -*/ -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_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_TBL_GRP', AS_DB_PREFIX.'groups'); -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/'); - - ->>>>>>> .r71 +<?php +/* These settings are autogenerated by AstroSPACES + do not change them unless if you have instructions + stating that these values should be changed. +*/ +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 unless if you understand what you are doing. +*/ +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_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_TBL_GRP', AS_DB_PREFIX.'groups'); +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/'); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <del...@us...> - 2007-07-31 04:04:35
|
Revision: 75 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=75&view=rev Author: deltalabs Date: 2007-07-30 21:04:38 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 03:08:06 UTC (rev 74) +++ trunk/config.php 2007-07-31 04:04:38 UTC (rev 75) @@ -1,42 +1,40 @@ -<?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/'); +<?php +/* These settings are autogenerated by AstroSPACES + do not change them unless if you have instructions + stating that these values should be changed. +*/ +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 unless if you understand what you are doing. +*/ +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_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_TBL_GRP', AS_DB_PREFIX.'groups'); +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/'); - - -======= +======= <?php /* These settings are autogenerated by AstroSPACES do not change them unless if you have instructions @@ -72,5 +70,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. |
From: <del...@us...> - 2007-07-31 04:06:33
|
Revision: 76 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=76&view=rev Author: deltalabs Date: 2007-07-30 21:06:36 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 04:04:38 UTC (rev 75) +++ trunk/config.php 2007-07-31 04:06:36 UTC (rev 76) @@ -1,41 +1,5 @@ <?php -/* These settings are autogenerated by AstroSPACES - do not change them unless if you have instructions - stating that these values should be changed. -*/ -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 unless if you understand what you are doing. -*/ -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_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_TBL_GRP', AS_DB_PREFIX.'groups'); -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/'); -======= -<?php +/* Stupid file keeps screwing up */ /* These settings are autogenerated by AstroSPACES do not change them unless if you have instructions stating that these values should be changed. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |
From: <p3...@us...> - 2007-07-31 04:22:57
|
Revision: 78 http://astrospaces.svn.sourceforge.net/astrospaces/?rev=78&view=rev Author: p3net Date: 2007-07-30 21:22:59 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Damn it Modified Paths: -------------- trunk/config.php Modified: trunk/config.php =================================================================== --- trunk/config.php 2007-07-31 04:09:10 UTC (rev 77) +++ trunk/config.php 2007-07-31 04:22:59 UTC (rev 78) @@ -34,43 +34,4 @@ 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. -*/ -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 unless if you understand what you are doing. -*/ -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_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_TBL_GRP', AS_DB_PREFIX.'groups'); -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/'); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |