This repository was archived by the owner on Apr 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpsm_config-sample.php
40 lines (28 loc) · 2.05 KB
/
psm_config-sample.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
40
<?php
$sitetitle = "phpStageManager"; //name of website to appear everywhere
$sitedescription = "A web-based theatre management utility"; //a description of the site
$companyname = "Hayden Schiff"; //name of company to appear in misc places
$siteprotocol = "http://"; //URI scheme of the site (presumably this will always be "http://")
$sitedomain = "example.com"; //domain of the site (with port number if not 80), without URI scheme (i.e. http://) or subdirectories
$sitesubdir = ""; //subdirectory where the site is located. don't include trailing slash!
$rootdir = "/"; //internal server directory of this site
$scenecount = 30; //number of scenes in the show
//URL of the page to be embedded on the website's home page
$psm_homepage_url = "https://docs.google.com/document/pub?id=YOUR-DOCUMENT-ID-HERE&embedded=true";
//HTML to be shown at the bottom of the home page
$psm_homepage_subtext = "You can edit the announcements via <a href=\"https://docs.google.com/document/d/YOUR-DOCUMENT-ID-HERE/edit\">this Google Doc</a>.";
$sql_addr = 'localhost'; //address of MySQL server
$sql_user = 'root'; //username for MySQL server
$sql_pass = 'pass'; //password for MySQL server
$sql_db = 'phpstagemanager'; //database to use on the MySQL server
$sql_pref = 'psm_'; //prefix to use for MySQL table names
$def_backcolor = '#0000AA'; //default background color
$def_forecolor = '#FFDD00'; //default foreground color
$def_forehcolor = '#FFAA00'; //default foreground-hover color
$psm_actionlogging = true; //if true, every user action (logging in/out, changing an event, etc) will be recorded in the file action.log
$psm_deftimezone = 'America/New_York'; //name of timezone to be displayed to user. a list of valid values can be found at http://php.net/manual/en/timezones.php
$psm_imap_enabled = false; //if true, IMAP authentication will be enabled
$psm_imap_address = "example.com"; //address of IMAP server
$psm_imap_usessl = true; //if true, IMAP authentication will use SSL (not yet implemented)
$psm_imap_timeout = 3; //time in seconds to wait for a response from the IMAP server
?>