You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i ran into the same issue after upgrading syspass to v3.2. As this project seems not to bemaintained anymore. I've fixed that by myself. Here are the steps on how to fis that issue:
In src/Decrypter.php change line 92:
from: $nodeNames = ['Category', 'Customer'];
to: $nodeNames = ['Category', 'Client'];
in src/Decrypter.php change line 140:
from: $customerId = $accountNode->getElementsByTagName('customerId')
to: $customerId = $accountNode->getElementsByTagName('clientId')
in src/Exporter.php change line 36:
from: 'Customer: ' . $account['customer'],
to: 'Customer: ' . $account['client'],
After that modification, on my system everything is working again.
Get the error for line 142 and the Customer filed just shows ,"Customer: "
The text was updated successfully, but these errors were encountered: