If I put my LiveCode project files on a server at
http://www.example.com/test/
and then try to get a file via:
Code: Select all
get url "http://www.example.com/test/text.txt"Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
get url "http://www.example.com/test/text.txt"Code: Select all
put URL "<url>" into tVariable
Code: Select all
on mouseUp
   put field "URL" into tURL
   put url tURL into tData
   if the result is empty then
      put tData into field "Result"
   else
      put the result into field "Result"
   end if
end mouseUp
Code: Select all
<?php
 echo "Hello ". $_GET["name"] . "!";
?>
I have similar experience across supported browsers.Failed to load resource: The request timed out.
Code: Select all
the socketTimeOutInterval



If you're getting frequent timeouts the best you can do is to report the timeout error as suggested, but that won't fix the actual problem.hliljegren wrote:Looking at the JavaScript console I see that every time when the request fails I see that I get :
I have similar experience across supported browsers.Failed to load resource: The request timed out.