Warning: mysql_pconnect(): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) in /home/fhlinux202/j/jungleton.com/user/htdocs/phpauction/includes/config.inc.php on line 189
Database access error. Please contact the site administrator.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation (version 2 or later).
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Both *nix and Windows directives are present. Default is *nix.
If you are running Phpauction under Windows comment the first line
of each couple, uncomment the second and edit it to reflect you box
charactaristics.
Note: windows slash (\) must be preceeded by another \ for PHP to read
the path correctly.
//-- Activate login box
//-- 1 means login box is shown in the right column in the home page
//-- 0 means login box is not shown
$LOGIN_BOX = 1;
//-- Activate News box
//-- 1 means News box is shown in the right column in the home page
//-- 0 means News box is not shown
$NEWS_BOX = 1;
$NEWS_TO_SHOW = 5; // Number of news you want to show in the NEWS column
$MONEY_FORMAT = 1 => US notation: 1,500.00
$MONEY_FORMAT = 2 => NON US notation (Europe style) 1.500,00
and also define the number of decimal digits you want to be shown
$MONEY_DECIMALS = 2; (2 is the default)
and the position of the currency symbol:
$MONEY_SYMBOL_POS = "R" => the currency symbol will be displayed AFTER the amount
$MONEY_SYMBOL_POS = "L" => the currency symbol will be displayed BEFORE the amount
=========================================================================================*/
//-- This is the directory where users pictures will be uploaded - requires ending slash
//-- Under Windows use something like C:\\path\\to\\you\\uploaddir\\
//-- This string is added to passwords before generating the MD5 hash
//-- Be sure to never change it after the firt set up or
//-- your users passwords will not work
//-- Wether or not you want to show the acceptance text contained in
//-- acceptance.inc.php in users registration page
$SHOW_ACCEPTANCE_TEXT = 1;
/*
This is the log file generated by cron.php - insert the complete
file name (including the absolute path).
If you don't want to generate a log file for cron activity simply
leave this line commented.
*/
/*
Set this to TRUE if you want cron to generates HTML output
BESIDES the cron file declared above. cron.php cannot generates
only HTML output.
*/
$cronScriptHTMLOutput = FALSE;
$expireAuction = 60*60*24*30; // time of auction expiration (in seconds)
$sessionLifeTime = 60*60*24*2; // time of a user session lifetime
/*======================================================================
* *
* Don't edit the code below unless you really know what you are doing *
* *
======================================================================*/