forked from serphacker/serposcope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
define.php
36 lines (27 loc) · 1001 Bytes
/
define.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
define('VERSION','1.0.7');
define('SQL_VERSION',2);
define('INCLUDE_OK',1);
define('IMPORT_SERPOSCOPE_CSV',1);
define('IMPORT_RANKSFR_CSV',2);
define('IMPORT_MYPOSEO_CSV',3);
define('CACHE_DIR',sys_get_temp_dir()."/serposcope_cache/");
define('COOKIE_DIR', sys_get_temp_dir()."/serposcope_cookies/");
if(!defined('OHMYROOT')){
define('OHMYROOT','./');
}
if(!defined('SQL_PREFIX')){
define('SQL_PREFIX','');
}
// advanced options
define('RENDER_TABLE_NDAY',20);
define('RENDER_HIGHCHARTS_NDAY',30);
define('CACHE_LIFETIME',8); // Maximum age of the cache in hour
define('CACHE_RUN_CLEAR',TRUE); // Clear the cache after each run even if lifetime isn't expired
define('HOME_UNCHANGED',TRUE); // Display unchanged position on home
define('HOME_SERP_VOLATILITY',TRUE); // Display serp volatility on home
define('DEBUG_LOG',TRUE); // Enable debug logging
define('CAPTCHA_TIMEOUT',60);
define('CAPTCHA_RETRY',3);
define('CAPTCHA_MAX_RUN',100); // Maximum captcha to break in a run
?>