Well I tried, but was unable to get the modifications working, I changed the index.php file adding or TRUE
However, I don't know how to modify the /form/form-record-get.php file use uuid value.
The url Im using is like (edited) https://.com/easyweb/index.php?uuid=C36FA0BA-1BB0-EB48-99FB-EEBB6E504D0C
The field added to the filemaker database is named uuid
The original script follows, (I tried simply changing recordID to uuid to no avail), I don't think I'm actually understanding how it works. Also, I thought maybe core/layout-load.php might need to be modified as well? Update, modifying this DID do the trick (changed recordID to uuid), sorry for the confusion.
/form/form-record-get.php
<?php
// Get the record that was requested. $fm_result_get_record = $fm -> getRecordByID ( FMEW_Form_Layout, $_GET [ 'recordID' ] ); // If an error was thrown... if ( FileMaker::isError( $fm_result_get_record ) ) {
// Display the error and die. $error_code = $fm_result_get_record -> code; $error_description = $fm_result_get_record -> message; require_once ( dirname(__FILE__) . '../core/error-display.php' ); }
// Grab the record. $display_record = $fm_result_get_record; ?>
Any more advice? Thanks.