pool/web/index.php
Tanguy Pruvot d8fe695a46 Some constants for the btc addr, email and site url..
+ missing .gitignore / folder git keepers
2015-07-02 21:17:04 +02:00

34 lines
616 B
PHP

<?php
//define('YII_DEBUG', true);
require_once('serverconfig.php');
require_once('yaamp/ui/app.php');
if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_X_FORWARDED_FOR'];
//$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];
if(0)
{
debuglog("{$_SERVER['REMOTE_ADDR']}, {$_SERVER['REQUEST_URI']}");
}
try
{
$app->run();
}
catch(CException $e)
{
// Javascript("window.history.go(-1)");
// mydump($e, 3);
debuglog("front end error ".$_SERVER['REMOTE_ADDR']);
debuglog($e->getMessage());
// send_email_alert('frontend', "frontend error", "a frontend error occured");
}