Jump to content

ShadowVote

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by ShadowVote

  1. For me both the webviewer and the insert from url can screw up on windows whereas so far it is working without hangs on osx (one day) After scraping a web page about 1000 times (with a one second timer between) windows fm hangs down whereas osx does not. win 8pro fm12 or fm13, I guess ms explorer has a memory leak.
  2. 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.
  3. I really happy to use FMEasyWeb as an introduction to custom web programming. Thanks Tim. (short ask: how to default to form view) I would like to mask the recordID number and instead use a uuid. I want to send emails showing a voters public voter profile and provide a link so they can land on their form page, while this is public information I prefer they do not see other voters records. So I added a uuid as the script parameter in customizations-list.php It seems to work perfectly so I then I wanted to do this for the form view but I can not get it always defaults to list view. Can you suggest a simple approach? Thanks
  4. Thanks Tim, Sorry, I had edited my prior post not realizing you had already responded. My problem was that I used the IP address for the filemaker server not the webserver. After opening the admin-console I could see the address of the web server was different.
  5. Thanks for this FMeasyweb project, great concept. I have edited my earlier plea for help. Looks like I got it working. Thanks
  6. I was using the deep linking technique!!! http://<IP address>:<Port number>/fmi/webd#<database name>&lay=<layout name>&viewstyle=<view>&record=<record number>&mode=<mode> Now that's its removed I am screwed. It is the only quick and easy way to land on a specific record from a web link. I was using it in emails, the user clicks the link and land on their own profile which is public information anyway and did not have to be secured. Why cant you pass a variable into to FM simply? I guess it is PHP for me.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.