Do you get anything of interest if you enable logging in your log4net config?
I'm not sure if my logging is working correctly, I have my EPiServerLog.config pointing to EPiServerErrorLog.txt as the log path, but nothing ever gets written to the file.
I believe another possibility would be if something that has no config file name specified was first to init log4net, in which case you may want to stick something like this in web.config:
<appSettings>
<add key="log4net.Config" value="episerverlog.config" />
</appSettings>
I'm having an issue after moving my site into the live environment. When it was in development, I coded an FTS handler to display search results. I had no problems getting the results until moving to a new server.
My index service is working, I can reindex my site and verify the files are being created. I'm not sure how to further test this to see why I'm not getting any results.
No matter what term I search on, the page loads for a long time, and I either get a 500 internal server err - timeout, or I get my results page with no rows.
Does anybody have a clue as to what could be wrong? I followed the directions in the FTS setup page and haven't changed any settings from my development environment except for the path the index files are stored. I verified they are displaying there so that part appears to be working.