vichan/vichan/inc/captcha/config.php
Fredrick Brennan 2d092461fc Vichan has reached EOL (oops i eated it)
Close #543.
Close #544.
Close #543.
Close #417.
Close #384.
Close #351.
Close #350.
Close #345.
Close #327.
Close #188.
2023-03-23 06:09:51 -04:00

17 lines
399 B
PHP

<?php
// We are using a custom path here to connect to the database.
// Why? Performance reasons.
$pdo = new PDO("mysql:dbname=database_name;host=localhost", "database_user", "database_password", array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
// Captcha expiration:
$expires_in = 120; // 120 seconds
// Captcha dimensions:
$width = 250;
$height = 80;
// Captcha length:
$length = 6;