-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php.sample
More file actions
32 lines (24 loc) · 1.21 KB
/
Copy pathconfig.php.sample
File metadata and controls
32 lines (24 loc) · 1.21 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
<?php
//-----------------------------------------------------------------------------
// Global configs
//-----------------------------------------------------------------------------
// Location of php file containing database connection details.
// Create your own file based on the example file 'connect.php' in this directory.
// Must be readable at least by the user that the web server runs as ('nobody', 'apache', '48', etc.)
$bib_connect_file = "/home/dxp/bib-db/connect.php";
// Location of your error log.
// To avoid exposing the innards of this database/code to the web, most errors are just silently logged.
// Must exist and be be writeable at least by the user that the web server runs as ('nobody', 'apache', '48', etc.)
$bib_error_file = "/home/dxp/bib-db/errorlog";
// Location of bib2postgresql dir - need for edit/import.php
$bib_bib2postgresql_dir = "/home/dxp/bib-db";
// Default location for publication files (pdf, ps, etc.)
$bib_files_dir = "/home/dxp/papers";
$bib_files_url = "/papers";
// Default location for bibtex files
$bib_bibtex_dir = "/home/dxp/doc/bib";
$bib_bibtex_url = "/bibtex";
// Default location for image files
$bib_images_dir = "/home/dxp/doc/bib/images";
$bib_images_url = "/images";
?>