-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
32 lines (24 loc) · 1.07 KB
/
config.php
File metadata and controls
32 lines (24 loc) · 1.07 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
// config.php
// configuration settings for the expungement generator
//
$debug=false;
// database connection information
$dbPassword = "2xj9cpJXt4vBxxmf";
$dbUser = "cpcms";
$dbName = "cpcms1999";
$dbHost = "localhost";
require_once("c:\wamp\\tools\dbconnect.php");
$docketDir = "c:" . DIRECTORY_SEPARATOR . "cpcms" . DIRECTORY_SEPARATOR . "dockets";
$toolsDir = "c:\wamp\\tools\\";
// $baseURL = "http://localhost//";
$tempFile = tempnam($docketDir, "FOO");
// note that this works with pdftotext 3.03, but not 3.04! The text extraction is different in 3.04
$pdftotext = "pdftotext.exe";
$baseURL = "https://ujsportal.pacourts.us/DocketSheets/CPReport.ashx?docketNumber=";
$baseURLSummary = "https://ujsportal.pacourts.us/DocketSheets/CourtSummaryReport.ashx?docketNumber=";
$mdjBaseURL = "http://ujsportal.pacourts.us/DocketSheets/MDJReport.aspx?docketNumber=";
$contDocketDir = "c:" . DIRECTORY_SEPARATOR . "cpcms" . DIRECTORY_SEPARATOR . "contDocket";
// this logs a user in; must happen early on b/c of header requirements with session vars
//require_once("doLogin.php");
?>