-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
16 lines (14 loc) · 736 Bytes
/
config.php
File metadata and controls
16 lines (14 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
//Add this lines to your config.php files end.
/**
* The reCAPTCHA server URL's
*/
$config['recaptcha']['apiserver']="http://www.google.com/recaptcha/api";
$config['recaptcha']['apisecureserver']="https://www.google.com/recaptcha/api";
$config['recaptcha']['verifyserver']="www.google.com";
$config['recaptcha']['publickey']="yourpublickey";
$config['recaptcha']['privatekey']="yourprivatekey";
$config['recaptcha']['language']="tr";//Interface Language
$config['recaptcha']['theme']="clean";//Interface Theme
$config['recaptcha']['mailhide']['publickey']="yourpublicemailhidekey";
$config['recaptcha']['mailhide']['privatekey']="yourprivateemailhidekey";