Beispiel #1
0
//define('PI_BOOT_SKIP', 1);
// Disable error_reporting
//define('APPLICATION_ENV', 'production');
// Pi boot with no engine bootup: current file is located in www/script/...
$boot = dirname(dirname($_SERVER['SCRIPT_FILENAME'])) . '/boot.php';
include $boot;
// Disable debugger message
Pi::service('log')->mute();
// Load session resource which is required by CAPTCHA
Pi::engine()->bootResource('session');
// Retrieve id generated CAPTCHA
$id = empty($_GET['id']) ? '' : htmlspecialchars($_GET['id'], ENT_QUOTES, 'UTF-8');
$image = null;
if (!empty($id)) {
    // Load CAPTCHA adapter
    $captcha = Pi::captcha()->load();
    $refresh = empty($_GET['refresh']) ? false : true;
    // Generate CAPTCHA image
    $image = $captcha->createImage($id, $refresh);
    // Close session
    //session_write_close();
    //Pi::service('session')->manager()->writeClose();
}
// Send responding response if image is not created
if (empty($image)) {
    if (substr(PHP_SAPI, 0, 3) == 'cgi') {
        header('Status: 404 Not Found');
    } else {
        header('HTTP/1.1 404 Not Found');
    }
    return;