deaddox Posted September 1, 2005 Share Posted September 1, 2005 I have a couple of sites that use the EPDQ Contribution? Since upgrading to the v2 contribution I am now experiencing a problem with the contribution generating huge error log files 300 or 400mb in size after a few days? I have managed to locate what is cause the error and I have included it below? /* communicating with host server */ /**********************************/ $connection = fsockopen("$requesthost", 80); fputs($connection, $requestheader.$requestbody); $responsedata=""; while (!feof($connection)) $responsedata.=fgets($connection, 1024); fclose($connection); The problem occurs with the while loop. Each iteration that dose not receive a response from the EPDQ server generates an error line in the error log file. Is there any one who can help fix this problem? Andy Quote Link to comment Share on other sites More sharing options...
goring_gap Posted February 27, 2007 Share Posted February 27, 2007 I have a couple of sites that use the EPDQ Contribution� Since upgrading to the v2 contribution I am now experiencing a problem with the contribution generating huge error log files 300 or 400mb in size after a few days� I have managed to locate what is cause the error and I have included it below� /* communicating with host server */ /**********************************/ $connection = fsockopen("$requesthost", 80); fputs($connection, $requestheader.$requestbody); $responsedata=""; while (!feof($connection)) $responsedata.=fgets($connection, 1024); fclose($connection); The problem occurs with the while loop. Each iteration that dose not receive a response from the EPDQ server generates an error line in the error log file. Is there any one who can help fix this problem? Andy Did anyone ever work this out? I get the same but with more logs (7GB worth)? I am using the ePDQ CPI Module. Regards, Simon Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.