PHP CURL - HTTP Error 500 (The FastCGI process exceeded configured activity timeout) -
i have enabled curl on php , wanted check activated simple script below.
<?php $curl = curl_init(); curl_setopt ($curl, curlopt_url, "http://www.php.net"); curl_exec ($curl); curl_close ($curl); ?>
after testing on local machine, receive internal server error:
http error 500.0 - internal server error c:\php\php-cgi.exe - fastcgi process exceeded configured activity timeout
what causes of error? response shouldn't take long not see how can problem timeouts etc?
Comments
Post a Comment