-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCONFIG-sample.php
More file actions
33 lines (22 loc) · 911 Bytes
/
CONFIG-sample.php
File metadata and controls
33 lines (22 loc) · 911 Bytes
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
<?php
//podcast config - directory paths, db credentials, etc...
$archive_tool_url = 'http://archive.citr.ca';
$archive_access_url = $archive_tool_url.
"/py-test/archbrad/download?archive=%2Fmnt%2Faudio-stor%2Flog";
// new version (using ftp to put podcast audio
$ftp_url = '';
$ftp_user = ''; $ftp_pass = '';
$ftp_path = '/mnt/Audio/audio/';
$djland_db_address = '';
$djland_db_username = '';
$djland_db_password = '';
$djland_db_dbname = '';
$db = mysqli_connect($djland_db_address,$djland_db_username,$djland_db_password,$djland_db_dbname);
$timezone = 'America/Vancouver';
date_default_timezone_set($timezone);
// old version (using file access to put podcast audio somewhere)
$audio_dir = 'podcast-media/audio/';//'\\\\PODCAST\\Audio\\audio\\new\\';
//*******************************************
//*******************************************
//*******************************************
?>