Joe Wakefield UK wrote: > Correct :)) It didn't work :(( Every one I tried came up with the same thing: nothing for that address. I guess the page has disappeared or it was an address I no longer have. -- Charani (UK) OPC for Walton, Ashcott, Shapwick, Greinton and Clutton, SOM http://wsom-opc.org.uk
Correct. Joe Wakefield UK On 8 Nov 2012, at 19:46, Charani <charani.b@gmail.com> wrote: > Joe Wakefield UK wrote: >> Try http://passwordcentral.rootsweb.com/ >> Enter all email addresses you may have used. > > Thank you :)) > >> Joe >> Wakefield UK > > WTW?? > > -- > Charani (UK) > OPC for Walton, Ashcott, Shapwick, > Greinton and Clutton, SOM > http://wsom-opc.org.uk > > > ------------------------------- > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
Joe Wakefield UK wrote: > Try http://passwordcentral.rootsweb.com/ > Enter all email addresses you may have used. Thank you :)) > Joe > Wakefield UK WTW?? -- Charani (UK) OPC for Walton, Ashcott, Shapwick, Greinton and Clutton, SOM http://wsom-opc.org.uk
If you remember your user ID, write to Rootsweb Help Desk.
Try http://passwordcentral.rootsweb.com/ Enter all email addresses you may have used. Joe Wakefield UK On 8 Nov 2012, at 18:41, Charani <charani.b@gmail.com> wrote: > Many years ago, I opened a freepages account but, as far as I can > recollect, I never used it and haven't a clue about the details now - > including which email address I used! > > What's the best way of finding the account? > > -- > Charani (UK) > OPC for Walton, Ashcott, Shapwick, > Greinton and Clutton, SOM > http://wsom-opc.org.uk > > > ------------------------------- > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
Many years ago, I opened a freepages account but, as far as I can recollect, I never used it and haven't a clue about the details now - including which email address I used! What's the best way of finding the account? -- Charani (UK) OPC for Walton, Ashcott, Shapwick, Greinton and Clutton, SOM http://wsom-opc.org.uk
On 4/11/2012 10:50 p.m., Nick Reddan wrote: > Barry > > Yes you can use single quotes. However, if you replace single quotes in > any formula with the following you will get double quotes: > &char(34)& (works in Excel and OpenOffice) > > &@CHAR(34)& (works in that legacy system Lotus 123) > -------------------------- Nick, Thanks for reminding me to use the ASCII character " spreadsheet equivalent of &char(34)&. Barry
Barry Yes you can use single quotes. However, if you replace single quotes in any formula with the following you will get double quotes: &char(34)& (works in Excel and OpenOffice) &@CHAR(34)& (works in that legacy system Lotus 123) Regards Nick My Sites My home <http://members.iinet.net.au/%7Enickred/> My newspaper extracts <http://members.iinet.net.au/%7Enickred/newspaper/index.html> Registry of Deeds Index Project <http://freepages.genealogy.rootsweb.com/%7Eregistryofdeeds/index.html> Managed Sites Irish Genealogical Research Society <http://www.igrsoc.org/index.htm> Majura tennis Club <http://members.iinet.net.au/%7Enickred/majuratennis/> On 4/11/2012 6:00 PM, freepages-help-request@rootsweb.com wrote: > The spreadsheet formula requires that they be > used, as the spreadsheet uses the double "quotes" to enclose the <a> tag > data above.
On 28/10/2012 7:44 a.m., Dan Kennedy wrote: > This here is my updated obituary page. > http://freepages.genealogy.rootsweb.ancestry.com/~obituaries/obituaries.html > <http://freepages.genealogy.rootsweb.ancestry.com/%7Eobituaries/obituaries.html> > Would you know if I could include two other similiar buttons somewhere > in the centre under each hand-typed obituary; one button labeled > actual copy of "Obituary" and one button for a photo of a > "Headstone"? After clicking on either button, there could be a header > title with an explanation of the obituary and headstone (ie: newspaer > source and cemetery location). This idea may work well for my > obituary page if I knew the code and how to install the the code and > then how to upload the actual obituary and headstone photo. Would > this be to complicated? > ------------------------------------- Dan, I know you wrote to me directly, but with the amount of time that I spent sorting out some of the problems in making such a webpage simple to use, but yet compatible with older browsers, I have chosen to make the reply to the list. It may or may not be of benefit to others. At this stage you have given me no clue as to how you are creating the obituaries database; is it by Copy & Paste into the webpage, or through use of a spreadsheet database. My spreadsheet database is yet to be updated, but if you are to have means of linking to the original obituary and / or a grave image, it is safer to create those basic links in the database. The basic links include - <a class='clip' target='_blank' title='click to view the original obituary' href='#'></a> <a class='grave' target='_blank' title='click to view a photo of the grave' href='#'></a> Note the single 'quotes'. The spreadsheet formula requires that they be used, as the spreadsheet uses the double "quotes" to enclose the <a> tag data above. The classes 'clip' and 'grave' provide a means of accessing both groups of <a> tags for the purposes of styling, while the target='_blank' ensures that the links will open in a new tab. The title provides information on the link when the cursor is hovered over it, which leaves href='#' (hash), the means of providing the URL of the required hyper-link. The # will take you nowhere, as the browser sees it as a "null". Once the # is replaced with an URL, the link will become active once clicked, e.g. - <a href='somedomain.com/directory/filename.html'>here I am!</a> ... but in this project there is no text to identify the link, and the styles are used to create a small click-able button for either or both the 'clip' or 'grave' <a> tags. If you are linking to outside sources, then your links will be absolute and point at the appropriate site, whereas you may have a collection of grave / headstone photos on your computer in a sub folder named images. That being the case, the link would be href='images/mypic-1.jpg', and provided you created a similar images sub-directory on the server and loaded the images to it, that relative link will work for you locally and via the server. The existing kc-obits.html file has a couple of these links placed at the end of each obituary - just before the </p> tag. Only the Frank Anson obituary is active with visible links, and the others have been set to display:none. http://freepages.rootsweb.com/~bristowe/kc-obits.html <http://freepages.rootsweb.ancestry.com/%7Ebristowe/kc-obits.html> The CSS to hide the inactive links is - #obits p a[href="#"] {display:none} and is valid in all modern browsers. For Internet Explorer versions 5.5 and 6, Javascript has been used to locate any href="#" and style them as display="none". The alpha buttons for those browsers have also been styled to look like their more modern cousins, and act in a similar fashion by using another Javascript function. Having had experience in developing a similar database some time ago, I recommend that you get a spreadsheet format perfected before going too much farther, as the trouble involved in trying to sort it out at a later date may kill the whole project. Barry
Vanessa It sounds like you may have something entered incorrectly. Try doing the entries again. You might also want to try Filezilla. It is a free (and permanent) program. Joyce Gaston Reece -----Original Message----- From: Vanessa Stern Sent: Friday, November 02, 2012 9:32 AM To: freepages-help@rootsweb.com Subject: [FreeHelp] Trying to set up WS-FTP My old computer died and I now have a new one running Win7. I downloaded WS-FTP (free version) and cannot get a connection with my Freepages account. I checked with password central and I seem to have everything entered correctly, but this is the error message: Finding Host users.freepages.rootsweb.com ... Connecting to 66.43.28.143:21 Connected to 66.43.28.143:21 in 0.100000 seconds, Waiting for Server Response Error reading response from server. Connection closed by remote host. Host type (1): AUTO Is there a problem on the server end or mine? I have established a connection with another site that I have just fine. Vanessa ------------------------------- To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
My old computer died and I now have a new one running Win7. I downloaded WS-FTP (free version) and cannot get a connection with my Freepages account. I checked with password central and I seem to have everything entered correctly, but this is the error message: Finding Host users.freepages.rootsweb.com ... Connecting to 66.43.28.143:21 Connected to 66.43.28.143:21 in 0.100000 seconds, Waiting for Server Response Error reading response from server. Connection closed by remote host. Host type (1): AUTO Is there a problem on the server end or mine? I have established a connection with another site that I have just fine. Vanessa
Good morning Vanessa, In your FTP client select "Passive FTP". It should work just fine if you have everything else entered correctly. FTP://users.freepages.rootsweb.ancestry.com Subdirectory: genealogy_html (or what ever subdirectory you selected at Rootsweb) There are several: Family, Genealogy, Military, Miscellaneous, etc. Hope this helps you to get your files transferred. Kind regards, Heidi Boos-Utley Email: hutley@greenhills.net URL: http://freepages.genealogy.rootsweb.ancestry.com/~heidisfamily ---------------------------------------------------------------------------------------- ----- Original Message ----- From: "Vanessa Stern" <vrstern@earthlink.net> To: <freepages-help@rootsweb.com> Sent: Friday, November 02, 2012 8:32 Subject: [FreeHelp] Trying to set up WS-FTP > My old computer died and I now have a new one running Win7. I > downloaded WS-FTP (free version) and cannot get a connection with my > Freepages account. I checked with password central and I seem to > have everything entered correctly, but this is the error message: > > Finding Host users.freepages.rootsweb.com ... > Connecting to 66.43.28.143:21 > Connected to 66.43.28.143:21 in 0.100000 seconds, Waiting for Server > Response > Error reading response from server. > Connection closed by remote host. > Host type (1): AUTO > > Is there a problem on the server end or mine? > > I have established a connection with another site that I have just fine. > > Vanessa > > > ------------------------------- > To unsubscribe from the list, please send an email to > FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without > the quotes in the subject and the body of the message
Look to see if it is broken... http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry-16b-17532481#.UIghnK68xI4 link ends in xI4..... nelda Today well lived - makes every yesterday a dream of happiness, and every tomorrow a vision of hope. My Genealogy: http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide Project: http://www.gilpingenetics.us ~~~~~~~~~~~~~~~~~~
Long URLs, may wrap (break), as appears to have happened in your email client, i.e. >http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry >-16b-17532481#.UIghnK68xI4 Copy and paste the second line/part of the URL to reach the appropriate page, i.e. <http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry-16b-17532481#.UIghnK68xI4> Pat Asher At 05:31 PM 11/1/2012, Paul A. Roth wrote: >I get a "Page Not Found" message...??? URL doesn't work. > >--- On Thu, 11/1/12, freepages-help-request@rootsweb.com ><freepages-help-request@rootsweb.com> wrote: > >From: freepages-help-request@rootsweb.com ><freepages-help-request@rootsweb.com> >Subject: FREEPAGES-HELP Digest, Vol 7, Issue 126 >To: freepages-help@rootsweb.com >Date: Thursday, November 1, 2012, 3:00 AM > > > >When replying to a digest message, quote only the specific message >to which you are replying, removing the rest of the digest from your >reply. Remember to change the subject of your reply so that it >coincides with the message subject to which you are replying. >***FREEPAGES HELP & FAQ*** ><http://helpdesk.rootsweb.com/FAQ/fpindex.html> > > >Today's Topics: > > 1. Private Equity Firm to Buy Ancestry.com for $1.6B > (Ronald D Bauerle) > 2. Re: Private Equity Firm to Buy Ancestry.com for $1.6B > (Nelda Percival) > > >---------------------------------------------------------------------- > >Message: 1 >Date: Wed, 31 Oct 2012 21:28:47 -0500 >From: Ronald D Bauerle <rdbauerle@juno.com> >Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B >To: freepages-help@rootsweb.com >Message-ID: <20121031.213108.16226.8750@mailpop07.dca.untd.com> >Content-Type: text/plain; charset=us-ascii > > >http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry >-16b-17532481#.UIghnK68xI4
I get a "Page Not Found" message...??? URL doesn't work. --- On Thu, 11/1/12, freepages-help-request@rootsweb.com <freepages-help-request@rootsweb.com> wrote: From: freepages-help-request@rootsweb.com <freepages-help-request@rootsweb.com> Subject: FREEPAGES-HELP Digest, Vol 7, Issue 126 To: freepages-help@rootsweb.com Date: Thursday, November 1, 2012, 3:00 AM When replying to a digest message, quote only the specific message to which you are replying, removing the rest of the digest from your reply. Remember to change the subject of your reply so that it coincides with the message subject to which you are replying. ***FREEPAGES HELP & FAQ*** <http://helpdesk.rootsweb.com/FAQ/fpindex.html> Today's Topics: 1. Private Equity Firm to Buy Ancestry.com for $1.6B (Ronald D Bauerle) 2. Re: Private Equity Firm to Buy Ancestry.com for $1.6B (Nelda Percival) ---------------------------------------------------------------------- Message: 1 Date: Wed, 31 Oct 2012 21:28:47 -0500 From: Ronald D Bauerle <rdbauerle@juno.com> Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B To: freepages-help@rootsweb.com Message-ID: <20121031.213108.16226.8750@mailpop07.dca.untd.com> Content-Type: text/plain; charset=us-ascii http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry -16b-17532481#.UIghnK68xI4 I hope this won't affect freepages and/or worldconnect... Ron Bauerle ____________________________________________________________ Woman is 57 But Looks 27 Mom publishes simple facelift trick that angered doctors... http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc ------------------------------ Message: 2 Date: Wed, 31 Oct 2012 23:39:31 -0500 From: Nelda Percival <nelda_percival@hotmail.com> Subject: Re: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B To: <freepages-help@rootsweb.com> Message-ID: <COL116-W70C58B9ED7DDF872951A1E4600@phx.gbl> Content-Type: text/plain; charset="iso-8859-1" Do we know yet what to expect from the new owners? Has there been any briefings? Today well lived - makes every yesterday a dream of happiness, and every tomorrow a vision of hope. My Genealogy: http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide Project: http://www.gilpingenetics.us ~~~~~~~~~~~~~~~~~~ http://www.aircastles-internet-marketing.biz/ > To: freepages-help@rootsweb.com > Date: Wed, 31 Oct 2012 21:28:47 -0500 > From: rdbauerle@juno.com > Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B > > > http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry > -16b-17532481#.UIghnK68xI4 > > I hope this won't affect freepages and/or worldconnect... > > Ron Bauerle > ____________________________________________________________ > Woman is 57 But Looks 27 > Mom publishes simple facelift trick that angered doctors... > http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc > > ------------------------------- > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message ------------------------------ To contact the FREEPAGES-HELP list administrator, send an email to FREEPAGES-HELP-admin@rootsweb.com. To post a message to the FREEPAGES-HELP mailing list, send an email to FREEPAGES-HELP@rootsweb.com. __________________________________________________________ To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word "unsubscribe" without the quotes in the subject and the body of the email with no additional text. End of FREEPAGES-HELP Digest, Vol 7, Issue 126 **********************************************
Like CEO Tim Sullivan, Chief Financial Officer Howard Hochhauser will stay on in his role and keep much of his equity stake. http://www.sltrib.com/sltrib/money/55125275-79/ancestry-company-deal-sullivan.html.csp ----- Original Message ----- From: "Nelda Percival" <nelda_percival@hotmail.com> To: <freepages-help@rootsweb.com> Sent: Wednesday, October 31, 2012 10:39 PM Subject: Re: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B Do we know yet what to expect from the new owners? Has there been any briefings? Today well lived - makes every yesterday a dream of happiness, and every tomorrow a vision of hope. My Genealogy: http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide Project: http://www.gilpingenetics.us ~~~~~~~~~~~~~~~~~~ http://www.aircastles-internet-marketing.biz/ > To: freepages-help@rootsweb.com > Date: Wed, 31 Oct 2012 21:28:47 -0500 > From: rdbauerle@juno.com > Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B > > > http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry > -16b-17532481#.UIghnK68xI4 > > I hope this won't affect freepages and/or worldconnect... > > Ron Bauerle > ____________________________________________________________ > Woman is 57 But Looks 27 > Mom publishes simple facelift trick that angered doctors... > http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc > > ------------------------------- > To unsubscribe from the list, please send an email to > FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without > the quotes in the subject and the body of the message
"There are no anticipated changes in Ancestry.com's operating structure," said Permira and Ancestry management in a statement. " http://www.rawstory.com/rs/2012/10/22/european-private-equity-group-permira-buys-ancestry-com/ Pat Asher At 12:39 AM 11/1/2012, Nelda Percival wrote: >Do we know yet what to expect from the new owners? Has there been >any briefings? > > > > > >Today well lived - makes every yesterday a dream of happiness, and >every tomorrow a vision of hope. >My Genealogy: >http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm >GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide >Project: http://www.gilpingenetics.us >~~~~~~~~~~~~~~~~~~ >http://www.aircastles-internet-marketing.biz/ > > > > To: freepages-help@rootsweb.com > > Date: Wed, 31 Oct 2012 21:28:47 -0500 > > From: rdbauerle@juno.com > > Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B > > > > > > http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry > > -16b-17532481#.UIghnK68xI4 > > > > I hope this won't affect freepages and/or worldconnect... > > > > Ron Bauerle > > ____________________________________________________________ > > Woman is 57 But Looks 27 > > Mom publishes simple facelift trick that angered doctors... > > http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc > > > > ------------------------------- > > To unsubscribe from the list, please send an email to > FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' > without the quotes in the subject and the body of the message > > >------------------------------- >To unsubscribe from the list, please send an email to >FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' >without the quotes in the subject and the body of the message
Thanks Pat... Today well lived - makes every yesterday a dream of happiness, and every tomorrow a vision of hope. My Genealogy: http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide Project: http://www.gilpingenetics.us ~~~~~~~~~~~~~~~~~~
Do we know yet what to expect from the new owners? Has there been any briefings? Today well lived - makes every yesterday a dream of happiness, and every tomorrow a vision of hope. My Genealogy: http://freepages.folklore.rootsweb.ancestry.com/~bonsteinandgilpin/index.htm GeneticGenealogy: http://www.geneticsand.us Gilpin Worldwide Project: http://www.gilpingenetics.us ~~~~~~~~~~~~~~~~~~ http://www.aircastles-internet-marketing.biz/ > To: freepages-help@rootsweb.com > Date: Wed, 31 Oct 2012 21:28:47 -0500 > From: rdbauerle@juno.com > Subject: [FreeHelp] Private Equity Firm to Buy Ancestry.com for $1.6B > > > http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry > -16b-17532481#.UIghnK68xI4 > > I hope this won't affect freepages and/or worldconnect... > > Ron Bauerle > ____________________________________________________________ > Woman is 57 But Looks 27 > Mom publishes simple facelift trick that angered doctors... > http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc > > ------------------------------- > To unsubscribe from the list, please send an email to FREEPAGES-HELP-request@rootsweb.com with the word 'unsubscribe' without the quotes in the subject and the body of the message
http://abcnews.go.com/Business/wireStory/private-equity-firm-buy-ancestry -16b-17532481#.UIghnK68xI4 I hope this won't affect freepages and/or worldconnect... Ron Bauerle ____________________________________________________________ Woman is 57 But Looks 27 Mom publishes simple facelift trick that angered doctors... http://thirdpartyoffers.juno.com/TGL3141/5091fb444525a7b441203st04duc