From: Janusz Dobrowolski Date: Thu, 29 Jan 2009 08:35:04 +0000 (+0000) Subject: Reduced delay when ECB rates page is not avaialable. X-Git-Tag: v2.4.2~19^2~1579 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=2d1dd90519889016d984813c98ad44a7e5d58325;p=fa-stable.git Reduced delay when ECB rates page is not avaialable. --- diff --git a/gl/includes/db/gl_db_rates.inc b/gl/includes/db/gl_db_rates.inc index 7e05f98e..3f28f9c9 100644 --- a/gl/includes/db/gl_db_rates.inc +++ b/gl/includes/db/gl_db_rates.inc @@ -75,31 +75,35 @@ function get_ecb_rate($curr_b) { $curr_a = get_company_pref('curr_default'); $ecb_filename = 'http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml'; - $handle = @fopen($ecb_filename, 'rb'); $contents = ''; - if ($handle) - { - do - { - $data = @fread( $handle, 4096 ); - if ( strlen ( $data ) == 0 ) - break; - $contents .= $data; // with this syntax only text will be translated, whole text with htmlspecialchars($data) - } - while (true); - @fclose( $handle ); - } // end handle - else - { + + if (function_exists('curl_init')) + { // first check with curl as we can set short timeout; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL, $ecb_filename); curl_setopt ($ch, CURLOPT_COOKIEJAR, "cookie.txt"); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1); - curl_setopt ($ch, CURLOPT_TIMEOUT, 120); + curl_setopt ($ch, CURLOPT_TIMEOUT, 5); $contents = curl_exec ($ch); curl_close($ch); + } else { + $handle = @fopen($ecb_filename, 'rb'); + if ($handle) { + do + { + $data = @fread( $handle, 4096 ); + if ( strlen ( $data ) == 0 ) + break; + $contents .= $data; // with this syntax only text will be translated, whole text with htmlspecialchars($data) + } + while (true); + @fclose( $handle ); + } // end handle + } + if (!$contents) { + display_warning(_('Cannot retrieve currency rate from ECB page. Please set the rate manually.')); } $contents = str_replace (" |i"; @@ -119,6 +123,6 @@ function get_ecb_rate($curr_b) $val = 0; } return $val; -} // end function get_ecb_rate +} // end function get_ecb_rate ?> \ No newline at end of file