Cakephp Help

I made a shell script in /vendors/shells and have debug set to 2, code example below.

<?php
include ROOT . '/config/config.php';
include ROOT . '/vendors/shells/database.php';
$GLOBALS['config'] = $config;
set_time_limit(0);
error_reporting(E_ALL);
class TestShell extends Shell {
var $calibrate_time = 2;
function startup() {
}
function main() {
$st = microtime(true);
$auction = false;
while ($auction == false) {
$time_calibr…

Leave a Reply

Your email address will not be published. Required fields are marked *