Hey all: When trying to use the "record insertion form" function to set up a
form for a mysql database I get this error:
Line 4434 file macintosh hd applications mx configuration shared common
scripts dwscriptsextdata.js out of memory.
This is the code from line 4429 to 4450:
var mergeRe= new RegExp (mergePattern, "i");
var noMergeRe= new RegExp (noMergePattern, "i");

if (!noMergeRe.test(insertText)) //exclude non-mergeable blocks
{
var match = insertText.match(mergeRe); //try to extract delims
if (match)
{
for (var i=0; i < delimInfo.length; i++)
{
//check the sub-expression pairs stating at item 1
if (match[2*i+1].length > 0 && match[2*i+2].length > 0)
{
var retVal = new Array();
retVal.push(match[2*i+1]);
retVal.push(match[2*i+2]);
break;
}
}
}
}
}
I can't make hide nor hair of that.
Also, I have 3 configuration files in the DW application folder,
Configuration, Configuration-1, and Configuration-3, that can't be good can it?
Other than that php DW and mysql seem to be running right. I can build insert
forms "block by block" I just can't use the large insertion form.
Any suggestions?
Mac G4 OSX 10.3.8, memory: 768 mb sdram
DW 6.1
PHP 4.3.10
MySql 4.1.9
Thank you for any help