From dwalton at COREDBS.COM Sat Aug 2 07:51:11 2014 From: dwalton at COREDBS.COM (David Walton) Date: Sat Aug 2 17:10:29 2014 Subject: [FX.php List] Can't get query to work on FM Server 13 Message-ID: <92AAAC46-A366-4A3B-AF2A-F4449BCF2DD3@coredbs.com> Bob, I am running FMPS13.0v3 and PHP 5.3.15 on Mac OS 10.9.4. I still get errorCode 4 when using the FMView() command on code that worked earlier. I have downloaded the latest FX.php (6.0) from github. This seems exactly like the issue you reported to the FX.php List on 6/13/14. Were you able to find a solution to this issue? Thanks in advance for any advice. Dave David Walton, President CORESystems, Inc. http://www.coredbs.com Work: 781-304-8471 Cell: 617-650-4120 Skype: dwcore -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20140802/adad88e5/attachment.html From bob at patin.com Sat Aug 2 18:23:22 2014 From: bob at patin.com (Bob Patin) Date: Sat Aug 2 18:19:06 2014 Subject: [FX.php List] Can't get query to work on FM Server 13 In-Reply-To: <92AAAC46-A366-4A3B-AF2A-F4449BCF2DD3@coredbs.com> References: <92AAAC46-A366-4A3B-AF2A-F4449BCF2DD3@coredbs.com> Message-ID: I believe that the issue was that the page was no longer seeing the include file with my server params in it; I?d moved things around. If I remember correctly, I putzed with it until I stumbled on that answer. Because I wasn?t getting anything back, I knew that the query wasn?t even occurring, so I backtracked from there? BP Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > On Aug 2, 2014, at 8:51 AM, David Walton wrote: > > I am running FMPS13.0v3 and PHP 5.3.15 on Mac OS 10.9.4. > I still get errorCode 4 when using the FMView() command on code that worked earlier. > I have downloaded the latest FX.php (6.0) from github. > This seems exactly like the issue you reported to the FX.php List on 6/13/14. > Were you able to find a solution to this issue? > Thanks in advance for any advice. > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20140802/e7cee848/attachment.html From bob at patin.com Sun Aug 3 14:51:03 2014 From: bob at patin.com (Bob Patin) Date: Sun Aug 3 14:46:49 2014 Subject: [FX.php List] [off] JQuery question Message-ID: I?m trying to do this: a) load a DIV with a page - this works fine b) load a DIV inside the loaded page with a variable Here?s what I have: $('.main') .html('
') .fadeOut(100) .load(page_id) .fadeIn(200); $('.the_fee').html('this probably will not work'); The text displayed above never loads; is it because the DIV ?.main? hasn?t finished loading? Do I need to put a callback in there, and if so, how do I structure it? Thanks, Bob Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting From bob at patin.com Sun Aug 3 15:27:06 2014 From: bob at patin.com (Bob Patin) Date: Sun Aug 3 15:22:52 2014 Subject: [FX.php List] [off] JQuery question In-Reply-To: References: Message-ID: <8D3971AE-34AC-4EAD-89B5-CEBD6EBABF64@patin.com> I did it a different way by generating a URL with GET params and passing the values that I need, to the page that I just loaded, but I suspect there?s an easy way to do what I was describing? > On Aug 3, 2014, at 3:51 PM, Bob Patin wrote: > > I?m trying to do this: > > a) load a DIV with a page - this works fine > b) load a DIV inside the loaded page with a variable > > Here?s what I have: > > $('.main') > .html('
') > .fadeOut(100) > .load(page_id) > .fadeIn(200); > > $('.the_fee').html('this probably will not work'); > > The text displayed above never loads; is it because the DIV ?.main? hasn?t finished loading? Do I need to put a callback in there, and if so, how do I structure it? > > Thanks, > > Bob > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From chris at iViking.org Mon Aug 4 10:10:50 2014 From: chris at iViking.org (Chris Hansen) Date: Mon Aug 4 10:06:18 2014 Subject: [FX.php List] [off] JQuery question In-Reply-To: References: Message-ID: Bob, Yes, you need to use the optional callback parameter of load to do that last bit via a callback. Something like this: .load(page_id, function (response, status, xhr) { $('.the_fee').html('this probably will not work'); }); That's the load bit at any rate. You could also stick another parameter in load to pass in those server variables if you wanted. HTH --Chris On Aug 3, 2014, at 2:51 PM, Bob Patin wrote: > I?m trying to do this: > > a) load a DIV with a page - this works fine > b) load a DIV inside the loaded page with a variable > > Here?s what I have: > > $('.main') > .html('
') > .fadeOut(100) > .load(page_id) > .fadeIn(200); > > $('.the_fee').html('this probably will not work'); > > The text displayed above never loads; is it because the DIV ?.main? hasn?t finished loading? Do I need to put a callback in there, and if so, how do I structure it? > > Thanks, > > Bob > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > From mail at jsfmp.com Tue Aug 12 14:05:10 2014 From: mail at jsfmp.com (Joel Shapiro) Date: Tue Aug 12 14:00:09 2014 Subject: [FX.php List] [OFF] CWP User Group 2014 Recap Message-ID: <9754F068-C80E-474C-856D-D5F43BE2514A@jsfmp.com> Hi all I know in the past people here have asked for a recap of the CWP User Group at DevCon. This year, I finally put one together: http://blog.jsfmp.com/post/94558515081/cwp-user-group-2014-recap Just like you'd been there. -Joel From dness at bondedbuilders.com Wed Aug 13 12:26:27 2014 From: dness at bondedbuilders.com (Ness, David) Date: Wed Aug 13 12:21:24 2014 Subject: [FX.php List] Disk requirements for FMS v13 2-machine deployment Message-ID: I am spec'ing out my new FMS v13 server environment. We plan to use Webdirect, so are opting for the two-machine deployment. I see that, according to FileMaker's docs, 80GB minimum is recommended for a single machine deployment, but in a two-machine deployment, I don't see specific requirements for the second "Web Publishing" machine. I realize that drive space is 'cheap', but as this will be deployed on a very large, enterprise-class, blade, SSD, virtual server system, I'd like to spec the requirements as closely as possible. I also realize that our blade-server allows for live-reconfiguration, so I'll be able to increase it as necessary, but I'd like to give IT a realistic idea ahead of time. Q: How much drive space should I spec for the Web Publishing machine on a FMS v13, 2-machine deployment? Thanks! David Ness FileMaker & Web Applications Developer Bonded Builders Warranty Group St. Petersburg, Florida USA 800-749-0381 x4923 From dness at bondedbuilders.com Wed Aug 13 12:28:22 2014 From: dness at bondedbuilders.com (Ness, David) Date: Wed Aug 13 12:23:32 2014 Subject: [FX.php List] RE: Disk requirements for FMS v13 2-machine deployment In-Reply-To: References: Message-ID: <577343360b4e4885bf252ad22b891664@BLUPR02MB439.namprd02.prod.outlook.com> Oops. Sent to the wrong list (meant for FMPexperts), but you're still welcome to respond. David Ness FileMaker & Web Applications Developer Bonded Builders Warranty Group St. Petersburg, Florida USA 800-749-0381 x4923 From mail at jsfmp.com Wed Aug 13 12:45:30 2014 From: mail at jsfmp.com (Joel Shapiro) Date: Wed Aug 13 12:40:24 2014 Subject: [FX.php List] Disk requirements for FMS v13 2-machine deployment In-Reply-To: <577343360b4e4885bf252ad22b891664@BLUPR02MB439.namprd02.prod.outlook.com> References: <577343360b4e4885bf252ad22b891664@BLUPR02MB439.namprd02.prod.outlook.com> Message-ID: Hi David If you get a good response elsewhere, could you post it here? Thanks, -Joel On Aug 13, 2014, at 11:28 AM, "Ness, David" wrote: > Oops. Sent to the wrong list (meant for FMPexperts), but you're still welcome to respond. > > > David Ness > FileMaker & Web Applications Developer > > Bonded Builders Warranty Group > St. Petersburg, Florida USA > 800-749-0381 x4923 > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list