Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I assume you want to use this for async processing, for instance sending eMails in a separate process (hence the error in email.php). If so, please check if <a href="http://de.php.net/manual/en/book.curl.php" rel="nofollow noreferrer">cURL</a> is enabled. You can trigger your scripts through an HTTP request without waiting for the response.</p> <p>Further reading:</p> <ul> <li><a href="http://www.jaisenmathai.com/blog/2008/05/29/asynchronous-parallel-http-requests-using-php-multi_curl/" rel="nofollow noreferrer">Asynchronous/parallel HTTP requests using PHP multi_curl</a></li> <li><a href="http://www.onlineaspect.com/2009/01/26/how-to-use-curl_multi-without-blocking/" rel="nofollow noreferrer">How to use curl_multi() without blocking</a></li> <li><a href="https://stackoverflow.com/questions/962915/how-do-i-make-an-asynchronous-get-request-in-php">How do I make an asynchronous GET request in PHP?</a></li> </ul> <p>If cURL is not available, try to use with non-blocking streams:</p> <ul> <li><a href="http://de.php.net/manual/en/function.stream-set-blocking.php" rel="nofollow noreferrer">http://de.php.net/manual/en/function.stream-set-blocking.php</a></li> <li><a href="http://thethoughtlab.blogspot.com/2007/04/non-blocking-io-with-php-mio.html" rel="nofollow noreferrer">http://thethoughtlab.blogspot.com/2007/04/non-blocking-io-with-php-mio.html</a></li> </ul> <p>For added security, consider using a self-defined API key, so the eMail sending URL cannot be triggered without permission. Pass this in as a GET or POST. You could also validate if the request came from the same server.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload