If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Runtime error in merchant2/5.00/modules/util/ry_toolbelt.mvc @ [00000004:0001532e]: ./tools/product_items.mv: Line 503: (in expression): Array index must be positive integer
Getting this on several items when I do a search then click on one of the returned results on the search results page. Where is the error likely occuring - in the module or on search results or PROD pages?
This is a module error. I'm guessing the module is looking for some kind of url parameter on the link you're clicking and not finding it, and the module does not check for that condition so it goes straight to an engine error. Basically I'm guessing the module is trying to get an array item like l.variable[g.some_url_param] and g.some_url_param is blank which will always throw that kind of error.
Comment