I recently purchased MX Kollection 3. I have created an upload file form which does an upload of files, form validation, insert information into the db and then an email. On Internet Explorer I get the "'KT_FVO' is undefined" error. If you go to the test page:
www.brochureplace.biz/upload01-err.php - you will most likely get the error. But if you hit refresh button a couple of times the error goes away. When the error isn't present the page works no problems. On occassion when the error is present the page will run until it times out.
This problem doesn't seem to exist on Firefox. I am running:
OS Name Microsoft Windows XP Home Edition
Version 5.1.2600 Service Pack 2 Build 2600
Internet Explorer:
Version 7.0.5730.11IC
Build 75730
I have done a diff on the two version of html source as when the error occurs and when it doesn't and theire is no difference. I have attached the html source that is generated as a result of the upload01-err.php with the original error in case you want to view it.
Any ideas ?
Thanks
Janice
PS. Same problem occurs in IE 6
--------------------------------- Update ----------------------------------------------------------------
Somehow it looks like in IE the include of FormValidation.js is not processed properly
When I manually add the following code above the location where the javascript include occurs the problem goes away.
<!--
if (typeof KT_FVO == 'undefined') {
KT_FVO = {};
KT_FVO_properties = {
noTriggers: 0,
noTransactions: 0
}
}
//-->
</script>
Working code brochureplace.biz/upload01.php
Yet an explicit call to the FormValidation.js script doesn't work.
Any ideas?
Thanks
Janice