-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.php
39 lines (31 loc) · 1.48 KB
/
config.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
37
38
39
<?php
/**
* @file
* A single location to store configuration.
*/
// add all your twitter credentials
// get your twitter API keys here: http://twitter.com/apps
define('TWITTER_KEY', 'xxxxxxxxxxxxxxxxxxxxxx');
define('TWITTER_SECRET', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
define('TWITTER_USERNAME', 'cashmusic'); // without the @
// set to true to make a user auto-follow you, false to display checkbox
define('AUTO_FOLLOW', false);
// set generic error message — include an email for help
define('ERROR_MESSAGE', 'Something\'s gone wrong.');
// define the default tweet as it should show up in the initial form
define('DEFAULT_TWEET', 'Downloading free code for a tweet-for-track app from @cashmusic: http://cashmusic.org/tools/');
// set required content, or use an empty string for no requirements
define('REQUIRED_CONTENT', 'http://cashmusic.org/tools/');
// set secure download to true (for S3 security) or false for straight http download
define('SECURE_DOWNLOAD', false);
// set amazon credentials if you are using a secure download
define('AMAZONS3_KEY', 'xxxxxxxxxxxxxxxxxxxxxx');
define('AMAZONS3_SECRET', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
define('AMAZONS3_BUCKET', 'bucketname');
// set your download title
define('DOWNLOAD_TITLE', 'downloadTitle');
// URL or amazon URI (if amazon, do not include bucket)
define('DOWNLOAD_URI', 'downloadURL');
// add a string to randomize the session variable names. or don't. whatever.
define('RANDOMIZE_SESSION', '123456');
?>