cvs: php-gtk-web /include config.inc

[email protected] ("Steph Fox") Tue, 04 Jul 2006 23:06:02 -0000
Newsgroups php.gtk.webmaster
Message-ID <cvssfox1152054362@cvsserver>
sfox		Tue Jul  4 23:06:02 2006 UTC

  Added files:                 
    /php-gtk-web/include	config.inc 
  Log:
  Start the ball rolling...
  

http://cvs.php.net/viewvc.cgi/php-gtk-web/include/config.inc?view=markup&rev=1.1
Index: php-gtk-web/include/config.inc
+++ php-gtk-web/include/config.inc
<?php

/* notes admin addresses */
$mailto    = '[email protected]';
$mailfrom  = '[email protected]';

/* filepaths */
define('DB_DIR', '../../db');

$notesfile =  DB_DIR.'/gtknotes.sqlite';
$queuefile =  DB_DIR.'/gtkqueue.sqlite';
$blockfile =  DB_DIR.'/gtkblocked.txt';
$stats     =  DB_DIR.'/gtkstats.txt';
$last_id   =  DB_DIR.'/gtklastid.txt';

/* db update checks. Settings of 15, 10 and 2 could have prevented phpdoc's last attack */
$recent     = strtotime("15 minutes ago");
$veryrecent = strtotime("10 minutes ago");
$likely     = 2;

?>