Modify ↓
#1196 closed Bug/Fehler (fixed)
Billpay Fehler
| Reported by: | Ronald Parcinski | Owned by: | Ronald Parcinski |
|---|---|---|---|
| Priority: | normal | Milestone: | modified-shop-2.0.3.0 |
| Component: | Module | Version: | 2.0.2.2 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description (last modified by )
Etwas enttäuscht von der Parse-Time im 2.0 Shop nach Upddate
Billpay wird geladen auch wenn es nicht installiert ist:
[05-05-2017 07:41:27] E_STRICT : LoggingManager: Backtrace #1 - /xxx/xxx/xx/xxx/xxx/xxx/xxx/admin/orders.php called at Line 228
Es wird tatsächlich Billpay ohne Prüfung ob installiert geladen:
require_once(DIR_FS_EXTERNAL . 'billpay/utils/billpay_status_requests.php');
Attachments (0)
Change History (3)
comment:1 by , 9 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 9 years ago
| Owner: | set to |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
comment:3 by , 9 years ago
Bis zur Behebung mit der nächsten Shopversion kann man sich das selbst fixen, indem man die betreffende Zeile (orders.php, Zeile 228)
require_once(DIR_FS_EXTERNAL . 'billpay/utils/billpay_status_requests.php');
wie folgt abändert:
if (defined('MODULE_PAYMENT_BILLPAY_STATUS') && MODULE_PAYMENT_BILLPAY_STATUS == 'True') {
require_once(DIR_FS_EXTERNAL . 'billpay/utils/billpay_status_requests.php');
}
Das hält es erstmal aus den Logs raus, da es nicht geladen wird. (Es sei denn, das Billpay-Rechnungs-Modul ist installiert.)
Version 0, edited 9 years ago by (next)
Note:
See TracTickets
for help on using tickets.

In 10735: