I use following curl functions to put data
where ,
$postUrl =
http://web.alitora.com/ASAPI_REST/asapi/0001/json/memory/teamUMIS/newMemeUMIS?sessionID=sessionID
and $postargs = newMemeUMIS
$session = curl_init($postUrl);
curl_setopt ($session, CURLOPT_PUT, true);
curl_setopt($session, CURLOPT_HEADER, true);
curl_setopt ($session, CURLOPT_POSTFIELDS, $postargs);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($session);
but after 60 seconds it says that
"Fatal error: Maximum execution time of 60 seconds exceeded"
What is the problem?