Ask a Question related to Dreamweaver AppDev, Design and Development.
-
BAlice #1
Record insertion form trouble
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
BAlice Guest
-
Using the Record Insertion Application Object
I am using the Record Insertion Application Object on a CF page. I have it updating a simple Access Database. My Primary Key is the ID Field and its... -
Need help for Record Insertion
I am struggeling with the exact same problem. Have you solved it yet? Anyone else have any suggestions? Thanks! -
Record Insertion Form causes multiple entries
I'm using DMX with PHP / MySQL and the Record Insertion Form from the Application tab. I test the form and check the database only to find that... -
Duplicate record insertion
Hi there, I have a DW insert record behaviour on a php page. If the user clicks Submit quickly multiple times, I end up with duplicate records. Any... -
form action page with insertion to DB
hi guys.. i am totally puzzled on what went wrong in this simple action. i am just doing a form page for user to key information into text field,...



Reply With Quote

