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

Popular posts from this blog

PHP while loop dynamic rowspan -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

Spring Boot + JPA + Hibernate: Unable to locate persister -