1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php // ExtCalendar configuration file
// DB configuration $CONFIG['dbsystem'] = "mysql"; // Your database system $CONFIG['dbserver'] = "localhost"; // Your database server $CONFIG['dbuser'] = "admin"; // Your db username $CONFIG['dbpass'] = "mscmks71s11f132n"; // Your db password $CONFIG['dbname'] = "extcalendar_mamcal"; // Your database name
// DB TABLE NAMES PREFIX $CONFIG['TABLE_PREFIX'] = "mamcal_";
// FS configuration $CONFIG['FS_PATH'] = "c:/programme/apache group/apache/htdocs/mamcal/"; // Your file system path $CONFIG['calendar_url'] = "http://mamcal.mamweb.at/"; // Your calendar web url ?>
|