Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Navigate into the directory /modules/servers/dedicated/
  • Open the file customconfig.php, or create the file if it does not exist
  • Insert following line and save the file:

    Code Block
    languagephp
    $curl_runtime_timeout = 30;
    $curl_connect_timeout = 10;


  • If the file was newly created, you need to add a PHP tag at the beginning:

    Code Block
    languagephp
    <?php
    $curl_runtime_timeout = 30;
    $curl_connect_timeout = 10;


In this example, the allowed execution time has been increased to 30 seconds and the maximum time to connect to the API has been increased to 10 seconds.