why getting ping.ashx on online customer module ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I often get this record in online customer module in admin section:

Guest    174.111.30.50    United States    8:32:39 PM    8:32:39 PM    http://www.mywebsite.com/keepalive/ping.ashx

what's the reason of getting this records ? and what does this location means ?
13 years ago
Ping.ashx is used to prevent your website from recompiling. It should not be tracked by 'Online Customers' module. It will be fixed in the next release.
If you want to disable ping task, open web.config file and replace
<task name="KeepAlive" type="NopSolutions.NopCommerce.BusinessLogic.Utils.KeepAliveTask, Nop.BusinessLogic" enabled="true" stopOnError="false" path="keepalive/ping.ashx"/>

with
<task name="KeepAlive" type="NopSolutions.NopCommerce.BusinessLogic.Utils.KeepAliveTask, Nop.BusinessLogic" enabled="false" stopOnError="false" path="keepalive/ping.ashx"/>
13 years ago
thank you Andrei, that fixed the problem....
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.