Page 1 of 1

Advance Search Error

Posted: Sun Aug 16, 2009 11:01 pm
by bcc
When I typed two words (e.g. piano duo) in advanced search, I got the error:
Exception of type 'System.Web.HttpUnhandledException' was thrown.; Exception has been thrown by the target of an invocation.

When I typed two words with double quotes (e.g. "piano duo"), it is ok.
Is that the limitation of AC7 or is that something wrong in my store's configuration?

Re: Advance Search Error

Posted: Mon Aug 17, 2009 7:19 am
by mazhar
It should work. Is there any live link to check your advance search page? Have you any customization on advance search page? What is your application version?

Re: Advance Search Error

Posted: Mon Aug 17, 2009 11:01 pm
by bcc
It is AC7.0.3
There are some cosmatic customization (added some search tips and made the check box initially checked.
Please try http://www.worldwidemusicservices.com/A ... earch.aspx
thanks!

Re: Advance Search Error

Posted: Tue Aug 18, 2009 6:53 am
by mazhar
You site seems to be pretty custom. I have tried a quite similar configuration on my local install of 7.0.3 and its working withou any problem. Better edit your web.config, turn custom error mode to off and turn debug mode to on. This will help you with a complete error information that would help to find buggy point. In order to turn off custom errors locate

Code: Select all

<customErrors mode="On" defaultRedirect="~/Errors/GeneralError.aspx">
and change it to

Code: Select all

<customErrors mode="Off" defaultRedirect="~/Errors/GeneralError.aspx">
for debug mod locate

Code: Select all

<compilation debug="true" explicit="false">
and change it

Code: Select all

<compilation debug="true" strict="false" explicit="false">

Re: Advance Search Error

Posted: Tue Aug 18, 2009 9:35 pm
by bcc
The error occurred if you turned on full text search. I disable the feature, the search works fine except slow.

Re: Advance Search Error

Posted: Wed Aug 19, 2009 9:37 am
by AbleMods
Does your web hoster have FTS enabled on their SQL server and your db? You'll also want to make sure you download the 7.0.3 patch for FTS if you haven't already.

Re: Advance Search Error

Posted: Thu Aug 20, 2009 6:13 pm
by bcc
Do you know what the 7.0.3 patch for FTS about?
Thanks

Re: Advance Search Error

Posted: Fri Aug 21, 2009 3:25 am
by mazhar