From webmaster at studentpress.org Wed Jan 2 12:05:34 2013 From: webmaster at studentpress.org (NSPA/ACP) Date: Wed Jan 2 11:13:27 2013 Subject: [FX.php List] [off] Trying to send mail thru Gmail In-Reply-To: <20120813153001.46501FA3998@mail.iviking.org> References: <20120813153001.46501FA3998@mail.iviking.org> Message-ID: <0D118C6E-2AC7-4234-8652-A5198991AEBD@studentpress.org> > I'm trying to send email from PHP using a Gmail account (and their server) and have had zero luck... Bob, Did you ever figure this out? I'm still using the old FMStudio Email Module for sending emails, and I can't see where/how to specify SSL in the FMStudio part of the module or the PEAR Mail part. I think SSL is enabled in my PHP install and port 465 isn't blocked on the server. If I use port 587, which was the port I used with our previous email provider, with smtp.gmail.com, I get a quick, standard-looking error response, but if I use 465 I see a lengthy timeout process, followed by a more cryptic error message. The link that Steve Winter provided references PHPMailer, so maybe I need to switch to that. I don't use FMStudio at all anymore, but some of their code is still hanging around in places where I haven't had any need to update it. Thanks, Marc Wood Mpls. From bob at patin.com Wed Jan 2 13:02:59 2013 From: bob at patin.com (Bob Patin) Date: Wed Jan 2 12:10:53 2013 Subject: [FX.php List] [off] Trying to send mail thru Gmail In-Reply-To: <0D118C6E-2AC7-4234-8652-A5198991AEBD@studentpress.org> References: <20120813153001.46501FA3998@mail.iviking.org> <0D118C6E-2AC7-4234-8652-A5198991AEBD@studentpress.org> Message-ID: <121A513B-41A1-48E4-B508-3DE9B2D182E0@patin.com> Hey Marc, I've never used FMStudio, but have started using PHPMailer, which is really easy to configure and makes it super-simple to send PDF attachments. If you're trying to send through GMail, here are the settings I use (this is the entire script: IsSMTP(); // enable SMTP $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail $mail->Host = 'smtp.gmail.com'; $mail->Port = 465; $mail->Username = '@gmail.com'; $mail->Password = ''; $mail->SetFrom($from, $from_name); $mail->Subject = $subject; $mail->Body = $body; $mail->AddAttachment('Tickets.pdf'); // if you have an attachment to send $mail->AddAddress($to); if(!$mail->Send()) { $error = 'Mail error: '.$mail->ErrorInfo; return false; } else { $error = 'Message sent!'; return true; } } $subject = 'Ticket Purchase Confirmation'; smtpmailer($email, 'info@longtermsolutions.com', 'Longterm Solutions', $subject, $body ); ?> In your INCLUDES folder (or wherever), you'll need these two files, which you'll get in the PHPMailer download: class.phpmailer.php class.smtp.php Good luck! Bob Patin Longterm Solutions LLC bob@longtermsolutions.com 615-333-6858 http://www.longtermsolutions.com FileMaker 9, 10 & 11 Certified Developer Member of FileMaker Business Alliance and FileMaker TechNet -- Twitter: bobpatin Google+: http://www.longtermsolutions.com/plus AIM: longterm1954 iChat: bobpatin -- Expert FileMaker Consulting FileMaker Hosting for all versions of FileMaker On Jan 2, 2013, at 1:05 PM, NSPA/ACP wrote: > Bob, > > Did you ever figure this out? I'm still using the old FMStudio Email Module for sending emails, and I can't see where/how to specify SSL in the FMStudio part of the module or the PEAR Mail part. > > I think SSL is enabled in my PHP install and port 465 isn't blocked on the server. > > If I use port 587, which was the port I used with our previous email provider, with smtp.gmail.com, I get a quick, standard-looking error response, but if I use 465 I see a lengthy timeout process, followed by a more cryptic error message. > > The link that Steve Winter provided references PHPMailer, so maybe I need to switch to that. I don't use FMStudio at all anymore, but some of their code is still hanging around in places where I haven't had any need to update it. > > Thanks, > Marc Wood -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20130102/e9352f11/attachment.html From webmaster at studentpress.org Wed Jan 2 13:10:59 2013 From: webmaster at studentpress.org (NSPA/ACP) Date: Wed Jan 2 12:18:58 2013 Subject: [FX.php List] [off] Trying to send mail thru Gmail In-Reply-To: <20120813153001.46501FA3998@mail.iviking.org> References: <20120813153001.46501FA3998@mail.iviking.org> Message-ID: <1230ECF4-43B7-40F1-9E89-63991DCAE0D7@studentpress.org> Sure enough, I found the solution mere hours after sending? the hostname of smtp.gmail.com has to have "ssl://" in front of it in addition to using port 465. Marc Wood Mpls. From jschwartz at exit445.com Tue Jan 22 16:15:39 2013 From: jschwartz at exit445.com (Jonathan Schwartz) Date: Tue Jan 22 15:22:09 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing Message-ID: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> Well, this one sucked 2 days of my time trying to resolve..... The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. The solution is to use an older version of PHPMailer or a newer version of PHP. Hope that helps. Jonathan Jonathan Schwartz Exit 445 Group jonathan@exit445.com www.exit445.com cell: 415-370-5011 From leo at finalresort.org Tue Jan 22 16:44:21 2013 From: leo at finalresort.org (Leo R. Lundgren) Date: Tue Jan 22 15:50:51 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> Message-ID: <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> Here's something you guys might find interesting: http://eden.openovate.com/ 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: > Well, this one sucked 2 days of my time trying to resolve..... > > The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: > http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 > > The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. > > The solution is to use an older version of PHPMailer or a newer version of PHP. > > Hope that helps. > > Jonathan > > > > > Jonathan Schwartz > Exit 445 Group > jonathan@exit445.com > www.exit445.com > cell: 415-370-5011 > > > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list -| From jschwartz at exit445.com Tue Jan 22 20:40:15 2013 From: jschwartz at exit445.com (Jonathan Schwartz) Date: Tue Jan 22 19:46:45 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> Message-ID: <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> Interesting. Do you use it? Jonathan Schwartz Exit 445 Group 415-370-5011 On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: > Here's something you guys might find interesting: http://eden.openovate.com/ > > > 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: > >> Well, this one sucked 2 days of my time trying to resolve..... >> >> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >> >> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >> >> The solution is to use an older version of PHPMailer or a newer version of PHP. >> >> Hope that helps. >> >> Jonathan >> >> >> >> >> Jonathan Schwartz >> Exit 445 Group >> jonathan@exit445.com >> www.exit445.com >> cell: 415-370-5011 >> >> >> >> _______________________________________________ >> 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 leo at finalresort.org Wed Jan 23 02:51:07 2013 From: leo at finalresort.org (Leo R. Lundgren) Date: Wed Jan 23 01:57:37 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> Message-ID: <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: > Interesting. Do you use it? > > Jonathan Schwartz > Exit 445 Group > 415-370-5011 > > On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: > >> Here's something you guys might find interesting: http://eden.openovate.com/ >> >> >> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >> >>> Well, this one sucked 2 days of my time trying to resolve..... >>> >>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>> >>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>> >>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>> >>> Hope that helps. >>> >>> Jonathan >>> >>> >>> >>> >>> Jonathan Schwartz >>> Exit 445 Group >>> jonathan@exit445.com >>> www.exit445.com >>> cell: 415-370-5011 >>> >>> >>> >>> _______________________________________________ >>> 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 leo at finalresort.org Wed Jan 23 02:52:27 2013 From: leo at finalresort.org (Leo R. Lundgren) Date: Wed Jan 23 01:58:57 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> Message-ID: I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: > Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. > > 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: > >> Interesting. Do you use it? >> >> Jonathan Schwartz >> Exit 445 Group >> 415-370-5011 >> >> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >> >>> Here's something you guys might find interesting: http://eden.openovate.com/ >>> >>> >>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>> >>>> Well, this one sucked 2 days of my time trying to resolve..... >>>> >>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>> >>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>> >>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>> >>>> Hope that helps. >>>> >>>> Jonathan >>>> >>>> >>>> >>>> >>>> Jonathan Schwartz >>>> Exit 445 Group >>>> jonathan@exit445.com >>>> www.exit445.com >>>> cell: 415-370-5011 >>>> >>>> >>>> >>>> _______________________________________________ >>>> 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 > > > > -| > > _______________________________________________ > 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 Wed Jan 23 10:05:32 2013 From: dale.bengston at gmail.com (Dale Bengston) Date: Wed Jan 23 09:12:04 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> Message-ID: On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! Dale On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: > I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. > > 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: > >> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. >> >> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: >> >>> Interesting. Do you use it? >>> >>> Jonathan Schwartz >>> Exit 445 Group >>> 415-370-5011 >>> >>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >>> >>>> Here's something you guys might find interesting: http://eden.openovate.com/ >>>> >>>> >>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>>> >>>>> Well, this one sucked 2 days of my time trying to resolve..... >>>>> >>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>>> >>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>>> >>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>>> >>>>> Hope that helps. >>>>> >>>>> Jonathan >>>>> >>>>> >>>>> >>>>> >>>>> Jonathan Schwartz >>>>> Exit 445 Group >>>>> jonathan@exit445.com >>>>> www.exit445.com >>>>> cell: 415-370-5011 >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> 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 >> >> >> >> -| >> >> _______________________________________________ >> 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 malcolm at notyourhomework.net Wed Jan 23 14:38:12 2013 From: malcolm at notyourhomework.net (Malcolm Fitzgerald) Date: Wed Jan 23 13:44:39 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> Message-ID: <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> That's great. Care to share your setup instructions? I was looking at Cake/FM a while back and the fact that it was stuck in the past discouraged me. Malcolm On 24/01/2013, at 4:05 AM, Dale Bengston wrote: > On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. > > I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! > > Dale > > On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: > >> I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. >> >> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: >> >>> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. >>> >>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: >>> >>>> Interesting. Do you use it? >>>> >>>> Jonathan Schwartz >>>> Exit 445 Group >>>> 415-370-5011 >>>> >>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >>>> >>>>> Here's something you guys might find interesting: http://eden.openovate.com/ >>>>> >>>>> >>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>>>> >>>>>> Well, this one sucked 2 days of my time trying to resolve..... >>>>>> >>>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>>>> >>>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>>>> >>>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>>>> >>>>>> Hope that helps. >>>>>> >>>>>> Jonathan >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Jonathan Schwartz >>>>>> Exit 445 Group >>>>>> jonathan@exit445.com >>>>>> www.exit445.com >>>>>> cell: 415-370-5011 >>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> 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 >>> >>> >>> >>> -| >>> >>> _______________________________________________ >>> 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 tim.webko at gmail.com Wed Jan 23 14:52:45 2013 From: tim.webko at gmail.com (Tim 'Webko' Booth) Date: Wed Jan 23 13:59:10 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> Message-ID: Yeah, I'd love to use Cake instead of handrolling and rerolling stuff - been meaning to redo a couple of websites of my own to use a framework, proper OO PHP, Ajax etc etc etc... On 24 January 2013 08:38, Malcolm Fitzgerald wrote: > That's great. Care to share your setup instructions? > > I was looking at Cake/FM a while back and the fact that it was stuck in > the past discouraged me. > > Malcolm > > > On 24/01/2013, at 4:05 AM, Dale Bengston wrote: > > > On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker > via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled > out on Cake.php v1.3. > > > > I'm doing all new development with Cake.php, so this is great news. Now > I can develop for MySQL, MSSQL and FMP within a single rapid-development > framework. And it uses FX.php for the FMP part. Neat! > > > > Dale > > > > On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren > wrote: > > > >> I was mainly thinking about its mail features, now that you spoke about > PHPMailer being problematic. I never liked PHPMailer, and while I am happy > with SwiftMailer I do agree that it is slightly overengineered. Sp why not > check this one out, I figured. > >> > >> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: > >> > >>> Nope, but I think I'm going to try it some day, I don't see a reason > why not :) But I haven't looked at the code of it yet or anything. > >>> > >>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: > >>> > >>>> Interesting. Do you use it? > >>>> > >>>> Jonathan Schwartz > >>>> Exit 445 Group > >>>> 415-370-5011 > >>>> > >>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" > wrote: > >>>> > >>>>> Here's something you guys might find interesting: > http://eden.openovate.com/ > >>>>> > >>>>> > >>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: > >>>>> > >>>>>> Well, this one sucked 2 days of my time trying to resolve..... > >>>>>> > >>>>>> The current version of PHPMailer (5.2.2) has a defective function > when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web > Publishing. The error is discussed here: > >>>>>> > http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 > >>>>>> > >>>>>> The defective function is a preg_match inside class.phpmailer.php > that evaluates where or not a submitted email is valid or not. With the > bug, it fails everything. > >>>>>> > >>>>>> The solution is to use an older version of PHPMailer or a newer > version of PHP. > >>>>>> > >>>>>> Hope that helps. > >>>>>> > >>>>>> Jonathan > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> Jonathan Schwartz > >>>>>> Exit 445 Group > >>>>>> jonathan@exit445.com > >>>>>> www.exit445.com > >>>>>> cell: 415-370-5011 > >>>>>> > >>>>>> > >>>>>> > >>>>>> _______________________________________________ > >>>>>> 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 > >>> > >>> > >>> > >>> -| > >>> > >>> _______________________________________________ > >>> 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 > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20130124/f33a5df6/attachment-0001.html From dale.bengston at gmail.com Wed Jan 23 19:34:50 2013 From: dale.bengston at gmail.com (Dale Bengston) Date: Wed Jan 23 18:41:18 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> Message-ID: <8E05208D-3166-43A3-BAD3-92B9B8E50B3C@gmail.com> Malcolm and Webko, Yes on all fronts. I am done rolling my own php frameworks. Cake was not an easy thing to learn at the alarming rate my synapses are stiffening, but it was worth the effort to learn and implement a true MVC framework with a real security model. The the built-ins - like mailing and security and form construction - are great. Beyond that, Cake 2.0 has excellent integration with jQuery, which has sped up my AJAX coding significantly. And it's been easy to extend Cake with the typical tools of our trade like tcpdf and PHPExcel. And now (hooray!) FX.php again. Okay, so Cake.php is here: http://cakephp.org [look for the big download button] And the latest FMCakeMix is here: https://github.com/matsuo/FMCakeMix [developer claims it works with FMS12, I'm using it with FMS11] And we all know where FX.php is, but here's the latest release: https://github.com/yodarunamok/fxphp When I built my FileMaker test, I started from scratch. I downloaded Cake.php 2.2.5. And followed the instructions for installing here: http://book.cakephp.org/2.0/en/getting-started.html Then I used the instructions on the FMCakeMix github page (look for the User Guide.pdf) to put FMCakeMix and FX.php in the right place, set up the database connection, etc. Then I replicated a query from my last remaining (c 2005) FMP FX site. It was all quite easy compared to some installations I've done. In fact, it worked on the first try and I got records back. Instant gratification! Some notes: * I used a different syntax to instantiate FX.php in FMCakeMix so I didn't have to have all the FX.php files loose in my Vendors folder, but could put them in a sub-folder. * I figured out how to override the default layout so I could use a different layout for each Controller action if I want to. * My second test query contained a neq operator, so it took me a while to figure out how to make that work - there is no documentation of this feature, and it doesn't work using the Cake default method. I won't bore the list with extra details, but if you need more on these tweaks I'll put them in subsequent messages. Hope this helps, Dale On Jan 23, 2013, at 3:52 PM, Tim 'Webko' Booth wrote: > Yeah, I'd love to use Cake instead of handrolling and rerolling stuff - been meaning to redo a couple of websites of my own to use a framework, proper OO PHP, Ajax etc etc etc... > > On 24 January 2013 08:38, Malcolm Fitzgerald wrote: > That's great. Care to share your setup instructions? > > I was looking at Cake/FM a while back and the fact that it was stuck in the past discouraged me. > > Malcolm > > > On 24/01/2013, at 4:05 AM, Dale Bengston wrote: > > > On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. > > > > I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! > > > > Dale > > > > On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: > > > >> I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. > >> > >> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: > >> > >>> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. > >>> > >>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: > >>> > >>>> Interesting. Do you use it? > >>>> > >>>> Jonathan Schwartz > >>>> Exit 445 Group > >>>> 415-370-5011 > >>>> > >>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: > >>>> > >>>>> Here's something you guys might find interesting: http://eden.openovate.com/ > >>>>> > >>>>> > >>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: > >>>>> > >>>>>> Well, this one sucked 2 days of my time trying to resolve..... > >>>>>> > >>>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: > >>>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 > >>>>>> > >>>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. > >>>>>> > >>>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. > >>>>>> > >>>>>> Hope that helps. > >>>>>> > >>>>>> Jonathan > >>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> Jonathan Schwartz > >>>>>> Exit 445 Group > >>>>>> jonathan@exit445.com > >>>>>> www.exit445.com > >>>>>> cell: 415-370-5011 > >>>>>> > >>>>>> > >>>>>> > >>>>>> _______________________________________________ > >>>>>> 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 > >>> > >>> > >>> > >>> -| > >>> > >>> _______________________________________________ > >>> 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 > > _______________________________________________ > 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 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20130123/8b3583d5/attachment.html From andersm at mac.com Thu Jan 24 10:56:23 2013 From: andersm at mac.com (Anders Monsen) Date: Thu Jan 24 10:02:47 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> Message-ID: <510175C7.3080309@mac.com> Same here. Tried Cake and saw the version plus had other issues. Went with CodeIgniter and that seemed to work, but had its own issues. Anders On 1/23/13 3:38 PM, Malcolm Fitzgerald wrote: > That's great. Care to share your setup instructions? > > I was looking at Cake/FM a while back and the fact that it was stuck in the past discouraged me. > > Malcolm > > > On 24/01/2013, at 4:05 AM, Dale Bengston wrote: > >> On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. >> >> I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! >> >> Dale >> >> On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: >> >>> I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. >>> >>> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: >>> >>>> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. >>>> >>>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: >>>> >>>>> Interesting. Do you use it? >>>>> >>>>> Jonathan Schwartz >>>>> Exit 445 Group >>>>> 415-370-5011 >>>>> >>>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >>>>> >>>>>> Here's something you guys might find interesting: http://eden.openovate.com/ >>>>>> >>>>>> >>>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>>>>> >>>>>>> Well, this one sucked 2 days of my time trying to resolve..... >>>>>>> >>>>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>>>>> >>>>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>>>>> >>>>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>>>>> >>>>>>> Hope that helps. >>>>>>> >>>>>>> Jonathan >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> Jonathan Schwartz >>>>>>> Exit 445 Group >>>>>>> jonathan@exit445.com >>>>>>> www.exit445.com >>>>>>> cell: 415-370-5011 >>>>>>> >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> 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 >>>> >>>> >>>> -| >>>> >>>> _______________________________________________ >>>> 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 > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > > From aragon at umich.edu Thu Jan 24 14:36:03 2013 From: aragon at umich.edu (Michael McIntyre) Date: Thu Jan 24 13:42:44 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> Message-ID: I'm looking for the new 'fmalt' version of FX along with config info; not finding it on GitHub. Can you help? On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen wrote: > Absolutely. If anyone is in a position to test the new grammar (it's referred to as 'fmalt') just let me know and I'll forward you the files. Best, > > --Chris > > On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: > >> Yeah! ask for some testers if you need, Chris!! :) >> >> Beverly >> >> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: >> >>> And just to be clear, it's not up there... yet. I'll post to the list here when I do so. It will be soon, I just want to be sure that everything is tidy before I post it for general consumption. Best, >>> >>> --Chris >>> >>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: >>> >>>> Kevin, Chris announced it (January 23, 2012) on this list. :) >>>> >>>> https://github.com/yodarunamok/fxphp >>>> >>>> and it's linked from the iviking site: >>>> http://iviking.org/FX.php/ >>>> >>>> Beverly >>>> >>>> >>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: >>>> >>>>> I'll take a copy for testing if it will help Chris. Never used Github >>>>> before, so no idea about that. >>>>> >>>>> Kev >>>>> >>>>> -- >>>>> Kevin Futter >>>>> Webmaster, St. Bernard's College >>>>> http://www.sbc.vic.edu.au/ >>>>> >>>>> >>>>> >>>>> >>>>> On 4/09/12 4:09 PM, "Chris Hansen" wrote: >>>>> >>>>>> Yes, I think we're about there. (Troy and I have been doing some testing >>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day or >>>>>> so), but if anyone would like an advance copy, let me know. It would be >>>>>> nice to have some other input on whether there are problems. Best, >>>>>> >>>>>> --Chris >>>>>> >>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: >>>>>> >>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline for >>>>>>> upgrading our system to FM 12 at the end of September, and since FM >>>>>>> can't >>>>>>> seem to fix the problem, I'm relying on you! >>>>>>> >>>>>>> Kev >>>>>>> >>>>>>> -- >>>>>>> Kevin Futter >>>>>>> Webmaster, St. Bernard's College >>>>>>> http://www.sbc.vic.edu.au/ >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" wrote: >>>>>>> >>>>>>>> Okay gang, >>>>>>>> >>>>>>>> I'll add support in FX.php for the other grammar this coming week. It >>>>>>>> really shouldn't be too tough, and I don't think that the performance >>>>>>>> hit >>>>>>>> should be too high. I can't guarantee that I'll have time until next >>>>>>>> Saturday to do this. Troy, would that work for you? >>>>>>>> >>>>>>>> Best, >>>>>>>> >>>>>>>> --Chris >>>>>>>> >>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: >>>>>>>> >>>>>>>>> It has been mentioned that having FX use the other XML query grammar >>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. >>>>>>>>> >>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they say it >>>>>>>>> did) I wonder how I could get someone to work on FX.php so that this >>>>>>>>> alternate grammar could be used? I don't think I'm up to the task >>>>>>>>> myself. >>>>>>>>> >>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 months >>>>>>>>> now while I waited for the update, and it is not as promised, as far >>>>>>>>> as >>>>>>>>> I can tell. >>>>>>>>> >>>>>>>>> Could I pay some one? How much might it be? We don't have a lot of >>>>>>>>> funds. >>>>>>>>> >>>>>>>>> -Troy >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> 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 >>>>>>> >>>>>>> This e-mail and any attachments may be confidential. You must not >>>>>>> disclose or use the information in this e-mail if you are not the >>>>>>> intended recipient. If you have received this e-mail in error, please >>>>>>> notify us immediately and delete the e-mail and all copies. The College >>>>>>> does not guarantee that this e-mail is virus or error free. The attached >>>>>>> files are provided and may only be used on the basis that the user >>>>>>> assumes all responsibility for any loss, damage or consequence resulting >>>>>>> directly or indirectly from the use of the attached files, whether >>>>>>> caused by the negligence of the sender or not. The content and opinions >>>>>>> in this e-mail are not necessarily those of the College. >>>>>>> _______________________________________________ >>>>>>> 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 >>>>> >>>>> This e-mail and any attachments may be confidential. You must not disclose or use the information in this e-mail if you are not the intended recipient. If you have received this e-mail in error, please notify us immediately and delete the e-mail and all copies. The College does not guarantee that this e-mail is virus or error free. The attached files are provided and may only be used on the basis that the user assumes all responsibility for any loss, damage or consequence resulting directly or indirectly from the use of the attached files, whether caused by the negligence of the sender or not. The content and opinions in this e-mail are not necessarily those of the College. >>>>> _______________________________________________ >>>>> 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 >> >> _______________________________________________ >> 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 dsomar at gmail.com Fri Jan 25 05:13:29 2013 From: dsomar at gmail.com (Denis Somar) Date: Fri Jan 25 04:19:53 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: <510175C7.3080309@mac.com> References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> <510175C7.3080309@mac.com> Message-ID: Were you able to get code igniter to work with fx? I had no luck with this. Denis On Jan 24, 2013, at 12:56 PM, Anders Monsen wrote: > Same here. Tried Cake and saw the version plus had other issues. Went with CodeIgniter and that seemed to work, but had its own issues. > > Anders > > > On 1/23/13 3:38 PM, Malcolm Fitzgerald wrote: >> That's great. Care to share your setup instructions? >> >> I was looking at Cake/FM a while back and the fact that it was stuck in the past discouraged me. >> >> Malcolm >> >> >> On 24/01/2013, at 4:05 AM, Dale Bengston wrote: >> >>> On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. >>> >>> I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! >>> >>> Dale >>> >>> On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: >>> >>>> I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. >>>> >>>> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: >>>> >>>>> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. >>>>> >>>>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: >>>>> >>>>>> Interesting. Do you use it? >>>>>> >>>>>> Jonathan Schwartz >>>>>> Exit 445 Group >>>>>> 415-370-5011 >>>>>> >>>>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >>>>>> >>>>>>> Here's something you guys might find interesting: http://eden.openovate.com/ >>>>>>> >>>>>>> >>>>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>>>>>> >>>>>>>> Well, this one sucked 2 days of my time trying to resolve..... >>>>>>>> >>>>>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>>>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>>>>>> >>>>>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>>>>>> >>>>>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>>>>>> >>>>>>>> Hope that helps. >>>>>>>> >>>>>>>> Jonathan >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> Jonathan Schwartz >>>>>>>> Exit 445 Group >>>>>>>> jonathan@exit445.com >>>>>>>> www.exit445.com >>>>>>>> cell: 415-370-5011 >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> 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 >>>>> >>>>> >>>>> -| >>>>> >>>>> _______________________________________________ >>>>> 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 >> _______________________________________________ >> 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 andersm at mac.com Fri Jan 25 08:07:52 2013 From: andersm at mac.com (Anders Monsen) Date: Fri Jan 25 07:14:30 2013 Subject: [FX.php List] Heads up: Bug in PHPMailer with PHP version in FM 11 Web Publishing In-Reply-To: References: <81BACEA7-E979-4C19-8B72-FBA39CB80AFD@exit445.com> <93A18AC9-6558-46FC-8EB8-CC36020588A6@finalresort.org> <6611393C-8388-431B-A57A-0DE4AB1CBD90@exit445.com> <4DDDE2D0-8998-4A03-8C62-A157075863BB@finalresort.org> <33327C02-6958-4164-990F-A3EB1B28DF03@notyourhomework.net> <510175C7.3080309@mac.com> Message-ID: <51029FC8.90608@mac.com> First time I tried CodeIgniter - around two years ago - I was able to get it to work with FX. However, when I tried again last fall it didn't seem to work again right away, so I tried the API and succeeded. There were instructions on getting FX to work with CI, but I remember that the first time I had to make several changes, and could not locate my notes when I tried with the latest version. Wish I knew more about CI, though, as I don't have all functionality working in terms of editing and creating records, as the proof of concept never evolved into a project. Anders On 1/25/13 6:13 AM, Denis Somar wrote: > Were you able to get code igniter to work with fx? I had no luck with this. > > Denis > > On Jan 24, 2013, at 12:56 PM, Anders Monsen wrote: > >> Same here. Tried Cake and saw the version plus had other issues. Went with CodeIgniter and that seemed to work, but had its own issues. >> >> Anders >> >> >> On 1/23/13 3:38 PM, Malcolm Fitzgerald wrote: >>> That's great. Care to share your setup instructions? >>> >>> I was looking at Cake/FM a while back and the fact that it was stuck in the past discouraged me. >>> >>> Malcolm >>> >>> >>> On 24/01/2013, at 4:05 AM, Dale Bengston wrote: >>> >>>> On a related note, yesterday I got Cake.php v2.5.5 talking to FileMaker via FMCakeMix and FX.php. Until very recently, FMCakeMix had been stalled out on Cake.php v1.3. >>>> >>>> I'm doing all new development with Cake.php, so this is great news. Now I can develop for MySQL, MSSQL and FMP within a single rapid-development framework. And it uses FX.php for the FMP part. Neat! >>>> >>>> Dale >>>> >>>> On Jan 23, 2013, at 3:52 AM, Leo R. Lundgren wrote: >>>> >>>>> I was mainly thinking about its mail features, now that you spoke about PHPMailer being problematic. I never liked PHPMailer, and while I am happy with SwiftMailer I do agree that it is slightly overengineered. Sp why not check this one out, I figured. >>>>> >>>>> 23 jan 2013 kl. 10.51 skrev Leo R. Lundgren: >>>>> >>>>>> Nope, but I think I'm going to try it some day, I don't see a reason why not :) But I haven't looked at the code of it yet or anything. >>>>>> >>>>>> 23 jan 2013 kl. 04.40 skrev Jonathan Schwartz: >>>>>> >>>>>>> Interesting. Do you use it? >>>>>>> >>>>>>> Jonathan Schwartz >>>>>>> Exit 445 Group >>>>>>> 415-370-5011 >>>>>>> >>>>>>> On Jan 22, 2013, at 3:44 PM, "Leo R. Lundgren" wrote: >>>>>>> >>>>>>>> Here's something you guys might find interesting: http://eden.openovate.com/ >>>>>>>> >>>>>>>> >>>>>>>> 23 jan 2013 kl. 00.15 skrev Jonathan Schwartz: >>>>>>>> >>>>>>>>> Well, this one sucked 2 days of my time trying to resolve..... >>>>>>>>> >>>>>>>>> The current version of PHPMailer (5.2.2) has a defective function when run with PHP 5.3.1, the PHP version that is installed by FMS 11 Web Publishing. The error is discussed here: >>>>>>>>> http://code.google.com/a/apache-extras.org/p/phpmailer/issues/detail?id=124 >>>>>>>>> >>>>>>>>> The defective function is a preg_match inside class.phpmailer.php that evaluates where or not a submitted email is valid or not. With the bug, it fails everything. >>>>>>>>> >>>>>>>>> The solution is to use an older version of PHPMailer or a newer version of PHP. >>>>>>>>> >>>>>>>>> Hope that helps. >>>>>>>>> >>>>>>>>> Jonathan >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> Jonathan Schwartz >>>>>>>>> Exit 445 Group >>>>>>>>> jonathan@exit445.com >>>>>>>>> www.exit445.com >>>>>>>>> cell: 415-370-5011 >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> 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 >>>>>> >>>>>> -| >>>>>> >>>>>> _______________________________________________ >>>>>> 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 >>> _______________________________________________ >>> 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 whatdoyouwant at gmail.com Sun Jan 27 18:51:17 2013 From: whatdoyouwant at gmail.com (Nick) Date: Sun Jan 27 17:57:26 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> Message-ID: You can look on github's pull requests. mine has been sitting there for some time (ecsos) On Thu, Jan 24, 2013 at 3:36 PM, Michael McIntyre wrote: > I'm looking for the new 'fmalt' version of FX along with config info; > not finding it on GitHub. Can you help? > > On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen wrote: > > Absolutely. If anyone is in a position to test the new grammar (it's > referred to as 'fmalt') just let me know and I'll forward you the files. > Best, > > > > --Chris > > > > On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: > > > >> Yeah! ask for some testers if you need, Chris!! :) > >> > >> Beverly > >> > >> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: > >> > >>> And just to be clear, it's not up there... yet. I'll post to the list > here when I do so. It will be soon, I just want to be sure that everything > is tidy before I post it for general consumption. Best, > >>> > >>> --Chris > >>> > >>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: > >>> > >>>> Kevin, Chris announced it (January 23, 2012) on this list. :) > >>>> > >>>> https://github.com/yodarunamok/fxphp > >>>> > >>>> and it's linked from the iviking site: > >>>> http://iviking.org/FX.php/ > >>>> > >>>> Beverly > >>>> > >>>> > >>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: > >>>> > >>>>> I'll take a copy for testing if it will help Chris. Never used Github > >>>>> before, so no idea about that. > >>>>> > >>>>> Kev > >>>>> > >>>>> -- > >>>>> Kevin Futter > >>>>> Webmaster, St. Bernard's College > >>>>> http://www.sbc.vic.edu.au/ > >>>>> > >>>>> > >>>>> > >>>>> > >>>>> On 4/09/12 4:09 PM, "Chris Hansen" wrote: > >>>>> > >>>>>> Yes, I think we're about there. (Troy and I have been doing some > testing > >>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day > or > >>>>>> so), but if anyone would like an advance copy, let me know. It > would be > >>>>>> nice to have some other input on whether there are problems. Best, > >>>>>> > >>>>>> --Chris > >>>>>> > >>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: > >>>>>> > >>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline > for > >>>>>>> upgrading our system to FM 12 at the end of September, and since FM > >>>>>>> can't > >>>>>>> seem to fix the problem, I'm relying on you! > >>>>>>> > >>>>>>> Kev > >>>>>>> > >>>>>>> -- > >>>>>>> Kevin Futter > >>>>>>> Webmaster, St. Bernard's College > >>>>>>> http://www.sbc.vic.edu.au/ > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" wrote: > >>>>>>> > >>>>>>>> Okay gang, > >>>>>>>> > >>>>>>>> I'll add support in FX.php for the other grammar this coming > week. It > >>>>>>>> really shouldn't be too tough, and I don't think that the > performance > >>>>>>>> hit > >>>>>>>> should be too high. I can't guarantee that I'll have time until > next > >>>>>>>> Saturday to do this. Troy, would that work for you? > >>>>>>>> > >>>>>>>> Best, > >>>>>>>> > >>>>>>>> --Chris > >>>>>>>> > >>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: > >>>>>>>> > >>>>>>>>> It has been mentioned that having FX use the other XML query > grammar > >>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. > >>>>>>>>> > >>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they > say it > >>>>>>>>> did) I wonder how I could get someone to work on FX.php so that > this > >>>>>>>>> alternate grammar could be used? I don't think I'm up to the task > >>>>>>>>> myself. > >>>>>>>>> > >>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 > months > >>>>>>>>> now while I waited for the update, and it is not as promised, as > far > >>>>>>>>> as > >>>>>>>>> I can tell. > >>>>>>>>> > >>>>>>>>> Could I pay some one? How much might it be? We don't have a lot > of > >>>>>>>>> funds. > >>>>>>>>> > >>>>>>>>> -Troy > >>>>>>>>> > >>>>>>>>> _______________________________________________ > >>>>>>>>> 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 > >>>>>>> > >>>>>>> This e-mail and any attachments may be confidential. You must not > >>>>>>> disclose or use the information in this e-mail if you are not the > >>>>>>> intended recipient. If you have received this e-mail in error, > please > >>>>>>> notify us immediately and delete the e-mail and all copies. The > College > >>>>>>> does not guarantee that this e-mail is virus or error free. The > attached > >>>>>>> files are provided and may only be used on the basis that the user > >>>>>>> assumes all responsibility for any loss, damage or consequence > resulting > >>>>>>> directly or indirectly from the use of the attached files, whether > >>>>>>> caused by the negligence of the sender or not. The content and > opinions > >>>>>>> in this e-mail are not necessarily those of the College. > >>>>>>> _______________________________________________ > >>>>>>> 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 > >>>>> > >>>>> This e-mail and any attachments may be confidential. You must not > disclose or use the information in this e-mail if you are not the intended > recipient. If you have received this e-mail in error, please notify us > immediately and delete the e-mail and all copies. The College does not > guarantee that this e-mail is virus or error free. The attached files are > provided and may only be used on the basis that the user assumes all > responsibility for any loss, damage or consequence resulting directly or > indirectly from the use of the attached files, whether caused by the > negligence of the sender or not. The content and opinions in this e-mail > are not necessarily those of the College. > >>>>> _______________________________________________ > >>>>> 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 > >> > >> _______________________________________________ > >> 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 > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20130127/5a954124/attachment-0001.html From leo at finalresort.org Mon Jan 28 04:51:45 2013 From: leo at finalresort.org (Leo R. Lundgren) Date: Mon Jan 28 03:57:57 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> Message-ID: Why isn't it accepted? I know that there has been several months since this question was asked, but I haven't seen a response from Chris yet. If it works, merge it! 28 jan 2013 kl. 02.51 skrev Nick: > You can look on github's pull requests. mine has been sitting there for some time (ecsos) > > > On Thu, Jan 24, 2013 at 3:36 PM, Michael McIntyre wrote: > I'm looking for the new 'fmalt' version of FX along with config info; > not finding it on GitHub. Can you help? > > On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen wrote: > > Absolutely. If anyone is in a position to test the new grammar (it's referred to as 'fmalt') just let me know and I'll forward you the files. Best, > > > > --Chris > > > > On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: > > > >> Yeah! ask for some testers if you need, Chris!! :) > >> > >> Beverly > >> > >> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: > >> > >>> And just to be clear, it's not up there... yet. I'll post to the list here when I do so. It will be soon, I just want to be sure that everything is tidy before I post it for general consumption. Best, > >>> > >>> --Chris > >>> > >>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: > >>> > >>>> Kevin, Chris announced it (January 23, 2012) on this list. :) > >>>> > >>>> https://github.com/yodarunamok/fxphp > >>>> > >>>> and it's linked from the iviking site: > >>>> http://iviking.org/FX.php/ > >>>> > >>>> Beverly > >>>> > >>>> > >>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: > >>>> > >>>>> I'll take a copy for testing if it will help Chris. Never used Github > >>>>> before, so no idea about that. > >>>>> > >>>>> Kev > >>>>> > >>>>> -- > >>>>> Kevin Futter > >>>>> Webmaster, St. Bernard's College > >>>>> http://www.sbc.vic.edu.au/ > >>>>> > >>>>> > >>>>> > >>>>> > >>>>> On 4/09/12 4:09 PM, "Chris Hansen" wrote: > >>>>> > >>>>>> Yes, I think we're about there. (Troy and I have been doing some testing > >>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day or > >>>>>> so), but if anyone would like an advance copy, let me know. It would be > >>>>>> nice to have some other input on whether there are problems. Best, > >>>>>> > >>>>>> --Chris > >>>>>> > >>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: > >>>>>> > >>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline for > >>>>>>> upgrading our system to FM 12 at the end of September, and since FM > >>>>>>> can't > >>>>>>> seem to fix the problem, I'm relying on you! > >>>>>>> > >>>>>>> Kev > >>>>>>> > >>>>>>> -- > >>>>>>> Kevin Futter > >>>>>>> Webmaster, St. Bernard's College > >>>>>>> http://www.sbc.vic.edu.au/ > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> > >>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" wrote: > >>>>>>> > >>>>>>>> Okay gang, > >>>>>>>> > >>>>>>>> I'll add support in FX.php for the other grammar this coming week. It > >>>>>>>> really shouldn't be too tough, and I don't think that the performance > >>>>>>>> hit > >>>>>>>> should be too high. I can't guarantee that I'll have time until next > >>>>>>>> Saturday to do this. Troy, would that work for you? > >>>>>>>> > >>>>>>>> Best, > >>>>>>>> > >>>>>>>> --Chris > >>>>>>>> > >>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: > >>>>>>>> > >>>>>>>>> It has been mentioned that having FX use the other XML query grammar > >>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. > >>>>>>>>> > >>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they say it > >>>>>>>>> did) I wonder how I could get someone to work on FX.php so that this > >>>>>>>>> alternate grammar could be used? I don't think I'm up to the task > >>>>>>>>> myself. > >>>>>>>>> > >>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 months > >>>>>>>>> now while I waited for the update, and it is not as promised, as far > >>>>>>>>> as > >>>>>>>>> I can tell. > >>>>>>>>> > >>>>>>>>> Could I pay some one? How much might it be? We don't have a lot of > >>>>>>>>> funds. > >>>>>>>>> > >>>>>>>>> -Troy > >>>>>>>>> > >>>>>>>>> _______________________________________________ > >>>>>>>>> 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 > >>>>>>> > >>>>>>> This e-mail and any attachments may be confidential. You must not > >>>>>>> disclose or use the information in this e-mail if you are not the > >>>>>>> intended recipient. If you have received this e-mail in error, please > >>>>>>> notify us immediately and delete the e-mail and all copies. The College > >>>>>>> does not guarantee that this e-mail is virus or error free. The attached > >>>>>>> files are provided and may only be used on the basis that the user > >>>>>>> assumes all responsibility for any loss, damage or consequence resulting > >>>>>>> directly or indirectly from the use of the attached files, whether > >>>>>>> caused by the negligence of the sender or not. The content and opinions > >>>>>>> in this e-mail are not necessarily those of the College. > >>>>>>> _______________________________________________ > >>>>>>> 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 > >>>>> > >>>>> This e-mail and any attachments may be confidential. You must not disclose or use the information in this e-mail if you are not the intended recipient. If you have received this e-mail in error, please notify us immediately and delete the e-mail and all copies. The College does not guarantee that this e-mail is virus or error free. The attached files are provided and may only be used on the basis that the user assumes all responsibility for any loss, damage or consequence resulting directly or indirectly from the use of the attached files, whether caused by the negligence of the sender or not. The content and opinions in this e-mail are not necessarily those of the College. > >>>>> _______________________________________________ > >>>>> 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 > >> > >> _______________________________________________ > >> 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 > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list -| -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20130128/ce5f28ec/attachment.html From aragon at umich.edu Mon Jan 28 14:13:27 2013 From: aragon at umich.edu (Michael McIntyre) Date: Mon Jan 28 13:19:35 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> Message-ID: <5106E9F7.6090307@umich.edu> What config (in which files) is needed to invoke the fmresultset.xml grammer & RetrieveFM7VerboseData.class.php? I set $dataServerType = 'fmalt' to no avail... -mm p.s. Thanks to Chris for merging fmalt files into the master. Upon 1/28/13 6:51 AM, Leo R. Lundgren did write: > Why isn't it accepted? I know that there has been several months since this question was asked, but I haven't seen a response from Chris yet. > > If it works, merge it! > > > 28 jan 2013 kl. 02.51 skrev Nick: > >> You can look on github's pull requests. mine has been sitting there for some time (ecsos) >> >> >> On Thu, Jan 24, 2013 at 3:36 PM, Michael McIntyre > wrote: >> >> I'm looking for the new 'fmalt' version of FX along with config info; >> not finding it on GitHub. Can you help? >> >> On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen > wrote: >> > Absolutely. If anyone is in a position to test the new grammar (it's referred to as 'fmalt') just let me know and I'll forward you the files. Best, >> > >> > --Chris >> > >> > On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: >> > >> >> Yeah! ask for some testers if you need, Chris!! :) >> >> >> >> Beverly >> >> >> >> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: >> >> >> >>> And just to be clear, it's not up there... yet. I'll post to the list here when I do so. It will be soon, I just want to be sure that everything is tidy before I post it for general consumption. Best, >> >>> >> >>> --Chris >> >>> >> >>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: >> >>> >> >>>> Kevin, Chris announced it (January 23, 2012) on this list. :) >> >>>> >> >>>>https://github.com/yodarunamok/fxphp >> >>>> >> >>>> and it's linked from the iviking site: >> >>>>http://iviking.org/FX.php/ >> >>>> >> >>>> Beverly >> >>>> >> >>>> >> >>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: >> >>>> >> >>>>> I'll take a copy for testing if it will help Chris. Never used Github >> >>>>> before, so no idea about that. >> >>>>> >> >>>>> Kev >> >>>>> >> >>>>> -- >> >>>>> Kevin Futter >> >>>>> Webmaster, St. Bernard's College >> >>>>>http://www.sbc.vic.edu.au/ >> >>>>> >> >>>>> >> >>>>> >> >>>>> >> >>>>> On 4/09/12 4:09 PM, "Chris Hansen" > wrote: >> >>>>> >> >>>>>> Yes, I think we're about there. (Troy and I have been doing some testing >> >>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day or >> >>>>>> so), but if anyone would like an advance copy, let me know. It would be >> >>>>>> nice to have some other input on whether there are problems. Best, >> >>>>>> >> >>>>>> --Chris >> >>>>>> >> >>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: >> >>>>>> >> >>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline for >> >>>>>>> upgrading our system to FM 12 at the end of September, and since FM >> >>>>>>> can't >> >>>>>>> seem to fix the problem, I'm relying on you! >> >>>>>>> >> >>>>>>> Kev >> >>>>>>> >> >>>>>>> -- >> >>>>>>> Kevin Futter >> >>>>>>> Webmaster, St. Bernard's College >> >>>>>>>http://www.sbc.vic.edu.au/ >> >>>>>>> >> >>>>>>> >> >>>>>>> >> >>>>>>> >> >>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" > wrote: >> >>>>>>> >> >>>>>>>> Okay gang, >> >>>>>>>> >> >>>>>>>> I'll add support in FX.php for the other grammar this coming week. It >> >>>>>>>> really shouldn't be too tough, and I don't think that the performance >> >>>>>>>> hit >> >>>>>>>> should be too high. I can't guarantee that I'll have time until next >> >>>>>>>> Saturday to do this. Troy, would that work for you? >> >>>>>>>> >> >>>>>>>> Best, >> >>>>>>>> >> >>>>>>>> --Chris >> >>>>>>>> >> >>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: >> >>>>>>>> >> >>>>>>>>> It has been mentioned that having FX use the other XML query grammar >> >>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. >> >>>>>>>>> >> >>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they say it >> >>>>>>>>> did) I wonder how I could get someone to work on FX.php so that this >> >>>>>>>>> alternate grammar could be used? I don't think I'm up to the task >> >>>>>>>>> myself. >> >>>>>>>>> >> >>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 months >> >>>>>>>>> now while I waited for the update, and it is not as promised, as far >> >>>>>>>>> as >> >>>>>>>>> I can tell. >> >>>>>>>>> >> >>>>>>>>> Could I pay some one? How much might it be? We don't have a lot of >> >>>>>>>>> funds. >> >>>>>>>>> >> >>>>>>>>> -Troy >> >>>>>>>>> >> >>>>>>>>> _______________________________________________ >> >>>>>>>>> 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 >> >>>>>>> >> >>>>>>> This e-mail and any attachments may be confidential. You must not >> >>>>>>> disclose or use the information in this e-mail if you are not the >> >>>>>>> intended recipient. If you have received this e-mail in error, please >> >>>>>>> notify us immediately and delete the e-mail and all copies. The College >> >>>>>>> does not guarantee that this e-mail is virus or error free. The attached >> >>>>>>> files are provided and may only be used on the basis that the user >> >>>>>>> assumes all responsibility for any loss, damage or consequence resulting >> >>>>>>> directly or indirectly from the use of the attached files, whether >> >>>>>>> caused by the negligence of the sender or not. The content and opinions >> >>>>>>> in this e-mail are not necessarily those of the College. >> >>>>>>> _______________________________________________ >> >>>>>>> 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 >> >>>>> >> >>>>> This e-mail and any attachments may be confidential. You must not disclose or use the information in this e-mail if you are not the intended recipient. If you have received this e-mail in error, please notify us immediately and delete the e-mail and all copies. The College does not guarantee that this e-mail is virus or error free. The attached files are provided and may only be used on the basis that the user assumes all responsibility for any loss, damage or consequence resulting directly or indirectly from the use of the attached files, whether caused by the negligence of the sender or not. The content and opinions in this e-mail are not necessarily those of the College. >> >>>>> _______________________________________________ >> >>>>> 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 >> >> >> >> _______________________________________________ >> >> 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 >> >> >> _______________________________________________ >> 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 chris at iViking.org Tue Jan 29 09:41:46 2013 From: chris at iViking.org (Chris Hansen) Date: Tue Jan 29 08:47:47 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> Message-ID: <42443026-A757-475C-807B-0F15BFA8AC14@iViking.org> Sorry, I forgot that step. My bad. Feeling kinda sheepish here... --Chris On Jan 28, 2013, at 4:51 AM, Leo R. Lundgren wrote: > Why isn't it accepted? I know that there has been several months since this question was asked, but I haven't seen a response from Chris yet. > > If it works, merge it! > > > 28 jan 2013 kl. 02.51 skrev Nick: > >> You can look on github's pull requests. mine has been sitting there for some time (ecsos) >> >> >> On Thu, Jan 24, 2013 at 3:36 PM, Michael McIntyre wrote: >> I'm looking for the new 'fmalt' version of FX along with config info; >> not finding it on GitHub. Can you help? >> >> On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen wrote: >> > Absolutely. If anyone is in a position to test the new grammar (it's referred to as 'fmalt') just let me know and I'll forward you the files. Best, >> > >> > --Chris >> > >> > On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: >> > >> >> Yeah! ask for some testers if you need, Chris!! :) >> >> >> >> Beverly >> >> >> >> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: >> >> >> >>> And just to be clear, it's not up there... yet. I'll post to the list here when I do so. It will be soon, I just want to be sure that everything is tidy before I post it for general consumption. Best, >> >>> >> >>> --Chris >> >>> >> >>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: >> >>> >> >>>> Kevin, Chris announced it (January 23, 2012) on this list. :) >> >>>> >> >>>> https://github.com/yodarunamok/fxphp >> >>>> >> >>>> and it's linked from the iviking site: >> >>>> http://iviking.org/FX.php/ >> >>>> >> >>>> Beverly >> >>>> >> >>>> >> >>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: >> >>>> >> >>>>> I'll take a copy for testing if it will help Chris. Never used Github >> >>>>> before, so no idea about that. >> >>>>> >> >>>>> Kev >> >>>>> >> >>>>> -- >> >>>>> Kevin Futter >> >>>>> Webmaster, St. Bernard's College >> >>>>> http://www.sbc.vic.edu.au/ >> >>>>> >> >>>>> >> >>>>> >> >>>>> >> >>>>> On 4/09/12 4:09 PM, "Chris Hansen" wrote: >> >>>>> >> >>>>>> Yes, I think we're about there. (Troy and I have been doing some testing >> >>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day or >> >>>>>> so), but if anyone would like an advance copy, let me know. It would be >> >>>>>> nice to have some other input on whether there are problems. Best, >> >>>>>> >> >>>>>> --Chris >> >>>>>> >> >>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: >> >>>>>> >> >>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline for >> >>>>>>> upgrading our system to FM 12 at the end of September, and since FM >> >>>>>>> can't >> >>>>>>> seem to fix the problem, I'm relying on you! >> >>>>>>> >> >>>>>>> Kev >> >>>>>>> >> >>>>>>> -- >> >>>>>>> Kevin Futter >> >>>>>>> Webmaster, St. Bernard's College >> >>>>>>> http://www.sbc.vic.edu.au/ >> >>>>>>> >> >>>>>>> >> >>>>>>> >> >>>>>>> >> >>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" wrote: >> >>>>>>> >> >>>>>>>> Okay gang, >> >>>>>>>> >> >>>>>>>> I'll add support in FX.php for the other grammar this coming week. It >> >>>>>>>> really shouldn't be too tough, and I don't think that the performance >> >>>>>>>> hit >> >>>>>>>> should be too high. I can't guarantee that I'll have time until next >> >>>>>>>> Saturday to do this. Troy, would that work for you? >> >>>>>>>> >> >>>>>>>> Best, >> >>>>>>>> >> >>>>>>>> --Chris >> >>>>>>>> >> >>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: >> >>>>>>>> >> >>>>>>>>> It has been mentioned that having FX use the other XML query grammar >> >>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. >> >>>>>>>>> >> >>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they say it >> >>>>>>>>> did) I wonder how I could get someone to work on FX.php so that this >> >>>>>>>>> alternate grammar could be used? I don't think I'm up to the task >> >>>>>>>>> myself. >> >>>>>>>>> >> >>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 months >> >>>>>>>>> now while I waited for the update, and it is not as promised, as far >> >>>>>>>>> as >> >>>>>>>>> I can tell. >> >>>>>>>>> >> >>>>>>>>> Could I pay some one? How much might it be? We don't have a lot of >> >>>>>>>>> funds. >> >>>>>>>>> >> >>>>>>>>> -Troy >> >>>>>>>>> >> >>>>>>>>> _______________________________________________ >> >>>>>>>>> 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 >> >>>>>>> >> >>>>>>> This e-mail and any attachments may be confidential. You must not >> >>>>>>> disclose or use the information in this e-mail if you are not the >> >>>>>>> intended recipient. If you have received this e-mail in error, please >> >>>>>>> notify us immediately and delete the e-mail and all copies. The College >> >>>>>>> does not guarantee that this e-mail is virus or error free. The attached >> >>>>>>> files are provided and may only be used on the basis that the user >> >>>>>>> assumes all responsibility for any loss, damage or consequence resulting >> >>>>>>> directly or indirectly from the use of the attached files, whether >> >>>>>>> caused by the negligence of the sender or not. The content and opinions >> >>>>>>> in this e-mail are not necessarily those of the College. >> >>>>>>> _______________________________________________ >> >>>>>>> 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 >> >>>>> >> >>>>> This e-mail and any attachments may be confidential. You must not disclose or use the information in this e-mail if you are not the intended recipient. If you have received this e-mail in error, please notify us immediately and delete the e-mail and all copies. The College does not guarantee that this e-mail is virus or error free. The attached files are provided and may only be used on the basis that the user assumes all responsibility for any loss, damage or consequence resulting directly or indirectly from the use of the attached files, whether caused by the negligence of the sender or not. The content and opinions in this e-mail are not necessarily those of the College. >> >>>>> _______________________________________________ >> >>>>> 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 >> >> >> >> _______________________________________________ >> >> 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 >> >> _______________________________________________ >> 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 leo at finalresort.org Tue Jan 29 09:43:33 2013 From: leo at finalresort.org (Leo R. Lundgren) Date: Tue Jan 29 08:49:38 2013 Subject: [FX.php List] Alternate grammar? In-Reply-To: <42443026-A757-475C-807B-0F15BFA8AC14@iViking.org> References: <9B35A3AA-6597-457C-A6C9-F17097012DF8@gmail.com> <004DFB85-CC6E-4AFF-9A8A-92C428EABB1E@iViking.org> <438C1EBA-F13D-4538-A614-E128E6971C7E@gmail.com> <2CE2A804-3064-41B0-9432-749E72A6E8B2@iViking.org> <42443026-A757-475C-807B-0F15BFA8AC14@iViking.org> Message-ID: <4135B3E6-8026-4BD4-B31E-9BAB031B5E1D@finalresort.org> But you did it now/yesterday, so all is well :) 29 jan 2013 kl. 17.41 skrev Chris Hansen: > Sorry, I forgot that step. My bad. Feeling kinda sheepish here... > > --Chris > > On Jan 28, 2013, at 4:51 AM, Leo R. Lundgren wrote: > >> Why isn't it accepted? I know that there has been several months since this question was asked, but I haven't seen a response from Chris yet. >> >> If it works, merge it! >> >> >> 28 jan 2013 kl. 02.51 skrev Nick: >> >>> You can look on github's pull requests. mine has been sitting there for some time (ecsos) >>> >>> >>> On Thu, Jan 24, 2013 at 3:36 PM, Michael McIntyre wrote: >>> I'm looking for the new 'fmalt' version of FX along with config info; >>> not finding it on GitHub. Can you help? >>> >>> On Tue, Sep 4, 2012 at 2:57 PM, Chris Hansen wrote: >>>> Absolutely. If anyone is in a position to test the new grammar (it's referred to as 'fmalt') just let me know and I'll forward you the files. Best, >>>> >>>> --Chris >>>> >>>> On Sep 4, 2012, at 11:31 AM, BEVERLY VOTH wrote: >>>> >>>>> Yeah! ask for some testers if you need, Chris!! :) >>>>> >>>>> Beverly >>>>> >>>>> On 04 Sep 2012, at 12:36 PM, Chris Hansen wrote: >>>>> >>>>>> And just to be clear, it's not up there... yet. I'll post to the list here when I do so. It will be soon, I just want to be sure that everything is tidy before I post it for general consumption. Best, >>>>>> >>>>>> --Chris >>>>>> >>>>>> On Sep 4, 2012, at 5:15 AM, BEVERLY VOTH wrote: >>>>>> >>>>>>> Kevin, Chris announced it (January 23, 2012) on this list. :) >>>>>>> >>>>>>> https://github.com/yodarunamok/fxphp >>>>>>> >>>>>>> and it's linked from the iviking site: >>>>>>> http://iviking.org/FX.php/ >>>>>>> >>>>>>> Beverly >>>>>>> >>>>>>> >>>>>>> On 04 Sep 2012, at 2:09 AM, Kevin Futter wrote: >>>>>>> >>>>>>>> I'll take a copy for testing if it will help Chris. Never used Github >>>>>>>> before, so no idea about that. >>>>>>>> >>>>>>>> Kev >>>>>>>> >>>>>>>> -- >>>>>>>> Kevin Futter >>>>>>>> Webmaster, St. Bernard's College >>>>>>>> http://www.sbc.vic.edu.au/ >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> On 4/09/12 4:09 PM, "Chris Hansen" wrote: >>>>>>>> >>>>>>>>> Yes, I think we're about there. (Troy and I have been doing some testing >>>>>>>>> today.) I'll be pushing it up to github soon (i.e. in the next day or >>>>>>>>> so), but if anyone would like an advance copy, let me know. It would be >>>>>>>>> nice to have some other input on whether there are problems. Best, >>>>>>>>> >>>>>>>>> --Chris >>>>>>>>> >>>>>>>>> On Sep 3, 2012, at 10:37 PM, Kevin Futter wrote: >>>>>>>>> >>>>>>>>>> Any progress Chris? Sorry to sound pushy! I have a fixed deadline for >>>>>>>>>> upgrading our system to FM 12 at the end of September, and since FM >>>>>>>>>> can't >>>>>>>>>> seem to fix the problem, I'm relying on you! >>>>>>>>>> >>>>>>>>>> Kev >>>>>>>>>> >>>>>>>>>> -- >>>>>>>>>> Kevin Futter >>>>>>>>>> Webmaster, St. Bernard's College >>>>>>>>>> http://www.sbc.vic.edu.au/ >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> On 26/08/12 1:42 PM, "Chris Hansen" wrote: >>>>>>>>>> >>>>>>>>>>> Okay gang, >>>>>>>>>>> >>>>>>>>>>> I'll add support in FX.php for the other grammar this coming week. It >>>>>>>>>>> really shouldn't be too tough, and I don't think that the performance >>>>>>>>>>> hit >>>>>>>>>>> should be too high. I can't guarantee that I'll have time until next >>>>>>>>>>> Saturday to do this. Troy, would that work for you? >>>>>>>>>>> >>>>>>>>>>> Best, >>>>>>>>>>> >>>>>>>>>>> --Chris >>>>>>>>>>> >>>>>>>>>>> On Aug 23, 2012, at 10:51 AM, Troy Meyers wrote: >>>>>>>>>>> >>>>>>>>>>>> It has been mentioned that having FX use the other XML query grammar >>>>>>>>>>>> (FMRESULTSET) could potentially solve the XML-CWP portals bug. >>>>>>>>>>>> >>>>>>>>>>>> Since the FMS 12.0.2 update hasn't solved it (even though they say it >>>>>>>>>>>> did) I wonder how I could get someone to work on FX.php so that this >>>>>>>>>>>> alternate grammar could be used? I don't think I'm up to the task >>>>>>>>>>>> myself. >>>>>>>>>>>> >>>>>>>>>>>> I'm pretty desperate, our site has been a horrible mess for 3 months >>>>>>>>>>>> now while I waited for the update, and it is not as promised, as far >>>>>>>>>>>> as >>>>>>>>>>>> I can tell. >>>>>>>>>>>> >>>>>>>>>>>> Could I pay some one? How much might it be? We don't have a lot of >>>>>>>>>>>> funds. >>>>>>>>>>>> >>>>>>>>>>>> -Troy >>>>>>>>>>>> >>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>> 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 >>>>>>>>>> >>>>>>>>>> This e-mail and any attachments may be confidential. You must not >>>>>>>>>> disclose or use the information in this e-mail if you are not the >>>>>>>>>> intended recipient. If you have received this e-mail in error, please >>>>>>>>>> notify us immediately and delete the e-mail and all copies. The College >>>>>>>>>> does not guarantee that this e-mail is virus or error free. The attached >>>>>>>>>> files are provided and may only be used on the basis that the user >>>>>>>>>> assumes all responsibility for any loss, damage or consequence resulting >>>>>>>>>> directly or indirectly from the use of the attached files, whether >>>>>>>>>> caused by the negligence of the sender or not. The content and opinions >>>>>>>>>> in this e-mail are not necessarily those of the College. >>>>>>>>>> _______________________________________________ >>>>>>>>>> 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 >>>>>>>> >>>>>>>> This e-mail and any attachments may be confidential. You must not disclose or use the information in this e-mail if you are not the intended recipient. If you have received this e-mail in error, please notify us immediately and delete the e-mail and all copies. The College does not guarantee that this e-mail is virus or error free. The attached files are provided and may only be used on the basis that the user assumes all responsibility for any loss, damage or consequence resulting directly or indirectly from the use of the attached files, whether caused by the negligence of the sender or not. The content and opinions in this e-mail are not necessarily those of the College. >>>>>>>> _______________________________________________ >>>>>>>> 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 >>>>> >>>>> _______________________________________________ >>>>> 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 >>> >>> _______________________________________________ >>> 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 -|