From bob at patin.com Thu Jul 14 17:14:54 2016 From: bob at patin.com (Bob Patin) Date: Thu Jul 14 17:12:59 2016 Subject: [FX.php List] Encoding a link so that it'll process... Message-ID: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> I'm generating a link on a PHP page, like this: http://www.site.com/test.php?cc=two words The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. I tried encoding the spaces like this two%20words but it still didn't work. Then I tried doing a str_replace to get something like this: two|words and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... Any thoughts? Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting From tim.webko at gmail.com Thu Jul 14 17:34:52 2016 From: tim.webko at gmail.com (Tim 'Webko' Booth) Date: Thu Jul 14 17:32:54 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> Message-ID: Have you tried a + instead of %20 ? On 15 July 2016 at 09:14, Bob Patin wrote: > I'm generating a link on a PHP page, like this: > > http://www.site.com/test.php?cc=two words > > The client wants to be able to copy this link for use later, but when we > do so, anytime "cc" is 2 or more words the query fails. > > I tried encoding the spaces like this > > two%20words > > but it still didn't work. > > Then I tried doing a str_replace to get something like this: > > two|words > > and then when the user gets to the page, taking the pipe and putting a > space back in before the search. That failed too... > > Any thoughts? > > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.iviking.org/pipermail/fx.php_list/attachments/20160715/5faaa4da/attachment.html From bob at patin.com Thu Jul 14 17:42:51 2016 From: bob at patin.com (Bob Patin) Date: Thu Jul 14 17:40:54 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> Message-ID: <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> I did... Here's a link that works: http://tirms.longtermsolutions.com/?ql=true&cc=Acadian but if I add the 2nd word in their name http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. I also tried http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech but that fails too... The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? Thanks for your help, Bob Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth wrote: > > Have you tried a + instead of %20 ? > > On 15 July 2016 at 09:14, Bob Patin > wrote: > I'm generating a link on a PHP page, like this: > > http://www.site.com/test.php?cc=two words > > The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. > > I tried encoding the spaces like this > > two%20words > > but it still didn't work. > > Then I tried doing a str_replace to get something like this: > > two|words > > and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... > > Any thoughts? > > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > > _______________________________________________ > FX.php_List mailing list > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > > _______________________________________________ > 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/20160714/55f10070/attachment.html From bob at patin.com Thu Jul 14 17:49:50 2016 From: bob at patin.com (Bob Patin) Date: Thu Jul 14 17:47:53 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> Message-ID: <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> To explain what I'm trying to do: My client says that, in the old site,users often grabbed the URL from the address bar, so that they could get back to a search they did. So, I was trying to generate a link that they can grab, and then pass it into my jQuery site, and duplicate the search results. So long as the search params are single-words, my link works great, but if I do a SEARCH and select something with 2 words, the link that I'm generating won't work. I just don't get it... :) > On Jul 14, 2016, at 6:42 PM, Bob Patin wrote: > > I did... > > Here's a link that works: > > http://tirms.longtermsolutions.com/?ql=true&cc=Acadian > > but if I add the 2nd word in their name > > http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech > > it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. > > I also tried > > http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech > > but that fails too... > > The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? > > Thanks for your help, > > Bob > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > >> On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth > wrote: >> >> Have you tried a + instead of %20 ? >> >> On 15 July 2016 at 09:14, Bob Patin > wrote: >> I'm generating a link on a PHP page, like this: >> >> http://www.site.com/test.php?cc=two words >> >> The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. >> >> I tried encoding the spaces like this >> >> two%20words >> >> but it still didn't work. >> >> Then I tried doing a str_replace to get something like this: >> >> two|words >> >> and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... >> >> Any thoughts? >> >> >> Bob Patin >> Longterm Solutions >> bob@longtermsolutions.com >> 615-333-6858 >> FileMaker 9, 10, 11, 12 & 13 Certified Developer >> http://www.longtermsolutions.com >> - >> iChat: bobpatin@me.com >> Twitter: bobpatin >> ? >> FileMaker Consulting >> FileMaker Hosting for all versions of FileMaker >> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >> >> _______________________________________________ >> FX.php_List mailing list >> FX.php_List@mail.iviking.org >> http://www.iviking.org/mailman/listinfo/fx.php_list >> >> _______________________________________________ >> 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/20160714/ae3fcda3/attachment-0001.html From chris at iViking.org Thu Jul 14 18:01:39 2016 From: chris at iViking.org (Chris Hansen) Date: Thu Jul 14 17:59:41 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> Message-ID: <4521DB1D-4DC5-42F6-8B65-DCA325793FAF@iViking.org> Bob, I think the problem has to be in the way that the page is handling the parameters and doing the query. How does the code that handles that look? Best, --Chris > On Jul 14, 2016, at 5:49 PM, Bob Patin > wrote: > > To explain what I'm trying to do: > > My client says that, in the old site,users often grabbed the URL from the address bar, so that they could get back to a search they did. > > So, I was trying to generate a link that they can grab, and then pass it into my jQuery site, and duplicate the search results. > > So long as the search params are single-words, my link works great, but if I do a SEARCH and select something with 2 words, the link that I'm generating won't work. > > I just don't get it... :) > >> On Jul 14, 2016, at 6:42 PM, Bob Patin > wrote: >> >> I did... >> >> Here's a link that works: >> >> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian >> >> but if I add the 2nd word in their name >> >> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech >> >> it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. >> >> I also tried >> >> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech >> >> but that fails too... >> >> The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? >> >> Thanks for your help, >> >> Bob >> >> Bob Patin >> Longterm Solutions >> bob@longtermsolutions.com >> 615-333-6858 >> FileMaker 9, 10, 11, 12 & 13 Certified Developer >> http://www.longtermsolutions.com >> - >> iChat: bobpatin@me.com >> Twitter: bobpatin >> ? >> FileMaker Consulting >> FileMaker Hosting for all versions of FileMaker >> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >> >>> On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth > wrote: >>> >>> Have you tried a + instead of %20 ? >>> >>> On 15 July 2016 at 09:14, Bob Patin > wrote: >>> I'm generating a link on a PHP page, like this: >>> >>> http://www.site.com/test.php?cc=two words >>> >>> The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. >>> >>> I tried encoding the spaces like this >>> >>> two%20words >>> >>> but it still didn't work. >>> >>> Then I tried doing a str_replace to get something like this: >>> >>> two|words >>> >>> and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... >>> >>> Any thoughts? >>> >>> >>> Bob Patin >>> Longterm Solutions >>> bob@longtermsolutions.com >>> 615-333-6858 >>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>> http://www.longtermsolutions.com >>> - >>> iChat: bobpatin@me.com >>> Twitter: bobpatin >>> ? >>> FileMaker Consulting >>> FileMaker Hosting for all versions of FileMaker >>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>> >>> _______________________________________________ >>> FX.php_List mailing list >>> FX.php_List@mail.iviking.org >>> http://www.iviking.org/mailman/listinfo/fx.php_list >>> >>> _______________________________________________ >>> 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/20160714/aa627f75/attachment.html From bob at patin.com Thu Jul 14 18:04:35 2016 From: bob at patin.com (Bob Patin) Date: Thu Jul 14 18:02:38 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <4521DB1D-4DC5-42F6-8B65-DCA325793FAF@iViking.org> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> <4521DB1D-4DC5-42F6-8B65-DCA325793FAF@iViking.org> Message-ID: <62870383-318F-4477-9237-3CADE2F6CFD1@patin.com> Well... I finally got it by replacing spaces with a pipe and then replacing them BACK when the user uses the link... Not sure why it didn't work before but it's working now... :) If you go to tirms.longtermsolutions.com, then click on SEARCH, and then select a company with a 2-word name, you'll see the results and then a link that you can copy. I wish there were a way that I could let users save a bookmark from this link--is there any way to do that in PHP? I'm thinking not... Thanks, Bob Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > On Jul 14, 2016, at 7:01 PM, Chris Hansen wrote: > > Bob, > > I think the problem has to be in the way that the page is handling the parameters and doing the query. How does the code that handles that look? > > Best, > > --Chris > >> On Jul 14, 2016, at 5:49 PM, Bob Patin > wrote: >> >> To explain what I'm trying to do: >> >> My client says that, in the old site,users often grabbed the URL from the address bar, so that they could get back to a search they did. >> >> So, I was trying to generate a link that they can grab, and then pass it into my jQuery site, and duplicate the search results. >> >> So long as the search params are single-words, my link works great, but if I do a SEARCH and select something with 2 words, the link that I'm generating won't work. >> >> I just don't get it... :) >> >>> On Jul 14, 2016, at 6:42 PM, Bob Patin > wrote: >>> >>> I did... >>> >>> Here's a link that works: >>> >>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian >>> >>> but if I add the 2nd word in their name >>> >>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech >>> >>> it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. >>> >>> I also tried >>> >>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech >>> >>> but that fails too... >>> >>> The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? >>> >>> Thanks for your help, >>> >>> Bob >>> >>> Bob Patin >>> Longterm Solutions >>> bob@longtermsolutions.com >>> 615-333-6858 >>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>> http://www.longtermsolutions.com >>> - >>> iChat: bobpatin@me.com >>> Twitter: bobpatin >>> ? >>> FileMaker Consulting >>> FileMaker Hosting for all versions of FileMaker >>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>> >>>> On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth > wrote: >>>> >>>> Have you tried a + instead of %20 ? >>>> >>>> On 15 July 2016 at 09:14, Bob Patin > wrote: >>>> I'm generating a link on a PHP page, like this: >>>> >>>> http://www.site.com/test.php?cc=two words >>>> >>>> The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. >>>> >>>> I tried encoding the spaces like this >>>> >>>> two%20words >>>> >>>> but it still didn't work. >>>> >>>> Then I tried doing a str_replace to get something like this: >>>> >>>> two|words >>>> >>>> and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... >>>> >>>> Any thoughts? >>>> >>>> >>>> Bob Patin >>>> Longterm Solutions >>>> bob@longtermsolutions.com >>>> 615-333-6858 >>>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>>> http://www.longtermsolutions.com >>>> - >>>> iChat: bobpatin@me.com >>>> Twitter: bobpatin >>>> ? >>>> FileMaker Consulting >>>> FileMaker Hosting for all versions of FileMaker >>>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>>> >>>> _______________________________________________ >>>> FX.php_List mailing list >>>> FX.php_List@mail.iviking.org >>>> http://www.iviking.org/mailman/listinfo/fx.php_list >>>> >>>> _______________________________________________ >>>> 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/20160714/fc9d9e06/attachment-0001.html From chris at iViking.org Fri Jul 15 09:02:22 2016 From: chris at iViking.org (Chris Hansen) Date: Fri Jul 15 09:00:21 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <62870383-318F-4477-9237-3CADE2F6CFD1@patin.com> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> <4521DB1D-4DC5-42F6-8B65-DCA325793FAF@iViking.org> <62870383-318F-4477-9237-3CADE2F6CFD1@patin.com> Message-ID: <35049AD0-3FFD-49B7-91E9-2EBE0AF38F45@iViking.org> You'd have to do functionality like adding a bookmark on the users' side (with Javascript, for example.) The difficulty is that browsers are (justifiably) very careful about what javascript is allowed to do, so things that used to work are disabled over time. That said, here's a stack overflow Q&A where people have been working on a variation of what you're talking about: http://stackoverflow.com/questions/10033215/how-do-i-add-an-add-to-favorites-button-or-link-on-my-website HTH --Chris > On Jul 14, 2016, at 6:04 PM, Bob Patin > wrote: > > Well... I finally got it by replacing spaces with a pipe and then replacing them BACK when the user uses the link... > > Not sure why it didn't work before but it's working now... :) > > If you go to tirms.longtermsolutions.com , then click on SEARCH, and then select a company with a 2-word name, you'll see the results and then a link that you can copy. I wish there were a way that I could let users save a bookmark from this link--is there any way to do that in PHP? I'm thinking not... > > Thanks, > > Bob > > Bob Patin > Longterm Solutions > bob@longtermsolutions.com > 615-333-6858 > FileMaker 9, 10, 11, 12 & 13 Certified Developer > http://www.longtermsolutions.com > - > iChat: bobpatin@me.com > Twitter: bobpatin > ? > FileMaker Consulting > FileMaker Hosting for all versions of FileMaker > PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > >> On Jul 14, 2016, at 7:01 PM, Chris Hansen > wrote: >> >> Bob, >> >> I think the problem has to be in the way that the page is handling the parameters and doing the query. How does the code that handles that look? >> >> Best, >> >> --Chris >> >>> On Jul 14, 2016, at 5:49 PM, Bob Patin > wrote: >>> >>> To explain what I'm trying to do: >>> >>> My client says that, in the old site,users often grabbed the URL from the address bar, so that they could get back to a search they did. >>> >>> So, I was trying to generate a link that they can grab, and then pass it into my jQuery site, and duplicate the search results. >>> >>> So long as the search params are single-words, my link works great, but if I do a SEARCH and select something with 2 words, the link that I'm generating won't work. >>> >>> I just don't get it... :) >>> >>>> On Jul 14, 2016, at 6:42 PM, Bob Patin > wrote: >>>> >>>> I did... >>>> >>>> Here's a link that works: >>>> >>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian >>>> >>>> but if I add the 2nd word in their name >>>> >>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech >>>> >>>> it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. >>>> >>>> I also tried >>>> >>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech >>>> >>>> but that fails too... >>>> >>>> The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? >>>> >>>> Thanks for your help, >>>> >>>> Bob >>>> >>>> Bob Patin >>>> Longterm Solutions >>>> bob@longtermsolutions.com >>>> 615-333-6858 >>>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>>> http://www.longtermsolutions.com >>>> - >>>> iChat: bobpatin@me.com >>>> Twitter: bobpatin >>>> ? >>>> FileMaker Consulting >>>> FileMaker Hosting for all versions of FileMaker >>>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>>> >>>>> On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth > wrote: >>>>> >>>>> Have you tried a + instead of %20 ? >>>>> >>>>> On 15 July 2016 at 09:14, Bob Patin > wrote: >>>>> I'm generating a link on a PHP page, like this: >>>>> >>>>> http://www.site.com/test.php?cc=two words >>>>> >>>>> The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. >>>>> >>>>> I tried encoding the spaces like this >>>>> >>>>> two%20words >>>>> >>>>> but it still didn't work. >>>>> >>>>> Then I tried doing a str_replace to get something like this: >>>>> >>>>> two|words >>>>> >>>>> and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... >>>>> >>>>> Any thoughts? >>>>> >>>>> >>>>> Bob Patin >>>>> Longterm Solutions >>>>> bob@longtermsolutions.com >>>>> 615-333-6858 >>>>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>>>> http://www.longtermsolutions.com >>>>> - >>>>> iChat: bobpatin@me.com >>>>> Twitter: bobpatin >>>>> ? >>>>> FileMaker Consulting >>>>> FileMaker Hosting for all versions of FileMaker >>>>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>>>> >>>>> _______________________________________________ >>>>> FX.php_List mailing list >>>>> FX.php_List@mail.iviking.org >>>>> http://www.iviking.org/mailman/listinfo/fx.php_list >>>>> >>>>> _______________________________________________ >>>>> 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/20160715/4e11f10b/attachment.html From bob at patin.com Fri Jul 15 10:16:15 2016 From: bob at patin.com (Bob Patin) Date: Fri Jul 15 10:14:15 2016 Subject: [FX.php List] Encoding a link so that it'll process... In-Reply-To: <35049AD0-3FFD-49B7-91E9-2EBE0AF38F45@iViking.org> References: <1C5697CB-69B4-45BC-8933-29C4676B3931@patin.com> <7D9562D9-40B5-41D0-AE92-8E8D29478E9D@patin.com> <52499A5E-EF6C-4162-991E-D70EDA9882C1@patin.com> <4521DB1D-4DC5-42F6-8B65-DCA325793FAF@iViking.org> <62870383-318F-4477-9237-3CADE2F6CFD1@patin.com> <35049AD0-3FFD-49B7-91E9-2EBE0AF38F45@iViking.org> Message-ID: <943418FB-C303-4069-AA17-BEFDF0247B2D@patin.com> I couldn?t find on that worked? B Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > On Jul 15, 2016, at 10:02 AM, Chris Hansen wrote: > > You'd have to do functionality like adding a bookmark on the users' side (with Javascript, for example.) The difficulty is that browsers are (justifiably) very careful about what javascript is allowed to do, so things that used to work are disabled over time. That said, here's a stack overflow Q&A where people have been working on a variation of what you're talking about: > > http://stackoverflow.com/questions/10033215/how-do-i-add-an-add-to-favorites-button-or-link-on-my-website > > HTH > > --Chris > >> On Jul 14, 2016, at 6:04 PM, Bob Patin > wrote: >> >> Well... I finally got it by replacing spaces with a pipe and then replacing them BACK when the user uses the link... >> >> Not sure why it didn't work before but it's working now... :) >> >> If you go to tirms.longtermsolutions.com , then click on SEARCH, and then select a company with a 2-word name, you'll see the results and then a link that you can copy. I wish there were a way that I could let users save a bookmark from this link--is there any way to do that in PHP? I'm thinking not... >> >> Thanks, >> >> Bob >> >> Bob Patin >> Longterm Solutions >> bob@longtermsolutions.com >> 615-333-6858 >> FileMaker 9, 10, 11, 12 & 13 Certified Developer >> http://www.longtermsolutions.com >> - >> iChat: bobpatin@me.com >> Twitter: bobpatin >> ? >> FileMaker Consulting >> FileMaker Hosting for all versions of FileMaker >> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >> >>> On Jul 14, 2016, at 7:01 PM, Chris Hansen > wrote: >>> >>> Bob, >>> >>> I think the problem has to be in the way that the page is handling the parameters and doing the query. How does the code that handles that look? >>> >>> Best, >>> >>> --Chris >>> >>>> On Jul 14, 2016, at 5:49 PM, Bob Patin > wrote: >>>> >>>> To explain what I'm trying to do: >>>> >>>> My client says that, in the old site,users often grabbed the URL from the address bar, so that they could get back to a search they did. >>>> >>>> So, I was trying to generate a link that they can grab, and then pass it into my jQuery site, and duplicate the search results. >>>> >>>> So long as the search params are single-words, my link works great, but if I do a SEARCH and select something with 2 words, the link that I'm generating won't work. >>>> >>>> I just don't get it... :) >>>> >>>>> On Jul 14, 2016, at 6:42 PM, Bob Patin > wrote: >>>>> >>>>> I did... >>>>> >>>>> Here's a link that works: >>>>> >>>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian >>>>> >>>>> but if I add the 2nd word in their name >>>>> >>>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian AgriTech >>>>> >>>>> it fails. The funny thing is though, I use jQuery and pass that 2-word name in the original query and it works. >>>>> >>>>> I also tried >>>>> >>>>> http://tirms.longtermsolutions.com/?ql=true&cc=Acadian%20AgriTech >>>>> >>>>> but that fails too... >>>>> >>>>> The question i have is, WHAT can I put between the 2 words that will get passed to my query and work? >>>>> >>>>> Thanks for your help, >>>>> >>>>> Bob >>>>> >>>>> Bob Patin >>>>> Longterm Solutions >>>>> bob@longtermsolutions.com >>>>> 615-333-6858 >>>>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>>>> http://www.longtermsolutions.com >>>>> - >>>>> iChat: bobpatin@me.com >>>>> Twitter: bobpatin >>>>> ? >>>>> FileMaker Consulting >>>>> FileMaker Hosting for all versions of FileMaker >>>>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>>>> >>>>>> On Jul 14, 2016, at 6:34 PM, Tim 'Webko' Booth > wrote: >>>>>> >>>>>> Have you tried a + instead of %20 ? >>>>>> >>>>>> On 15 July 2016 at 09:14, Bob Patin > wrote: >>>>>> I'm generating a link on a PHP page, like this: >>>>>> >>>>>> http://www.site.com/test.php?cc=two words >>>>>> >>>>>> The client wants to be able to copy this link for use later, but when we do so, anytime "cc" is 2 or more words the query fails. >>>>>> >>>>>> I tried encoding the spaces like this >>>>>> >>>>>> two%20words >>>>>> >>>>>> but it still didn't work. >>>>>> >>>>>> Then I tried doing a str_replace to get something like this: >>>>>> >>>>>> two|words >>>>>> >>>>>> and then when the user gets to the page, taking the pipe and putting a space back in before the search. That failed too... >>>>>> >>>>>> Any thoughts? >>>>>> >>>>>> >>>>>> Bob Patin >>>>>> Longterm Solutions >>>>>> bob@longtermsolutions.com >>>>>> 615-333-6858 >>>>>> FileMaker 9, 10, 11, 12 & 13 Certified Developer >>>>>> http://www.longtermsolutions.com >>>>>> - >>>>>> iChat: bobpatin@me.com >>>>>> Twitter: bobpatin >>>>>> ? >>>>>> FileMaker Consulting >>>>>> FileMaker Hosting for all versions of FileMaker >>>>>> PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting >>>>>> >>>>>> _______________________________________________ >>>>>> FX.php_List mailing list >>>>>> FX.php_List@mail.iviking.org >>>>>> http://www.iviking.org/mailman/listinfo/fx.php_list >>>>>> >>>>>> _______________________________________________ >>>>>> 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/20160715/4fca67a5/attachment-0001.html From info at jsfmp.com Fri Jul 15 12:15:51 2016 From: info at jsfmp.com (Joel Shapiro) Date: Fri Jul 15 12:13:51 2016 Subject: [FX.php List] [ANN] CWP User Group - Monday at DevCon 2016 In-Reply-To: <6C11DD80-24C3-48CE-9474-CA0E838F83EB@jsfmp.com> References: <6C11DD80-24C3-48CE-9474-CA0E838F83EB@jsfmp.com> Message-ID: <8EA121A9-2D07-4DD5-B22A-C501C18720BF@jsfmp.com> Hi all Don?t forget, this year?s meeting is earlier than usual ? at 3:30. Hope to see you there! Best, -Joel > On May 5, 2016, at 10:58 AM, Joel Shapiro wrote: > > Hi all > > We're going to be having our 10th annual(!) CWP User Group on Monday, July 18, 3:30-5:30pm (just before the 6pm opening keynote). > > Got something you'd like to share? Please let me know. > > Everyone's welcome. Come join us! > > -Joel > > http://jsfmp.com/cwp-user-group > ~~~~~~~~~~~~~~~~~~~~~ > Joel Shapiro > FileMaker Pro > : database design > : web development > http://jsfmp.com > 415-269-5055 > ~~~~~~~~~~~~~~~~~~~~~ > > > _______________________________________________ > 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 Thu Jul 21 07:20:38 2016 From: chris at iViking.org (Chris Hansen) Date: Thu Jul 21 07:20:34 2016 Subject: [FX.php List] Server Move & List Housekeeping Message-ID: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Hey Folks, In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: 1) Leave the list "as is" on the new server. 2) Switch the forum to something like Google groups (either email or discussion group based). 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. Thanks for making this such a great community! Best, --Chris Hansen FileMaker 7/8/9 Certified Developer Creator of FX.php "The best way from FileMaker to the Web." www.iViking.org From leo at finalresort.org Thu Jul 21 07:27:29 2016 From: leo at finalresort.org (Leo R. Lundgren) Date: Thu Jul 21 07:27:31 2016 Subject: Sv: [FX.php List] Server Move & List Housekeeping In-Reply-To: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Message-ID: <20160721132729.5537876.13902.13040@finalresort.org> Hi, I think you should leave it as it is on the new server. Why change something that works :) And i dont see a point in making a new list. ?I would strongly vote against using third parties or services like Googles. It requires people to register with parties they might not like to register with.? Keep it simple. Good old email is simple and meets the needs. Regards, Leo ? Originalmeddelande ? Fr?n: Chris Hansen Skickat: torsdagen den 21:e juli 2016 15:20 Till: FX. php Discussion List Svara till: FX.php Discussion List ?mne: [FX.php List] Server Move & List Housekeeping Hey Folks, In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: 1) Leave the list "as is" on the new server. 2) Switch the forum to something like Google groups (either email or discussion group based). 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. Thanks for making this such a great community! Best, --Chris Hansen FileMaker 7/8/9 Certified Developer Creator of FX.php "The best way from FileMaker to the Web." www.iViking.org _______________________________________________ FX.php_List mailing list FX.php_List@mail.iviking.org http://www.iviking.org/mailman/listinfo/fx.php_list From bob at patin.com Thu Jul 21 08:05:54 2016 From: bob at patin.com (Bob Patin) Date: Thu Jul 21 08:05:50 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Message-ID: <82144031-DE53-49DD-9C56-C2C2D0EB4492@patin.com> I like the list just as it is now, so that would be my vote. :) It?s still my go-to place for anything web-publishing-related. Bob Patin Longterm Solutions bob@longtermsolutions.com 615-333-6858 FileMaker 9, 10, 11, 12 & 13 Certified Developer http://www.longtermsolutions.com - iChat: bobpatin@me.com Twitter: bobpatin ? FileMaker Consulting FileMaker Hosting for all versions of FileMaker PHP ? Full email services ? Free DNS hosting ? Colocation ? Consulting > On Jul 21, 2016, at 8:20 AM, Chris Hansen wrote: > > Hey Folks, > > In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: > > 1) Leave the list "as is" on the new server. > > 2) Switch the forum to something like Google groups (either email or discussion group based). > > 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) > > There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. > > What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. > > Thanks for making this such a great community! > > Best, > > --Chris Hansen > FileMaker 7/8/9 Certified Developer > Creator of FX.php > "The best way from FileMaker to the Web." > www.iViking.org > > > > _______________________________________________ > 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/20160721/605d892f/attachment.html From jonathan at exit445.com Thu Jul 21 09:06:28 2016 From: jonathan at exit445.com (Jonathan) Date: Thu Jul 21 09:06:36 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Message-ID: <8D78C2F3-8F32-4B4F-94EE-C092D4FDE45F@exit445.com> I vote to leave it as-is. It's like an old friend. :-) Jonathan Schwartz Exit 445 Group 415-370-5011 > On Jul 21, 2016, at 6:20 AM, Chris Hansen wrote: > > Hey Folks, > > In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: > > 1) Leave the list "as is" on the new server. > > 2) Switch the forum to something like Google groups (either email or discussion group based). > > 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) > > There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. > > What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. > > Thanks for making this such a great community! > > Best, > > --Chris Hansen > FileMaker 7/8/9 Certified Developer > Creator of FX.php > "The best way from FileMaker to the Web." > www.iViking.org > > > > _______________________________________________ > 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 Thu Jul 21 16:43:54 2016 From: tim.webko at gmail.com (Tim 'Webko' Booth) Date: Thu Jul 21 16:43:50 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <8D78C2F3-8F32-4B4F-94EE-C092D4FDE45F@exit445.com> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> <8D78C2F3-8F32-4B4F-94EE-C092D4FDE45F@exit445.com> Message-ID: As above... I prefer the email list, as is... Cheers Webko On 22 July 2016 at 01:06, Jonathan wrote: > I vote to leave it as-is. > > It's like an old friend. :-) > > Jonathan Schwartz > Exit 445 Group > 415-370-5011 > > > On Jul 21, 2016, at 6:20 AM, Chris Hansen wrote: > > > > Hey Folks, > > > > In the near future I am going to be moving to a new server. And as long > as I'm moving, I thought it might make sense to consider different options > for the list. Of course, even on a new server I can leave the list "as > is", but as there's not a lot of traffic, and most people here are likely > on other FM-related web lists, I thought it a good topic for discussion. > So here are the options that I've considered so far; let me know if you > think of others: > > > > 1) Leave the list "as is" on the new server. > > > > 2) Switch the forum to something like Google groups (either email or > discussion group based). > > > > 3) Shut down the list and ask people to migrate to another list (I would > come, of course, but we might lose some people.) > > > > There are variations on the above (e.g. Google isn't the only provider > of group/list services) but I think that covers the main options. > > > > What does everyone think? What would you all prefer? Again, I don't > mind leaving things as they are, but with a server migration, I thought it > made sense to take advantage of the situation if there is something that > people like better. > > > > Thanks for making this such a great community! > > > > Best, > > > > --Chris Hansen > > FileMaker 7/8/9 Certified Developer > > Creator of FX.php > > "The best way from FileMaker to the Web." > > www.iViking.org > > > > > > > > _______________________________________________ > > 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/20160722/b902b312/attachment-0001.html From malcolm at notyourhomework.net Thu Jul 21 18:16:47 2016 From: malcolm at notyourhomework.net (Malcolm Fitzgerald) Date: Thu Jul 21 18:16:55 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Message-ID: Hi Chris, I like the fact that this list is focussed on FX.php. It is a low volume list, with a supportive community. Please keep it going. Malcolm On 22/07/2016 1:20 AM, Chris Hansen wrote: > Hey Folks, > > In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: > > 1) Leave the list "as is" on the new server. > > 2) Switch the forum to something like Google groups (either email or discussion group based). > > 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) > > There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. > > What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. > > Thanks for making this such a great community! > > Best, > > --Chris Hansen > FileMaker 7/8/9 Certified Developer > Creator of FX.php > "The best way from FileMaker to the Web." > www.iViking.org > > > > _______________________________________________ > 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 Fri Jul 22 15:25:59 2016 From: chris at iViking.org (Chris Hansen) Date: Fri Jul 22 15:25:50 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> Message-ID: <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. Thanks for all the feedback! --Chris > On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: > > Hi Chris, > > I like the fact that this list is focussed on FX.php. It is a low volume > list, with a supportive community. Please keep it going. > > Malcolm > > On 22/07/2016 1:20 AM, Chris Hansen wrote: >> Hey Folks, >> >> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >> >> 1) Leave the list "as is" on the new server. >> >> 2) Switch the forum to something like Google groups (either email or discussion group based). >> >> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >> >> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >> >> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >> >> Thanks for making this such a great community! >> >> Best, >> >> --Chris Hansen >> FileMaker 7/8/9 Certified Developer >> Creator of FX.php >> "The best way from FileMaker to the Web." >> www.iViking.org >> >> >> >> _______________________________________________ >> 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 Fri Jul 22 18:06:07 2016 From: dale.bengston at gmail.com (Dale Bengston) Date: Fri Jul 22 18:05:59 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> Message-ID: Thanks, Chris. Put me in the ?as-is? column as well. Dale > On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: > > It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. > > Thanks for all the feedback! > > --Chris > >> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >> >> Hi Chris, >> >> I like the fact that this list is focussed on FX.php. It is a low volume >> list, with a supportive community. Please keep it going. >> >> Malcolm >> >> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>> Hey Folks, >>> >>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>> >>> 1) Leave the list "as is" on the new server. >>> >>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>> >>> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >>> >>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>> >>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>> >>> Thanks for making this such a great community! >>> >>> Best, >>> >>> --Chris Hansen >>> FileMaker 7/8/9 Certified Developer >>> Creator of FX.php >>> "The best way from FileMaker to the Web." >>> www.iViking.org >>> >>> >>> >>> _______________________________________________ >>> 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 info at jsfmp.com Tue Jul 26 18:09:47 2016 From: info at jsfmp.com (Joel Shapiro) Date: Tue Jul 26 18:09:20 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> Message-ID: <9B783BB1-2F79-45F1-A156-98B55D77F964@jsfmp.com> Me too :) Thanks Chris -Joel > On Jul 22, 2016, at 5:06 PM, Dale Bengston wrote: > > Thanks, Chris. Put me in the ?as-is? column as well. > > Dale > >> On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: >> >> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. >> >> Thanks for all the feedback! >> >> --Chris >> >>> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >>> >>> Hi Chris, >>> >>> I like the fact that this list is focussed on FX.php. It is a low volume >>> list, with a supportive community. Please keep it going. >>> >>> Malcolm >>> >>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>>> Hey Folks, >>>> >>>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>>> >>>> 1) Leave the list "as is" on the new server. >>>> >>>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>>> >>>> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >>>> >>>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>>> >>>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>>> >>>> Thanks for making this such a great community! >>>> >>>> Best, >>>> >>>> --Chris Hansen >>>> FileMaker 7/8/9 Certified Developer >>>> Creator of FX.php >>>> "The best way from FileMaker to the Web." >>>> www.iViking.org >>>> >>>> >>>> >>>> _______________________________________________ >>>> 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 vargas_s at aps.edu Tue Jul 26 18:12:31 2016 From: vargas_s at aps.edu (Vargas, Steve E) Date: Tue Jul 26 18:12:06 2016 Subject: [FX.php List] Server Move & List Housekeeping In-Reply-To: <9B783BB1-2F79-45F1-A156-98B55D77F964@jsfmp.com> References: <56E8BCAE-1774-49B3-9E59-3588F4250054@iViking.org> <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> <9B783BB1-2F79-45F1-A156-98B55D77F964@jsfmp.com> Message-ID: "as-is" great tech discussion of real world development!!! Steve Vargas Technology Department 6400 Uptown Blvd, Albuquerque, NM 87110 | P.O. Box 25704, Albuquerque, NM 87125-704 | vargas_s@aps.edu | 505.830.8076 -----Original Message----- From: fx.php_list-bounces@mail.iviking.org [mailto:fx.php_list-bounces@mail.iviking.org] On Behalf Of Joel Shapiro Sent: Tuesday, July 26, 2016 6:10 PM To: FX.php Discussion List Subject: Re: [FX.php List] Server Move & List Housekeeping Me too :) Thanks Chris -Joel > On Jul 22, 2016, at 5:06 PM, Dale Bengston wrote: > > Thanks, Chris. Put me in the "as-is" column as well. > > Dale > >> On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: >> >> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. >> >> Thanks for all the feedback! >> >> --Chris >> >>> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >>> >>> Hi Chris, >>> >>> I like the fact that this list is focussed on FX.php. It is a low >>> volume list, with a supportive community. Please keep it going. >>> >>> Malcolm >>> >>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>>> Hey Folks, >>>> >>>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>>> >>>> 1) Leave the list "as is" on the new server. >>>> >>>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>>> >>>> 3) Shut down the list and ask people to migrate to another list (I >>>> would come, of course, but we might lose some people.) >>>> >>>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>>> >>>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>>> >>>> Thanks for making this such a great community! >>>> >>>> Best, >>>> >>>> --Chris Hansen >>>> FileMaker 7/8/9 Certified Developer Creator of FX.php "The best way >>>> from FileMaker to the Web." >>>> www.iViking.org >>>> >>>> >>>> >>>> _______________________________________________ >>>> 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 rschmidt11 at me.com Tue Jul 26 18:29:45 2016 From: rschmidt11 at me.com (Rodney Schmidt) Date: Tue Jul 26 18:29:20 2016 Subject: [FX.php List] Re: FX.php_List Digest, Vol 140, Issue 5 In-Reply-To: <20160727001209.A98C61CA2989@mail.iviking.org> References: <20160727001209.A98C61CA2989@mail.iviking.org> Message-ID: Please keep as is. Rodney Schmidt ---- Sent from my iPad 2 (Please forgive errors caused by auto-correct!) "Don't put the key to your happiness in someone else's pocket--keep it in your own." > On Jul 26, 2016, at 8:12 PM, fx.php_list-request@mail.iviking.org wrote: > > Send FX.php_List mailing list submissions to > fx.php_list@mail.iviking.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://www.iviking.org/mailman/listinfo/fx.php_list > or, via email, send a message with subject or body 'help' to > fx.php_list-request@mail.iviking.org > > You can reach the person managing the list at > fx.php_list-owner@mail.iviking.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of FX.php_List digest..." > > > Today's Topics: > > 1. Re: Server Move & List Housekeeping (Malcolm Fitzgerald) > 2. Re: Server Move & List Housekeeping (Chris Hansen) > 3. Re: Server Move & List Housekeeping (Dale Bengston) > 4. Re: Server Move & List Housekeeping (Joel Shapiro) > 5. RE: Server Move & List Housekeeping (Vargas, Steve E) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 22 Jul 2016 12:16:47 +1200 > From: Malcolm Fitzgerald > Subject: Re: [FX.php List] Server Move & List Housekeeping > To: "FX.php Discussion List" > Message-ID: > Content-Type: text/plain; charset=windows-1252 > > Hi Chris, > > I like the fact that this list is focussed on FX.php. It is a low volume > list, with a supportive community. Please keep it going. > > Malcolm > >> On 22/07/2016 1:20 AM, Chris Hansen wrote: >> Hey Folks, >> >> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >> >> 1) Leave the list "as is" on the new server. >> >> 2) Switch the forum to something like Google groups (either email or discussion group based). >> >> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >> >> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >> >> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >> >> Thanks for making this such a great community! >> >> Best, >> >> --Chris Hansen >> FileMaker 7/8/9 Certified Developer >> Creator of FX.php >> "The best way from FileMaker to the Web." >> www.iViking.org >> >> >> >> _______________________________________________ >> FX.php_List mailing list >> FX.php_List@mail.iviking.org >> http://www.iviking.org/mailman/listinfo/fx.php_list > > > > > ------------------------------ > > Message: 2 > Date: Fri, 22 Jul 2016 15:25:59 -0600 > From: Chris Hansen > Subject: Re: [FX.php List] Server Move & List Housekeeping > To: "FX. php Discussion List" > Message-ID: <4FB392A2-E880-47E6-98C1-704A72230134@iViking.org> > Content-Type: text/plain; charset=windows-1252 > > It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. > > Thanks for all the feedback! > > --Chris > >> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >> >> Hi Chris, >> >> I like the fact that this list is focussed on FX.php. It is a low volume >> list, with a supportive community. Please keep it going. >> >> Malcolm >> >>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>> Hey Folks, >>> >>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>> >>> 1) Leave the list "as is" on the new server. >>> >>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>> >>> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >>> >>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>> >>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>> >>> Thanks for making this such a great community! >>> >>> Best, >>> >>> --Chris Hansen >>> FileMaker 7/8/9 Certified Developer >>> Creator of FX.php >>> "The best way from FileMaker to the Web." >>> www.iViking.org >>> >>> >>> >>> _______________________________________________ >>> 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 > > > > ------------------------------ > > Message: 3 > Date: Fri, 22 Jul 2016 20:06:07 -0400 > From: Dale Bengston > Subject: Re: [FX.php List] Server Move & List Housekeeping > To: "FX.php Discussion List" > Message-ID: > Content-Type: text/plain; charset=windows-1252 > > Thanks, Chris. Put me in the ?as-is? column as well. > > Dale > >> On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: >> >> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. >> >> Thanks for all the feedback! >> >> --Chris >> >>> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >>> >>> Hi Chris, >>> >>> I like the fact that this list is focussed on FX.php. It is a low volume >>> list, with a supportive community. Please keep it going. >>> >>> Malcolm >>> >>>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>>> Hey Folks, >>>> >>>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>>> >>>> 1) Leave the list "as is" on the new server. >>>> >>>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>>> >>>> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >>>> >>>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>>> >>>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>>> >>>> Thanks for making this such a great community! >>>> >>>> Best, >>>> >>>> --Chris Hansen >>>> FileMaker 7/8/9 Certified Developer >>>> Creator of FX.php >>>> "The best way from FileMaker to the Web." >>>> www.iViking.org >>>> >>>> >>>> >>>> _______________________________________________ >>>> 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 > > > > ------------------------------ > > Message: 4 > Date: Tue, 26 Jul 2016 17:09:47 -0700 > From: Joel Shapiro > Subject: Re: [FX.php List] Server Move & List Housekeeping > To: "FX.php Discussion List" > Message-ID: <9B783BB1-2F79-45F1-A156-98B55D77F964@jsfmp.com> > Content-Type: text/plain; charset=windows-1252 > > Me too :) > > Thanks Chris > > -Joel > > >> On Jul 22, 2016, at 5:06 PM, Dale Bengston wrote: >> >> Thanks, Chris. Put me in the ?as-is? column as well. >> >> Dale >> >>> On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: >>> >>> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. >>> >>> Thanks for all the feedback! >>> >>> --Chris >>> >>>> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >>>> >>>> Hi Chris, >>>> >>>> I like the fact that this list is focussed on FX.php. It is a low volume >>>> list, with a supportive community. Please keep it going. >>>> >>>> Malcolm >>>> >>>>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>>>> Hey Folks, >>>>> >>>>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>>>> >>>>> 1) Leave the list "as is" on the new server. >>>>> >>>>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>>>> >>>>> 3) Shut down the list and ask people to migrate to another list (I would come, of course, but we might lose some people.) >>>>> >>>>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>>>> >>>>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>>>> >>>>> Thanks for making this such a great community! >>>>> >>>>> Best, >>>>> >>>>> --Chris Hansen >>>>> FileMaker 7/8/9 Certified Developer >>>>> Creator of FX.php >>>>> "The best way from FileMaker to the Web." >>>>> www.iViking.org >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> 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 > > > > > ------------------------------ > > Message: 5 > Date: Wed, 27 Jul 2016 00:12:31 +0000 > From: "Vargas, Steve E" > Subject: RE: [FX.php List] Server Move & List Housekeeping > To: FX.php Discussion List > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > "as-is" great tech discussion of real world development!!! > > > Steve Vargas > Technology Department > > 6400 Uptown Blvd, Albuquerque, NM 87110 | P.O. Box 25704, Albuquerque, NM 87125-704 | vargas_s@aps.edu | 505.830.8076 > > -----Original Message----- > From: fx.php_list-bounces@mail.iviking.org [mailto:fx.php_list-bounces@mail.iviking.org] On Behalf Of Joel Shapiro > Sent: Tuesday, July 26, 2016 6:10 PM > To: FX.php Discussion List > Subject: Re: [FX.php List] Server Move & List Housekeeping > > Me too :) > > Thanks Chris > > -Joel > > >> On Jul 22, 2016, at 5:06 PM, Dale Bengston wrote: >> >> Thanks, Chris. Put me in the "as-is" column as well. >> >> Dale >> >>> On Jul 22, 2016, at 5:25 PM, Chris Hansen wrote: >>> >>> It sounds like there is a definite consensus =) There may be a day or so of downtime when I make the switch, but I'll keep the list as is. >>> >>> Thanks for all the feedback! >>> >>> --Chris >>> >>>> On Jul 21, 2016, at 6:16 PM, Malcolm Fitzgerald wrote: >>>> >>>> Hi Chris, >>>> >>>> I like the fact that this list is focussed on FX.php. It is a low >>>> volume list, with a supportive community. Please keep it going. >>>> >>>> Malcolm >>>> >>>>> On 22/07/2016 1:20 AM, Chris Hansen wrote: >>>>> Hey Folks, >>>>> >>>>> In the near future I am going to be moving to a new server. And as long as I'm moving, I thought it might make sense to consider different options for the list. Of course, even on a new server I can leave the list "as is", but as there's not a lot of traffic, and most people here are likely on other FM-related web lists, I thought it a good topic for discussion. So here are the options that I've considered so far; let me know if you think of others: >>>>> >>>>> 1) Leave the list "as is" on the new server. >>>>> >>>>> 2) Switch the forum to something like Google groups (either email or discussion group based). >>>>> >>>>> 3) Shut down the list and ask people to migrate to another list (I >>>>> would come, of course, but we might lose some people.) >>>>> >>>>> There are variations on the above (e.g. Google isn't the only provider of group/list services) but I think that covers the main options. >>>>> >>>>> What does everyone think? What would you all prefer? Again, I don't mind leaving things as they are, but with a server migration, I thought it made sense to take advantage of the situation if there is something that people like better. >>>>> >>>>> Thanks for making this such a great community! >>>>> >>>>> Best, >>>>> >>>>> --Chris Hansen >>>>> FileMaker 7/8/9 Certified Developer Creator of FX.php "The best way >>>>> from FileMaker to the Web." >>>>> www.iViking.org >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> 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 > FX.php_List@mail.iviking.org > http://www.iviking.org/mailman/listinfo/fx.php_list > > End of FX.php_List Digest, Vol 140, Issue 5 > ******************************************* From chris at iViking.org Wed Jul 27 19:51:55 2016 From: chris at iViking.org (Chris Hansen) Date: Wed Jul 27 19:51:23 2016 Subject: [FX.php List] List Moving Servers Shortly Message-ID: Okay Folks, I've got things planned, and the list will be going down shortly, and come back living on another server. Though I WILL be using different list management software, I'm confident that archives, etc. will all come with us. The process may take a day or two. Feel free to drop me an email if you have any questions, etc. I'll send another email to the list when the new version is running. Best, --Chris