oke the message.quit.inc fixes the "error display". now i get this:
MODx encountered the following error while attempting to parse the requested resource:
« `8 ` is not numeric and may not be passed to makeUrl() »
Parser timing
MySQL: 0.0139 s s (14 Requests)
PHP: 0.0971 s s
Total: 0.1110 s s
I tracked this back to the following snippet call:
[!AjaxSearch? &AS_landing=8 &showMoreResults=1!]
this is a value in the MODxHost Template currently installed by default from the latest SVN trunk (as posted a couple of posts earlier).
I changed snippet call to:
[!AjaxSearch? &AS_landing=`8` &showMoreResults=`1`!]
added the backtick (`) and now it’s working fine. I guess if I don’t use backtick the parser takes "8 " (number eight and a space) as the value. My guess is this is a mistake in ajaxsearch snippet (it needs to Trim() the value for AS_Landing before it processes.
The first error message (see top of this post) is a bit ambigious because it only gives an error message but it doesn’t specify where.
Unless I set debug to true

Is this normal behaviour?