-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed hardcoded temp dir path, updated production API URL
- Loading branch information
1 parent
2303c3d
commit ed6cf5d
Showing
3 changed files
with
7 additions
and
6 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
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,11 +1,12 @@ | ||
<?php | ||
|
||
/** | ||
* Setting for client: client Id, client password, base URL | ||
* Setting for client: client Id, client password | ||
*/ | ||
define('MangoPayDemo_ClientId', 'example'); | ||
define('MangoPayDemo_ClientPassword', 'uyWsmnwMQyTnqKgi8Y35A3eVB7bGhqrebYqA1tL6x2vYNpGPiY'); | ||
|
||
/** | ||
* Path to folder with temporary files (with permissions to write) | ||
* Path to folder to store temporary files (with permissions to write) | ||
*/ | ||
define('MangoPayDemo_TemporaryFolder', 'D:/tmp/'); | ||
define('MangoPayDemo_TemporaryFolder', __dir__); |
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,12 +1,12 @@ | ||
<?php | ||
|
||
/** | ||
* Setting for client: client Id, client password, base URL | ||
* Setting for client: client Id, client password | ||
*/ | ||
define('MangoPayDemo_ClientId', 'example'); | ||
define('MangoPayDemo_ClientPassword', 'uyWsmnwMQyTnqKgi8Y35A3eVB7bGhqrebYqA1tL6x2vYNpGPiY'); | ||
|
||
/** | ||
* Path to folder with temporary files (with permissions to write) | ||
* Path to folder to store temporary files (with permissions to write) | ||
*/ | ||
define('MangoPayDemo_TemporaryFolder', __dir__); |