SOAP calls timing out #1919
Unanswered
elidrissidev
asked this question in
Questions & Answers
Replies: 1 comment 1 reply
-
Let's check the file changes history here https://github.com/OpenMage/magento-lts/commits/1.9.4.x/app/code/core/Zend/Validate/Hostname.php. The latest commit is here and it is related to checkDnsRecords function. Try to revert this commit and see what is happening 0412ad6#diff-51a775794b786e994252b5043afb525ca7e0162f64c53b6c6ca58399003a1bab |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Alright, so something strange happened lately, I was running an openmage instance locally at
openmage.local
along side other things like phpMyAdmin atphpmyadmin.local
for a few months now but in the last week it stopped working completely, if I visit any of them chrome just showsERR_NAME_NOT_RESOLVED
. I thought a recent system update I did messed something up (I'm using Manjaro KDE btw) so I went checking if all services were running (httpd
,php-fpm
) and sure enough all of them were. My last resort was to change the virtual host name from.local
to.localhost
and they all started working again. But now SOAP calls were timing out, I followed the request usingxdebug
to identify what's causing this timeout and found out it was the call tocheckdnsrr
inZend_Validate_Hostname
:magento-lts/app/code/core/Zend/Validate/Hostname.php
Lines 2503 to 2527 in 4e7a8e1
If I switch the host name to something like
.com
or.org
it will work just fine.Anyone has an idea on what's going on here? why did this stop working all of a sudden?
Beta Was this translation helpful? Give feedback.
All reactions