Web Request Error 5203, but EA works well in other Terminals

 

ok I am totally confused. 
1. Tools ___OPtions ____ExpertAdvisors____ web request activated my websites have been inserted correctly. 

however I am getting an error from this line as res ==-1 

res = WebRequest(req_string, target_url, cookie, referer, timeout, data, data_size, result, headers);
   if(res == -1)
     {
      Print("Error in WebRequest. Error code  =", GetLastError());
      MessageBox("Add the address '" + url + "' in the list of allowed URLs on tab 'Expert Advisors'", "Error", MB_ICONINFORMATION);
     }
   else

the same code on another MT4 Platform runs smoothly with no error. 
what could be wrong.  

With Error 5203

Documentation on MQL5: Network Functions / WebRequest
Documentation on MQL5: Network Functions / WebRequest
  • www.mql5.com
To use the WebRequest() function, add the addresses of the required servers in the list of allowed URLs in the "Expert Advisors" tab of the "Options" window. Server port is automatically selected on the basis of the specified protocol - 80 for "http://" and 443 for "https://". The WebRequest() function is synchronous, which means its breaks the...