-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php
More file actions
executable file
·42 lines (34 loc) · 2.03 KB
/
config.php
File metadata and controls
executable file
·42 lines (34 loc) · 2.03 KB
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
40
41
42
<?php
//TIMEZONE
date_default_timezone_set('EST'); // set default timezone
//BASE URL
define( 'BASE_URL', baseUrl() ); // set database host
//DOMAIN
define( 'BASE_DOMAIN', getDomain() ); // set database domain
//DATABASE
define( 'DB_HOST', 'localhost' ); // set database host
define( 'DB_USER', 'root' ); // set database user
define( 'DB_PASS', '' ); // set database password
define( 'DB_NAME', 'main' ); // set database name
define( 'SEND_ERRORS_TO', '' ); // set email notification address
//DEBUGGING
define( 'DISPLAY_DEBUG', false ); // display errors?
//CUSTOMIZE
define ('SITE_NAME', '#MBP2011'); // set the name of the site
define ('SITE_SLOGAN', '2011 MacBook Pro, GPU Failure, Image Distortion'); // set the name of the site
define ('SITE_EMAIL', 'webmaster@' . BASE_DOMAIN ); // set the site email address
define ('SITE_ADDRESS1', ''); // set site address
define ('SITE_ADDRESS2', ''); // set site address
define ('SITE_CITY', ''); // set site address
define ('SITE_STATE', ''); // set site address
define ('SITE_COUNTRY', ''); // set site address
define ('SITE_ZIP', ''); // site zip
define ('SITE_PHONE', ''); // site phone number
//PAGE-SPECIFIC
define('RSS_URL', 'http://feeds.feedburner.com/2011MacbookPro-GoogleNews'); //RSS Url
//AWS access info
define( 'AWS_BUCKET', 'mbp2011' ); // Upload to this bucket
define( 'AWS_ACCESS_KEY', '' ); // AWS S3 Access Key
define( 'AWS_SECRET_KEY', '' ); // AWS S3 Secret Key
define('THUMBNAIL_IMAGE_MAX_WIDTH', 320); // AWS Thumbnail Size
define('THUMBNAIL_IMAGE_MAX_HEIGHT', 640); // AWS Thumbnail Size