3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * TME API - code snippet. * * More info at: https://developers.tme.eu */ ini_set('display_errors', 1); error_reporting(E_ALL); $token = 'b050bd709a43eecc443820c022b6774ca703ddb216b6f6765f';//'<put_your_token_here>'; $app_secret = '5656847466f0e5d08577';//<put_your_app_secret_here>'; $params = array( 'SymbolList' => array('1N4007'), 'Country' => 'PL', 'Currency' => 'PLN', 'Language' => 'PL', ); $response = api_call('Products/GetPrices', $params, $token, $app_secret, true); $result = json_decode($response, true); var_dump(PHP_VERSION); echo '<pre>'; print_r($result); echo '</pre>'; //--------------------------------------------------------- function api_call($action, $params, $token, $app_secret, $show_header=false) { $api_url = 'https://api.tme.eu/' . $action . '.json'; // calculate HMAC-SHA1 signature $params['Token'] = $token; ksort($params); // In PHP 5.4 http_build_query() offers enc_type parameter (PHP_QUERY_RFC3986) which replaces bellow snippet. $encoded_params = str_replace( array('+', '%7E'), array('%20', '~'), http_build_query($params) ); $signature_base = 'POST' . '&' . rawurlencode($api_url) . '&' . rawurlencode($encoded_params); $api_signature = base64_encode(hash_hmac('sha1', $signature_base, $app_secret, true)); $params['ApiSignature'] = $api_signature; $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => http_build_query($params) ) ); return file_get_contents($api_url, false, stream_context_create($opts)); }
Output for 8.3.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.6" <pre></pre>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.5" <pre></pre>
Output for 8.3.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.4" <pre></pre>
Output for 8.3.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.3" <pre></pre>
Output for 8.3.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.2" <pre></pre>
Output for 8.3.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.1" <pre></pre>
Output for 8.3.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.3.0" <pre></pre>
Output for 8.2.18
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.18" <pre></pre>
Output for 8.2.17
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.17" <pre></pre>
Output for 8.2.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.16" <pre></pre>
Output for 8.2.15
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.15" <pre></pre>
Output for 8.2.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.14" <pre></pre>
Output for 8.2.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.13" <pre></pre>
Output for 8.2.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.12" <pre></pre>
Output for 8.2.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.11" <pre></pre>
Output for 8.2.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.2.10" <pre></pre>
Output for 8.2.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.9" <pre></pre>
Output for 8.2.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.8" <pre></pre>
Output for 8.2.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.7" <pre></pre>
Output for 8.2.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.6" <pre></pre>
Output for 8.2.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.5" <pre></pre>
Output for 8.2.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.4" <pre></pre>
Output for 8.2.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.3" <pre></pre>
Output for 8.2.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.2" <pre></pre>
Output for 8.2.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.1" <pre></pre>
Output for 8.2.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.2.0" <pre></pre>
Output for 8.1.27
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.27" <pre></pre>
Output for 8.1.26
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.26" <pre></pre>
Output for 8.1.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.25" <pre></pre>
Output for 8.1.24
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.24" <pre></pre>
Output for 8.1.23
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.23" <pre></pre>
Output for 8.1.22
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.22" <pre></pre>
Output for 8.1.21
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.21" <pre></pre>
Output for 8.1.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.20" <pre></pre>
Output for 8.1.19
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.19" <pre></pre>
Output for 8.1.18
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.18" <pre></pre>
Output for 8.1.17
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.17" <pre></pre>
Output for 8.1.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.16" <pre></pre>
Output for 8.1.15
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.15" <pre></pre>
Output for 8.1.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.14" <pre></pre>
Output for 8.1.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.13" <pre></pre>
Output for 8.1.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.12" <pre></pre>
Output for 8.1.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.11" <pre></pre>
Output for 8.1.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.1.10" <pre></pre>
Output for 8.1.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.9" <pre></pre>
Output for 8.1.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.8" <pre></pre>
Output for 8.1.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.7" <pre></pre>
Output for 8.1.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.6" <pre></pre>
Output for 8.1.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.5" <pre></pre>
Output for 8.1.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.4" <pre></pre>
Output for 8.1.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.3" <pre></pre>
Output for 8.1.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.2" <pre></pre>
Output for 8.1.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.1" <pre></pre>
Output for 8.1.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.1.0" <pre></pre>
Output for 8.0.30
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.30" <pre></pre>
Output for 8.0.29
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.29" <pre></pre>
Output for 8.0.28
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.28" <pre></pre>
Output for 8.0.27
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.27" <pre></pre>
Output for 8.0.26
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.26" <pre></pre>
Output for 8.0.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.25" <pre></pre>
Output for 8.0.24
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.24" <pre></pre>
Output for 8.0.23
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.23" <pre></pre>
Output for 8.0.22
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.22" <pre></pre>
Output for 8.0.21
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.21" <pre></pre>
Output for 8.0.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.20" <pre></pre>
Output for 8.0.19
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.19" <pre></pre>
Output for 8.0.18
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.18" <pre></pre>
Output for 8.0.17
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.17" <pre></pre>
Output for 8.0.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.16" <pre></pre>
Output for 8.0.15
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.15" <pre></pre>
Output for 8.0.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.14" <pre></pre>
Output for 8.0.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "8.0.13" <pre></pre>
Output for 8.0.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.12" <pre></pre>
Output for 8.0.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.11" <pre></pre>
Output for 8.0.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "8.0.10" <pre></pre>
Output for 8.0.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.9" <pre></pre>
Output for 8.0.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.8" <pre></pre>
Output for 8.0.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.7" <pre></pre>
Output for 8.0.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.6" <pre></pre>
Output for 8.0.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.5" <pre></pre>
Output for 8.0.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.3" <pre></pre>
Output for 8.0.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.2" <pre></pre>
Output for 8.0.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.1" <pre></pre>
Output for 8.0.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): Failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "8.0.0" <pre></pre>
Output for 7.4.33
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "7.4.33" <pre></pre>
Output for 7.4.32
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.32" <pre></pre>
Output for 7.4.30
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.30" <pre></pre>
Output for 7.4.29
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.29" <pre></pre>
Output for 7.4.28
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.28" <pre></pre>
Output for 7.4.27
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.27" <pre></pre>
Output for 7.4.26
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.26" <pre></pre>
Output for 7.4.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.25" <pre></pre>
Output for 7.4.24
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.24" <pre></pre>
Output for 7.4.23
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.23" <pre></pre>
Output for 7.4.22
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.22" <pre></pre>
Output for 7.4.21
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.21" <pre></pre>
Output for 7.4.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.20" <pre></pre>
Output for 7.4.19
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.19" <pre></pre>
Output for 7.4.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.16" <pre></pre>
Output for 7.4.15
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.15" <pre></pre>
Output for 7.4.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.14" <pre></pre>
Output for 7.4.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.13" <pre></pre>
Output for 7.4.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.12" <pre></pre>
Output for 7.4.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.11" <pre></pre>
Output for 7.4.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.4.10" <pre></pre>
Output for 7.4.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.9" <pre></pre>
Output for 7.4.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.8" <pre></pre>
Output for 7.4.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.7" <pre></pre>
Output for 7.4.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.6" <pre></pre>
Output for 7.4.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.5" <pre></pre>
Output for 7.4.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.4" <pre></pre>
Output for 7.4.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.3" <pre></pre>
Output for 7.4.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.4.0" <pre></pre>
Output for 7.3.33
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "7.3.33" <pre></pre>
Output for 7.3.32
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "7.3.32" <pre></pre>
Output for 7.3.31
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.31" <pre></pre>
Output for 7.3.30
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.30" <pre></pre>
Output for 7.3.29
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.29" <pre></pre>
Output for 7.3.28
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.28" <pre></pre>
Output for 7.3.27
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.27" <pre></pre>
Output for 7.3.26
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.26" <pre></pre>
Output for 7.3.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.25" <pre></pre>
Output for 7.3.24
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.24" <pre></pre>
Output for 7.3.23
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.23" <pre></pre>
Output for 7.3.21
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.21" <pre></pre>
Output for 7.3.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.20" <pre></pre>
Output for 7.3.19
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.19" <pre></pre>
Output for 7.3.18
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.18" <pre></pre>
Output for 7.3.17
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.17" <pre></pre>
Output for 7.3.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.16" <pre></pre>
Output for 7.3.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.3.12" <pre></pre>
Output for 7.3.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.3.1" <pre></pre>
Output for 7.3.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.3.0" <pre></pre>
Output for 7.2.33
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.33" <pre></pre>
Output for 7.2.32
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.32" <pre></pre>
Output for 7.2.31
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.31" <pre></pre>
Output for 7.2.30
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.30" <pre></pre>
Output for 7.2.29
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.29" <pre></pre>
Output for 7.2.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.13" <pre></pre>
Output for 7.2.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.12" <pre></pre>
Output for 7.2.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.11" <pre></pre>
Output for 7.2.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.2.10" <pre></pre>
Output for 7.2.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.9" <pre></pre>
Output for 7.2.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.8" <pre></pre>
Output for 7.2.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.7" <pre></pre>
Output for 7.2.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.6" <pre></pre>
Output for 7.2.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.5" <pre></pre>
Output for 7.2.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.4" <pre></pre>
Output for 7.2.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.3" <pre></pre>
Output for 7.2.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.2" <pre></pre>
Output for 7.2.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.1" <pre></pre>
Output for 7.2.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(5) "7.2.0" <pre></pre>
Output for 7.1.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in:/etc) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.1.25" <pre></pre>
Output for 7.1.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(): open_basedir restriction in effect. File(https://api.tme.eu/Products/GetPrices.json) is not within the allowed path(s): (/tmp:/in) in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: Operation not permitted in /in/3kumK on line 58 string(6) "7.1.20" <pre></pre>
Output for 7.1.7
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 string(5) "7.1.7" <pre></pre>
Output for 7.1.6
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 string(5) "7.1.6" <pre></pre>
Output for 7.1.5
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 string(5) "7.1.5" <pre></pre>
Output for 7.1.0
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.1.0" <pre></pre>
Output for 7.0.20
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: System error in /in/3kumK on line 58 string(6) "7.0.20" <pre></pre>
Output for 7.0.14
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "7.0.14" <pre></pre>
Output for 7.0.11
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "7.0.11" <pre></pre>
Output for 7.0.10
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "7.0.10" <pre></pre>
Output for 7.0.9
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.9" <pre></pre>
Output for 7.0.8
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.8" <pre></pre>
Output for 7.0.7
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.7" <pre></pre>
Output for 7.0.6
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.6" <pre></pre>
Output for 7.0.5
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.5" <pre></pre>
Output for 7.0.4
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.4" <pre></pre>
Output for 7.0.3
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.3" <pre></pre>
Output for 7.0.2
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.2" <pre></pre>
Output for 7.0.1
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.1" <pre></pre>
Output for 7.0.0
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "7.0.0" <pre></pre>
Output for 5.6.28
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.28" <pre></pre>
Output for 5.6.26
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.26" <pre></pre>
Output for 5.6.25
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.25" <pre></pre>
Output for 5.6.24
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.24" <pre></pre>
Output for 5.6.23
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.23" <pre></pre>
Output for 5.6.22
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.22" <pre></pre>
Output for 5.6.21
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.21" <pre></pre>
Output for 5.6.20
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.20" <pre></pre>
Output for 5.6.19
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.19" <pre></pre>
Output for 5.6.18
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.18" <pre></pre>
Output for 5.6.17
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.17" <pre></pre>
Output for 5.6.16
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.16" <pre></pre>
Output for 5.6.15
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.15" <pre></pre>
Output for 5.6.14
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.14" <pre></pre>
Output for 5.6.13
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.13" <pre></pre>
Output for 5.6.12
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.12" <pre></pre>
Output for 5.6.11
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.11" <pre></pre>
Output for 5.6.10
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.6.10" <pre></pre>
Output for 5.6.9
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.9" <pre></pre>
Output for 5.6.8
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.8" <pre></pre>
Output for 5.6.7
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.7" <pre></pre>
Output for 5.6.6
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.6" <pre></pre>
Output for 5.6.5
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.5" <pre></pre>
Output for 5.6.4
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.4" <pre></pre>
Output for 5.6.3
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.3" <pre></pre>
Output for 5.6.2
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.2" <pre></pre>
Output for 5.6.1
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.1" <pre></pre>
Output for 5.6.0
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.6.0" <pre></pre>
Output for 5.5.38
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.38" <pre></pre>
Output for 5.5.37
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.37" <pre></pre>
Output for 5.5.36
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.36" <pre></pre>
Output for 5.5.35
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.35" <pre></pre>
Output for 5.5.34
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.34" <pre></pre>
Output for 5.5.33
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.33" <pre></pre>
Output for 5.5.32
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.32" <pre></pre>
Output for 5.5.31
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.31" <pre></pre>
Output for 5.5.30
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.30" <pre></pre>
Output for 5.5.29
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.29" <pre></pre>
Output for 5.5.28
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.28" <pre></pre>
Output for 5.5.27
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.27" <pre></pre>
Output for 5.5.26
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.26" <pre></pre>
Output for 5.5.25
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.25" <pre></pre>
Output for 5.5.24
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.24" <pre></pre>
Output for 5.5.23
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.23" <pre></pre>
Output for 5.5.22
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.22" <pre></pre>
Output for 5.5.21
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.21" <pre></pre>
Output for 5.5.20
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.20" <pre></pre>
Output for 5.5.19
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.19" <pre></pre>
Output for 5.5.18
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.18" <pre></pre>
Output for 5.5.16
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.16" <pre></pre>
Output for 5.5.15
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.15" <pre></pre>
Output for 5.5.14
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.14" <pre></pre>
Output for 5.5.13
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.13" <pre></pre>
Output for 5.5.12
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.12" <pre></pre>
Output for 5.5.11
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.11" <pre></pre>
Output for 5.5.10
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.5.10" <pre></pre>
Output for 5.5.9
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.9" <pre></pre>
Output for 5.5.8
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.8" <pre></pre>
Output for 5.5.7
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.7" <pre></pre>
Output for 5.5.6
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.6" <pre></pre>
Output for 5.5.5
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.5" <pre></pre>
Output for 5.5.4
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.4" <pre></pre>
Output for 5.5.3
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.3" <pre></pre>
Output for 5.5.2
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.2" <pre></pre>
Output for 5.5.1
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.1" <pre></pre>
Output for 5.5.0
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(5) "5.5.0" <pre></pre>
Output for 5.4.45
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.45" <pre></pre>
Output for 5.4.44
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.44" <pre></pre>
Output for 5.4.43
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.43" <pre></pre>
Output for 5.4.42
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.42" <pre></pre>
Output for 5.4.41
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.41" <pre></pre>
Output for 5.4.40
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.40" <pre></pre>
Output for 5.4.39
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.39" <pre></pre>
Output for 5.4.38
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.38" <pre></pre>
Output for 5.4.37
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.37" <pre></pre>
Output for 5.4.36
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.36" <pre></pre>
Output for 5.4.35
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.35" <pre></pre>
Output for 5.4.34
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.34" <pre></pre>
Output for 5.4.32
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.32" <pre></pre>
Output for 5.4.31
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.31" <pre></pre>
Output for 5.4.30
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.30" <pre></pre>
Output for 5.4.29
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.29" <pre></pre>
Output for 5.4.28
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.28" <pre></pre>
Output for 5.4.27
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.27" <pre></pre>
Output for 5.4.26
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.26" <pre></pre>
Output for 5.4.25
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.25" <pre></pre>
Output for 5.4.24
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.24" <pre></pre>
Output for 5.4.23
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.23" <pre></pre>
Output for 5.4.22
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.22" <pre></pre>
Output for 5.4.21
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.21" <pre></pre>
Output for 5.4.20
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.20" <pre></pre>
Output for 5.4.19
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.19" <pre></pre>
Output for 5.4.18
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.18" <pre></pre>
Output for 5.4.17
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.17" <pre></pre>
Output for 5.4.16
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.16" <pre></pre>
Output for 5.4.15
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: php_network_getaddresses: getaddrinfo failed: Name or service not known in /in/3kumK on line 58 string(6) "5.4.15" <pre></pre>
Output for 5.4.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.4.14" <pre></pre>
Output for 5.4.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.4.13" <pre></pre>
Output for 5.4.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.4.12" <pre></pre>
Output for 5.4.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.4.11" <pre></pre>
Output for 5.4.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.4.10" <pre></pre>
Output for 5.4.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.9" <pre></pre>
Output for 5.4.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.8" <pre></pre>
Output for 5.4.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.7" <pre></pre>
Output for 5.4.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.6" <pre></pre>
Output for 5.4.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.5" <pre></pre>
Output for 5.4.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.4" <pre></pre>
Output for 5.4.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.3" <pre></pre>
Output for 5.4.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.2" <pre></pre>
Output for 5.4.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.1" <pre></pre>
Output for 5.4.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.4.0" <pre></pre>
Output for 5.3.29
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.29" <pre></pre>
Output for 5.3.28
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.28" <pre></pre>
Output for 5.3.27
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.27" <pre></pre>
Output for 5.3.26
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.26" <pre></pre>
Output for 5.3.25
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.25" <pre></pre>
Output for 5.3.24
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.24" <pre></pre>
Output for 5.3.23
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.23" <pre></pre>
Output for 5.3.22
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.22" <pre></pre>
Output for 5.3.21
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.21" <pre></pre>
Output for 5.3.20
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.20" <pre></pre>
Output for 5.3.19
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.19" <pre></pre>
Output for 5.3.18
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.18" <pre></pre>
Output for 5.3.17
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.17" <pre></pre>
Output for 5.3.16
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.16" <pre></pre>
Output for 5.3.15
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.15" <pre></pre>
Output for 5.3.14
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.14" <pre></pre>
Output for 5.3.13
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.13" <pre></pre>
Output for 5.3.12
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.12" <pre></pre>
Output for 5.3.11
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.11" <pre></pre>
Output for 5.3.10
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.3.10" <pre></pre>
Output for 5.3.9
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.9" <pre></pre>
Output for 5.3.8
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.8" <pre></pre>
Output for 5.3.7
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.7" <pre></pre>
Output for 5.3.6
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.6" <pre></pre>
Output for 5.3.5
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.5" <pre></pre>
Output for 5.3.4
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.4" <pre></pre>
Output for 5.3.3
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.3" <pre></pre>
Output for 5.3.2
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.2" <pre></pre>
Output for 5.3.1
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.1" <pre></pre>
Output for 5.3.0
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.3.0" <pre></pre>
Output for 5.2.17
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.17" <pre></pre>
Output for 5.2.16
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.16" <pre></pre>
Output for 5.2.15
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.15" <pre></pre>
Output for 5.2.14
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.14" <pre></pre>
Output for 5.2.13
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.13" <pre></pre>
Output for 5.2.12
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.12" <pre></pre>
Output for 5.2.11
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.11" <pre></pre>
Output for 5.2.10
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(6) "5.2.10" <pre></pre>
Output for 5.2.9
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.9" <pre></pre>
Output for 5.2.8
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.8" <pre></pre>
Output for 5.2.7
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.7" <pre></pre>
Output for 5.2.6
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.6" <pre></pre>
Output for 5.2.5
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.5" <pre></pre>
Output for 5.2.4
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.4" <pre></pre>
Output for 5.2.3
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.3" <pre></pre>
Output for 5.2.2
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.2" <pre></pre>
Output for 5.2.1
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.1" <pre></pre>
Output for 5.2.0
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 string(5) "5.2.0" <pre></pre>
Output for 5.1.2 - 5.1.6
Notice: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /in/3kumK on line 58 Warning: file_get_contents(https://api.tme.eu/Products/GetPrices.json): failed to open stream: No such file or directory in /in/3kumK on line 58 Fatal error: Call to undefined function json_decode() in /in/3kumK on line 21
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1
Fatal error: Call to undefined function hash_hmac() in /in/3kumK on line 46
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: http_build_query() in /in/3kumK on line 43
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: http_build_query() in /in/3kumK on line 43
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: http_build_query() in /in/3kumK on line 43

preferences:
251.7 ms | 401 KiB | 371 Q