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
Wanted to bring up an issue that I'm running into with this plugin.
I've done a bit of investigating and found a solution but I wanted to run it by here first. So I believe this issue is a result of a character set mismatch. If I go into the file listed in the screen shot and modify it this way:
(line 133) $xml = new DOMDocument();
(changed to) $xml = new DOMDocument('1.0', 'utf-8');
It solves the issue. I can go post this under the repo for the ups-api dependency, but before doing that I wanted to ask if this should be modified on THIS plugin instead. I dug through the issues on their repository and couldn't find anyone having content type mismatches like this =).
I hope this helps and I appreciate your work!
Thanks!
The text was updated successfully, but these errors were encountered:
Hi @ryanjavens, thanks for bringing this to our attention.
Can you provide any additional information to help replicate this? Origin and destination addresses along with product information, such as the dimensions and weight, would be helpful.
Hey there @rmknecht -- we have had the following with others testing our development instance. I'm not super hip on the PHP front, but work with Craft and the CMS builds. I've had once instance:
And this was the second:
Any thoughts on what could be causing this between instances? We usually have someone pull down the branch we are working on and then provide a DB dump to test with.
Hello guys,
Wanted to bring up an issue that I'm running into with this plugin.
I've done a bit of investigating and found a solution but I wanted to run it by here first. So I believe this issue is a result of a character set mismatch. If I go into the file listed in the screen shot and modify it this way:
(line 133)
$xml = new DOMDocument();
(changed to)
$xml = new DOMDocument('1.0', 'utf-8');
It solves the issue. I can go post this under the repo for the ups-api dependency, but before doing that I wanted to ask if this should be modified on THIS plugin instead. I dug through the issues on their repository and couldn't find anyone having content type mismatches like this =).
I hope this helps and I appreciate your work!
Thanks!
The text was updated successfully, but these errors were encountered: