-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added printing and emailing receipts
- Loading branch information
Showing
610 changed files
with
170,424 additions
and
14,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
root ,root,upande-OptiPlex-170L,22.02.2017 13:34,file:///home/upande/.config/libreoffice/3; |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Netscape HTTP Cookie File | ||
# http://curl.haxx.se/docs/http-cookies.html | ||
# http://curl.haxx.se/rfc/cookie_spec.html | ||
# This file was generated by libcurl! Edit at your own risk. | ||
|
||
ckcfinancialsystem.org FALSE / FALSE 0 PHPSESSID 7ae552c2429433606764ccd34f859bfa | ||
ckcfinancialsystem.org FALSE / FALSE 0 PHPSESSID f3c3bb9e1f4370baed6a80a0e790e0c6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
|
||
if(!DEFINED("CSYBER")) exit("unauthorised config access!"); | ||
|
||
/* | ||
* MYSQL SERVER AND DB CREDENTIALS | ||
*/ | ||
DEFINE("SERVER", ""); | ||
DEFINE("DBUSER", ""); | ||
DEFINE("DBPASS", ""); | ||
|
||
DEFINE("CSYBER_DB", ""); | ||
|
||
|
||
/* | ||
* CKC CREDENTIALS | ||
*/ | ||
DEFINE("CKCLOGIN", "http://ckcfinancialsystem.org/login.php"); | ||
DEFINE("CKCUSER", ""); | ||
DEFINE("CKCPASS", ""); | ||
DEFINE("CHURCHNAME",sprintf("%s", CKCUSER)); | ||
//DEFINE("CKCUSER", ""); | ||
//DEFINE("CKCPASS", ""); | ||
|
||
//where to store the cookies | ||
/* | ||
Modify this | ||
*/ | ||
DEFINE("CKCCOOKIE", dirname(__FILE__)."/ckccookie"); | ||
DEFINE("CKCRECEIPT", "http://ckcfinancialsystem.org/addreceipt.php"); | ||
DEFINE("CKCRECEIPTSUCCESS","Record has been Added!"); | ||
DEFINE("CKCSTATEMENT", "http://ckcfinancialsystem.org/searchtreasurer.php");//searchtreasurer.php | ||
|
||
DEFINE("AUTH_SALT", "JKUSDATtr"); | ||
|
||
define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); | ||
define('B','<b>'); | ||
define('B1','</b>'); | ||
|
||
DEFINE("RECEIPTIMGPATH","ExtraFiles/Receipt.png"); | ||
DEFINE("RECEIPTSFILE","ExtraFiles/Receipts/"); | ||
|
||
|
||
DEFINE("MAILSERVER",'mail.adhrc.co.ke'); | ||
DEFINE("MAILSERVERPORT",25); | ||
DEFINE("MAILSERVERENCRYPTION",''); | ||
DEFINE("MAILSERVERUNAME",''); | ||
DEFINE("MAILSERVERPASS",''); | ||
|
||
DEFINE("FROMEMAIL", "jkusda@adhrc.co.ke"); | ||
DEFINE("FROMNAME", sprintf("%s Treasury", CHURCHNAME)); | ||
DEFINE("REPLYEMAIL", ""); | ||
DEFINE("REPLYNAME", "Treasurer"); | ||
|
||
?> |
Oops, something went wrong.