From bob at patin.com Sun Feb 2 11:23:09 2014 From: bob at patin.com (Bob Patin) Date: Sun Feb 2 11:20:41 2014 Subject: [FX.php List] [OFF] JQuery question Message-ID: OK listers, I have a page I want to load AFTER a POST has been completed; because this is a simple file upload that I?m adding JQuery to, I really don?t want to redo the POST; plus, I wasn?t able to use the normal JQuery method for submitting a POST form and get the image file. At any rate: User submits form; I want to then go to a subsequent page, so I put this below my PHP: I tried also using $(document).ready(function(){ but it didn?t work either. Any ideas? Thanks, Bob bob@patin.com From tstein at innerfile.com Sun Feb 2 11:54:42 2014 From: tstein at innerfile.com (Ted Stein) Date: Sun Feb 2 11:52:15 2014 Subject: [FX.php List] [OFF] JQuery question In-Reply-To: References: Message-ID: Perhaps a silly question, but: Is jQuery included? Have you tried it with just the alert? Also, if this is responding to a post, why don't you do the redirect on the PHP side? Ted Stein Inner File Software tstein@innerfile.com Mobile: (202) 270-6665 Office: (202) 630-FILE On Feb 2, 2014, at 1:23 PM, Bob Patin wrote: > OK listers, I have a page I want to load AFTER a POST has been completed; because this is a simple file upload that I?m adding JQuery to, I really don?t want to redo the POST; plus, I wasn?t able to use the normal JQuery method for submitting a POST form and get the image file. > > At any rate: > > User submits form; I want to then go to a subsequent page, so I put this below my PHP: > > > > I tried also using $(document).ready(function(){ > > but it didn?t work either. > > Any ideas? > > Thanks, > > Bob > bob@patin.com > > > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From bob at patin.com Sun Feb 2 12:00:53 2014 From: bob at patin.com (Bob Patin) Date: Sun Feb 2 11:58:23 2014 Subject: [FX.php List] [OFF] JQuery question In-Reply-To: References: Message-ID: Well, I solved it a different way, but to answer your question: It?s a page that is loaded inside another, so it doesn?t need to be included on this page; When I redirect it?s not going to load the DIV like I wanted? so my solution was this: Create a page that has the whole wrapper around it, not just the DIV contents; I can then INCLUDE it after my FX query and it goes to that page, from where I can do whatever I need to? Simple, a little clunky, but it?s done. Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11 & 12 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 Feb 2, 2014, at 12:54 PM, Ted Stein wrote: > Perhaps a silly question, but: Is jQuery included? Have you tried it with just the alert? > > Also, if this is responding to a post, why don't you do the redirect on the PHP side? > > Ted Stein > Inner File Software -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20140202/be20c582/attachment.html From david.buck at seachem.com Mon Feb 3 14:35:44 2014 From: david.buck at seachem.com (David) Date: Mon Feb 3 14:33:12 2014 Subject: [FX.php List] 'Script activation' difference after upgrade Message-ID: Hi, Just posting this apparent change in behavior on upgrading in case this helps someone else. I upgraded from FX.php version 4 on FMSA Advanced 11 to FX.php version 6 on FMSA Advanced 12 On one of my pages I have a link sending multiple parameters (piped) to a FileMaker Script. The script runs and resulting data is returned and displayed. Before the upgrade the script was called/triggered using ->DoFXAction(FX_ACTION_FIND). This had worked for years. However, after upgrading no data was returned to php when the script was run. The error code 400, "Find criteria not specified", was returned in debugging. I created a log within the script in FM to check if the script was even being called. It was not. After significant trial and error (and searching back in the list - thanks to Chris H for a 2012 post he made) I found that generating the interaction with FileMaker using ->DoFXAction('show_any') makes it work again. HTH, Regards, David. From david.buck at seachem.com Mon Feb 3 14:43:54 2014 From: david.buck at seachem.com (David) Date: Mon Feb 3 14:41:21 2014 Subject: [FX.php List] Bad software key prevents simultaneous IWP and CWP on the same server Message-ID: I recently upgraded to FM12SA and was hit with this bug. FileMaker Server 12 Advanced cannot be accessed via Instant Web Publishing and Custom Web Publishing simultaneously. Error 802 Unable to open file is shown in the FM Server logs. http://help.filemaker.com/app/answers/detail/a_id/299/~/error-message%3A-802-error-is-displayed-(unable-to-open-file-)-with-filemaker I'm back on track having received good keys from FMI. I had not seen it discussed in this forum so wanted to share. Regards, David. From tstein at innerfile.com Mon Feb 3 15:56:59 2014 From: tstein at innerfile.com (Ted Stein) Date: Mon Feb 3 15:54:24 2014 Subject: [FX.php List] Bad software key prevents simultaneous IWP and CWP on the same server In-Reply-To: References: Message-ID: <201E9657-AF15-4E0D-B014-A090329EF543@innerfile.com> The issue is real and (somewhat) known. I have the same issue with several databases hosted on Triple 8 hosting. Their issue is bulk key conflicts and they are working with FileMaker to resolve it (they pay for dozens of server keys, but use the same serial). Triple 8 has been great helping us resolve it. Ted Stein Inner File Software tstein@innerfile.com Mobile: (202) 270-6665 Office: (202) 630-FILE On Feb 3, 2014, at 4:43 PM, David wrote: > I recently upgraded to FM12SA and was hit with this bug. FileMaker Server 12 Advanced cannot be accessed via Instant Web Publishing and Custom Web Publishing simultaneously. > > Error 802 Unable to open file is shown in the FM Server logs. > > http://help.filemaker.com/app/answers/detail/a_id/299/~/error-message%3A-802-error-is-displayed-(unable-to-open-file-)-with-filemaker > > I'm back on track having received good keys from FMI. I had not seen it discussed in this forum so wanted to share. > > Regards, > > David. > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From bob at patin.com Mon Feb 3 20:47:55 2014 From: bob at patin.com (Bob Patin) Date: Mon Feb 3 20:45:22 2014 Subject: [FX.php List] [OFF] A feature a client is asking for Message-ID: I seriously doubt this is possible, but I'll ask anyway: My client will upload several files, all related to a particular course of study. I've already written the portal for him to upload and then view the attached files for each course; what he's asking is if it's possible, upon demand by the user, to ZIP together all of these "attachments" and then make the subsequent zip file available for downloading. Has anyone heard of such a resource in PHP? Thanks, Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11 & 12 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 Mon Feb 3 20:49:14 2014 From: bob at patin.com (Bob Patin) Date: Mon Feb 3 20:46:38 2014 Subject: [FX.php List] [OFF] A feature a client is asking for In-Reply-To: References: Message-ID: <3B37518C-CA08-4D0E-B083-9C510446E1DB@patin.com> Never mind, I'm pleasantly surprised to see there is a ZIP class in PHP... Should've Googled it first... :) On Feb 3, 2014, at 9:47 PM, Bob Patin wrote: > I seriously doubt this is possible, but I'll ask anyway: > > My client will upload several files, all related to a particular course of study. > > I've already written the portal for him to upload and then view the attached files for each course; what he's asking is if it's possible, upon demand by the user, to ZIP together all of these "attachments" and then make the subsequent zip file available for downloading. > > Has anyone heard of such a resource in PHP? > > Thanks, > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11 & 12 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 beverlyvoth at gmail.com Tue Feb 4 05:27:06 2014 From: beverlyvoth at gmail.com (Beverly Voth) Date: Tue Feb 4 05:24:34 2014 Subject: [FX.php List] [OFF] A feature a client is asking for In-Reply-To: <3B37518C-CA08-4D0E-B083-9C510446E1DB@patin.com> References: <3B37518C-CA08-4D0E-B083-9C510446E1DB@patin.com> Message-ID: PHP.net has a search, too. Where would we be without these?! -- sent from my iPhone4 -- Beverly Voth -- > On Feb 3, 2014, at 9:49 PM, Bob Patin wrote: > > Never mind, I'm pleasantly surprised to see there is a ZIP class in PHP... > > Should've Googled it first... :) > >> On Feb 3, 2014, at 9:47 PM, Bob Patin wrote: >> >> I seriously doubt this is possible, but I'll ask anyway: >> >> My client will upload several files, all related to a particular course of study. >> >> I've already written the portal for him to upload and then view the attached files for each course; what he's asking is if it's possible, upon demand by the user, to ZIP together all of these "attachments" and then make the subsequent zip file available for downloading. >> >> Has anyone heard of such a resource in PHP? >> >> Thanks, >> >> Bob Patin >> Longterm Solutions >> bob@longtermsolutions.com >> 615-333-6858 >> FileMaker 9, 10, 11 & 12 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 > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From dale.bengston at gmail.com Tue Feb 4 08:51:49 2014 From: dale.bengston at gmail.com (Dale Bengston) Date: Tue Feb 4 08:49:21 2014 Subject: [FX.php List] [OFF] A feature a client is asking for In-Reply-To: References: <3B37518C-CA08-4D0E-B083-9C510446E1DB@patin.com> Message-ID: <48FB1149-0E1B-40CA-8629-9D02FFA20870@gmail.com> Yeah, and Stack Overflow, too. Dale On Feb 4, 2014, at 6:27 AM, Beverly Voth wrote: > PHP.net has a search, too. Where would we be without these?! > > -- sent from my iPhone4 -- > Beverly Voth > -- > >> On Feb 3, 2014, at 9:49 PM, Bob Patin wrote: >> >> Never mind, I'm pleasantly surprised to see there is a ZIP class in PHP... >> >> Should've Googled it first... :) >> >>> On Feb 3, 2014, at 9:47 PM, Bob Patin wrote: >>> >>> I seriously doubt this is possible, but I'll ask anyway: >>> >>> My client will upload several files, all related to a particular course of study. >>> >>> I've already written the portal for him to upload and then view the attached files for each course; what he's asking is if it's possible, upon demand by the user, to ZIP together all of these "attachments" and then make the subsequent zip file available for downloading. >>> >>> Has anyone heard of such a resource in PHP? >>> >>> Thanks, >>> >>> Bob Patin >>> Longterm Solutions >>> bob@longtermsolutions.com >>> 615-333-6858 >>> FileMaker 9, 10, 11 & 12 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 >> >> _______________________________________________ >> FX.php_List mailing list >> FX.php_List@mail.iviking.org >> http://www.iviking.org/mailman/listinfo/fx.php_list > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From tstein at innerfile.com Tue Feb 4 09:00:17 2014 From: tstein at innerfile.com (Ted Stein) Date: Tue Feb 4 08:57:41 2014 Subject: [FX.php List] FM Cake Mix - What am I missing? Message-ID: Unless I am completely missing something, the software doesn't seem to work with 2.x? 3.x is about to come out. Does anyone know if FM Cake Mix is a dead project? Ted Stein Inner File Software tstein@innerfile.com Mobile: (202) 270-6665 Office: (202) 630-FILE From dale.bengston at gmail.com Tue Feb 4 09:12:41 2014 From: dale.bengston at gmail.com (Dale Bengston) Date: Tue Feb 4 09:10:09 2014 Subject: [FX.php List] FM Cake Mix - What am I missing? In-Reply-To: References: Message-ID: Ted, Beeswax seems to have abandoned the project. Here?s the GitHub fork for FMCakeMix that supports Cake 2.x. https://github.com/matsuo/FMCakeMix Dale On Feb 4, 2014, at 10:00 AM, Ted Stein wrote: > Unless I am completely missing something, the software doesn't seem to work with 2.x? > > 3.x is about to come out. Does anyone know if FM Cake Mix is a dead project? > > > Ted Stein > Inner File Software > > tstein@innerfile.com > Mobile: (202) 270-6665 > Office: (202) 630-FILE > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From tstein at innerfile.com Tue Feb 4 09:44:06 2014 From: tstein at innerfile.com (Ted Stein) Date: Tue Feb 4 09:41:25 2014 Subject: [FX.php List] FM Cake Mix - What am I missing? In-Reply-To: References: Message-ID: <62DA525B-B0B1-49AA-B9BF-8569E16F14F3@innerfile.com> Thanks Dale! Ted Stein Inner File Software tstein@innerfile.com Mobile: (202) 270-6665 Office: (202) 630-FILE On Feb 4, 2014, at 11:12 AM, Dale Bengston wrote: > Ted, > > Beeswax seems to have abandoned the project. Here?s the GitHub fork for FMCakeMix that supports Cake 2.x. > > https://github.com/matsuo/FMCakeMix > > Dale > > > On Feb 4, 2014, at 10:00 AM, Ted Stein wrote: > >> Unless I am completely missing something, the software doesn't seem to work with 2.x? >> >> 3.x is about to come out. Does anyone know if FM Cake Mix is a dead project? >> >> >> Ted Stein >> Inner File Software >> >> tstein@innerfile.com >> Mobile: (202) 270-6665 >> Office: (202) 630-FILE >> >> _______________________________________________ >> FX.php_List mailing list >> FX.php_List@mail.iviking.org >> http://www.iviking.org/mailman/listinfo/fx.php_list > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list From dale.bengston at gmail.com Tue Feb 4 10:24:10 2014 From: dale.bengston at gmail.com (Dale Bengston) Date: Tue Feb 4 10:21:43 2014 Subject: [FX.php List] FM Cake Mix - What am I missing? In-Reply-To: <62DA525B-B0B1-49AA-B9BF-8569E16F14F3@innerfile.com> References: <62DA525B-B0B1-49AA-B9BF-8569E16F14F3@innerfile.com> Message-ID: I don?t know if there are plans to do a Cake v3 version - we may have to do it ourselves! Dale On Feb 4, 2014, at 10:44 AM, Ted Stein wrote: > Thanks Dale! > > > Ted Stein > Inner File Software > > tstein@innerfile.com > Mobile: (202) 270-6665 > Office: (202) 630-FILE > > On Feb 4, 2014, at 11:12 AM, Dale Bengston wrote: > >> Ted, >> >> Beeswax seems to have abandoned the project. Here?s the GitHub fork for FMCakeMix that supports Cake 2.x. >> >> https://github.com/matsuo/FMCakeMix >> >> Dale >> >> >> On Feb 4, 2014, at 10:00 AM, Ted Stein wrote: >> >>> Unless I am completely missing something, the software doesn't seem to work with 2.x? >>> >>> 3.x is about to come out. Does anyone know if FM Cake Mix is a dead project? >>> >>> >>> Ted Stein >>> Inner File Software >>> >>> tstein@innerfile.com >>> Mobile: (202) 270-6665 >>> Office: (202) 630-FILE >>> >>> _______________________________________________ >>> FX.php_List mailing list >>> FX.php_List@mail.iviking.org >>> http://www.iviking.org/mailman/listinfo/fx.php_list >> >> _______________________________________________ >> FX.php_List mailing list >> FX.php_List@mail.iviking.org >> http://www.iviking.org/mailman/listinfo/fx.php_list > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list