]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - includes/config-sample.php
Using yourls.org shortened links :)
[Github/YOURLS.git] / includes / config-sample.php
1 <?php\r
2 /*\r
3  ** MySQL settings - You can get this info from your web host\r
4  */\r
5 \r
6 /** MySQL database username */\r
7 define('YOURLS_DB_USER', 'dbuser');\r
8 \r
9 /** MySQL database password */\r
10 define('YOURLS_DB_PASS', 'dbpassword');\r
11 \r
12 /** The name of the database for YOURLS */\r
13 define('YOURLS_DB_NAME', 'yourls');\r
14 \r
15 /** MySQL hostname */\r
16 define('YOURLS_DB_HOST', 'localhost');\r
17 \r
18 /** MySQL tables prefix */\r
19 define('YOURLS_DB_PREFIX', 'yourls_');\r
20 \r
21 /** MySQL table name to store URLs. Don't change this if in doubt. */\r
22 /** NOTE: as of 1.4 this constant is deprecated and will be needed only if upgrading from an older version **/\r
23 define('YOURLS_DB_TABLE_URL', 'yourls_url');\r
24 \r
25 /** MySQL Next ID table name. Don't change this if in doubt. */\r
26 /** NOTE: as of 1.4 this constant is deprecated and will be needed only if upgrading from an older version\r
27  ** You can remove this if installing from scratch, or once properly upgraded **/\r
28 define('YOURLS_DB_TABLE_NEXTDEC', 'yourls_next_id');\r
29 \r
30 \r
31 /*\r
32  ** Site options\r
33  */\r
34 \r
35 /** Turn this on to enable error reporting. Leave this to false **/\r
36 define('YOURLS_DEBUG', false);\r
37  \r
38 /** YOURLS installation URL, no trailing slash */\r
39 define('YOURLS_SITE', 'http://site.com'); //\r
40 \r
41 /** Timezone GMT offset */\r
42 define('YOURLS_HOURS_OFFSET', 0); \r
43 \r
44 /** Private means protected with login/pass as defined below. Set to false for public usage. */\r
45 define('YOURLS_PRIVATE', true);\r
46 \r
47 /** A random secret hash used to encrypt cookies. You don't have to remember it, make it long and complicated. Hint: copy from http://yourls.org/cookiekey **/\r
48 define('YOURLS_COOKIEKEY', 'qQ4KhL_pu|s@Zm7n#%:b^{A[vhm');\r
49 \r
50 /**  Username(s) and password(s) allowed to access the site */\r
51 $yourls_user_passwords = array(\r
52         'username' => 'password',\r
53         'username2' => 'password2'      // You can have one or more 'login'=>'password' lines\r
54         );\r
55 \r
56 /*\r
57  ** URL Shortening settings\r
58  */\r
59 \r
60 /** URL shortening method: 36 or 62 */\r
61 define('YOURLS_URL_CONVERT', 36);\r
62 /*\r
63  * 36: generates case insentitive lowercase keywords (ie: 13jkm)\r
64  * 62: generate case sensitive keywords (ie: 13jKm or 13JKm)\r
65  * Stick to one setting, don't change after you've created links as it will change all your short URLs!\r
66  * Base 36 should be picked. Use 62 only if you understand what it implies.\r
67  * Using base 62 means you *need* PHP extension BCMath\r
68  */\r
69 \r
70 /** \r
71 * Reserved keywords (so that generated URLs won't match them)\r
72 * Define here negative, unwanted or potentially misleading keywords.\r
73 */\r
74 $yourls_reserved_URL = array(\r
75         'porn', 'faggot', 'sex', 'nigger', 'fuck', 'cunt', 'dick', 'gay',\r
76 );\r
77 \r
78 \r
79 /******************** DO NOT EDIT ANYTHING ELSE ********************/\r
80 require_once (dirname(__FILE__).'/load-yourls.php');\r