Social Networking Technology Resources for Genealogical Societies: Difference between revisions

fixed description of Wordpress under blogging software. Also added Wordpress under CMS category.
(Added entry for Flickr)
(fixed description of Wordpress under blogging software. Also added Wordpress under CMS category.)
Line 3: Line 3:
= Rationale  =
= Rationale  =


Today Genealogical Societies are learning that to survive, or to at least be relevent, they must embrace technology. Many Societies don't have the expertise to set up and manage their own websites. However, having an effective website is the first step. This discussion is for those who have some proficiency with computer technology and want to learn more about how to save their Society money by designing and maintaining the website themselves. All of this technology can be purchased (or found free from a varitey of sources) but in doing so the Society gives up some portion of control over content. <br>
Today Genealogical Societies are learning that to survive, or to at least be relevent, they must embrace technology. Many Societies don't have the expertise to set up and manage their own websites. However, having an effective website is the first step. This discussion is for those who have some proficiency with computer technology and want to learn more about how to save their Society money by designing and maintaining the website themselves. All of this technology can be purchased (or found free from a varitey of sources) but in doing so the Society gives up some portion of control over content. <br>  


= Purpose<br> =
= Purpose<br> =


As might be expected, a search of the FamilySearch Wiki using terms like Unix, shell, vi and htaccess and other 'technological' terms does not result in too many hits. However, there is a need for a genealogy focused presentation of technical materials for members of Genealogical Societies to use to create and enhance their on-line presence.  
As might be expected, a search of the FamilySearch Wiki using terms like Unix, shell, vi and htaccess and other 'technological' terms does not result in too many hits. However, there is a need for a genealogy focused presentation of technical materials for members of Genealogical Societies to use to create and enhance their on-line presence.  


This page&nbsp;will serve as a focal point for technological discussions and resources that may be used by Genealogical Societies to create, enhance and maintain their virtual presence.<br>
This page&nbsp;will serve as a focal point for technological discussions and resources that may be used by Genealogical Societies to create, enhance and maintain their virtual presence.<br>  


This page was originally created for RootsTech 2011 session TC091 titled 'An Exploration of the Integration of Social Networking Technologies into the Core Activities of Genealogical Societies'.  
This page was originally created for RootsTech 2011 session TC091 titled 'An Exploration of the Integration of Social Networking Technologies into the Core Activities of Genealogical Societies'.  


= Working in&nbsp;the Unix environment<br> =
= Working in&nbsp;the Unix environment<br> =


Most web hosting services are based on a Unix or Unix-like environment. Knowledge of the areas listed below is not a requirement for you to establish a web presence. However, understanding the underlying technologies will allow you to have much more control over your sites appearance and security.&nbsp;  
Most web hosting services are based on a Unix or Unix-like environment. Knowledge of the areas listed below is not a requirement for you to establish a web presence. However, understanding the underlying technologies will allow you to have much more control over your sites appearance and security.&nbsp;  
Line 52: Line 52:
safe_mode = 0
safe_mode = 0
register_globals = 0
register_globals = 0
allow_url_fopen = 0</pre>
allow_url_fopen = 0</pre>  
This is a deep subject:&nbsp;see the following for more information:  
This is a deep subject:&nbsp;see the following for more information:  


Line 66: Line 66:


cron&nbsp;is a Unix utility that allow you to schedule and run programs (such as backups) on an established schedule. If your Unix system allows you to do so, you could submit an entry that would look like this:  
cron&nbsp;is a Unix utility that allow you to schedule and run programs (such as backups) on an established schedule. If your Unix system allows you to do so, you could submit an entry that would look like this:  
<pre>00 01 * * 0 /some/dir/my_backups </pre>
<pre>00 01 * * 0 /some/dir/my_backups </pre>  
This would tell the system to run the 'my_backups' program located in the /some/dir directory at 1:00 am every Sunday. The meanings of the five fields are provided below.  
This would tell the system to run the 'my_backups' program located in the /some/dir directory at 1:00 am every Sunday. The meanings of the five fields are provided below.  
<pre>* * * * *
<pre>* * * * *
Line 75: Line 75:
| | +--------- day of month (1 - 31)
| | +--------- day of month (1 - 31)
| +----------- hour (0 - 23)
| +----------- hour (0 - 23)
+------------- min (0 - 59)</pre>
+------------- min (0 - 59)</pre>  
Note that an asterick will be interpreted as every day of week/month/day/hour/minute. You can also have several entries seperated by commas. In the following example my_logs would be run at 1:05 pm every Monday, Wednesday and Friday.  
Note that an asterick will be interpreted as every day of week/month/day/hour/minute. You can also have several entries seperated by commas. In the following example my_logs would be run at 1:05 pm every Monday, Wednesday and Friday.  
<pre>05 13 * * 1,3,5 /some/dir/my_logs</pre>
<pre>05 13 * * 1,3,5 /some/dir/my_logs</pre>  
If you are lucky your hosting service will provide a GUI&nbsp;interface that makes entering and managing entries a little easier.  
If you are lucky your hosting service will provide a GUI&nbsp;interface that makes entering and managing entries a little easier.  


Line 85: Line 85:
<pre>cd /my/system/public_html
<pre>cd /my/system/public_html


tar --create --gzip --file="Documents_01Jan2011" Documents</pre>
tar --create --gzip --file="Documents_01Jan2011" Documents</pre>  
These commands would create a zipped file with the named "Documents_01Jan2011" which would contain all files and directories contained in the /my/system/public_html/Documents directory.<br>
These commands would create a zipped file with the named "Documents_01Jan2011" which would contain all files and directories contained in the /my/system/public_html/Documents directory.<br>  


It is common to group a series of backup commands into a batch file and to schedule that batch file to be run in cron.  
It is common to group a series of backup commands into a batch file and to schedule that batch file to be run in cron.  
Line 120: Line 120:
cd /home8/dallasge/public_html
cd /home8/dallasge/public_html
FILENAME=$BUD"/"$DAT_TIM"_public_html_Production.tar.gz"
FILENAME=$BUD"/"$DAT_TIM"_public_html_Production.tar.gz"
tar --create --gzip --file=$FILENAME Production</pre>
tar --create --gzip --file=$FILENAME Production</pre>  
After creating and saving this file (say, for example, in a file named DailyBackups) you would tell the shell that it was an executable program my changing the file attributes using the chmod command:  
After creating and saving this file (say, for example, in a file named DailyBackups) you would tell the shell that it was an executable program my changing the file attributes using the chmod command:  
<pre>chmod +x DailyBackups</pre>
<pre>chmod +x DailyBackups</pre>  
You could then run the file by typing this at the shell prompt (from the same directory):  
You could then run the file by typing this at the shell prompt (from the same directory):  
<pre>DailyBackups</pre>
<pre>DailyBackups</pre>  
This would tell the system to run your shell and create a backup file named 29_Jan_2011_01_30_02_public_html_Production.tar.gz  
This would tell the system to run your shell and create a backup file named 29_Jan_2011_01_30_02_public_html_Production.tar.gz  


Line 148: Line 148:
= Google Analytics  =
= Google Analytics  =


[http://www.google.com/analytics/#utm_campaign=en_us&utm_source=en-ha-na Google Analytics] is a powerful and free resource that allows you to track and analyze the utilization of your web site. You need to log in and register your site:&nbsp;when you do you will be provided with some HTML&nbsp;code to copy and paste into the appropriate place on your web site. Once you do, Google Analytics will start tracking usage of your web site and will provide you with a wide variety of reports on their site.<br>
[http://www.google.com/analytics/#utm_campaign=en_us&utm_source=en-ha-na Google Analytics] is a powerful and free resource that allows you to track and analyze the utilization of your web site. You need to log in and register your site:&nbsp;when you do you will be provided with some HTML&nbsp;code to copy and paste into the appropriate place on your web site. Once you do, Google Analytics will start tracking usage of your web site and will provide you with a wide variety of reports on their site.<br>  


= Content Management Software<br> =
= Content Management Software<br> =


As the name implies, a Content Management Software (CMS) package&nbsp;provides a framework that is used to create the web site.&nbsp;Once the initial structure is created this allows users to focus on the content&nbsp;rather than on the mechanics&nbsp;of presenting the information. This has several advantages:  
As the name implies, a Content Management Software (CMS) package&nbsp;provides a framework that is used to create the web site.&nbsp;Once the initial structure is created this allows users to focus on the content&nbsp;rather than on the mechanics&nbsp;of presenting the information. This has several advantages:  
Line 170: Line 170:
*[http://docs.joomla.org/Security_Checklist_1_-_Getting_Started Security Checklist]&nbsp;- an invaluable reference with excellent advice. Best read <u>before</u> your site is hacked. See the section titled ''''The most important guidelines' '''for instructions on how to subscribe to Joomla Security News (email or RSS) so you can receive notifications whenever critical updates are released.  
*[http://docs.joomla.org/Security_Checklist_1_-_Getting_Started Security Checklist]&nbsp;- an invaluable reference with excellent advice. Best read <u>before</u> your site is hacked. See the section titled ''''The most important guidelines' '''for instructions on how to subscribe to Joomla Security News (email or RSS) so you can receive notifications whenever critical updates are released.  
*To see what a Genealogical Society web&nbsp;site created using Joomla looks like see&nbsp;the [http://www.dallasgenealogy.org/ Dallas Genealogical Society]&nbsp;and the [http://www.stlgs.org/ St Louis Genealogical Society]&nbsp;sites.
*To see what a Genealogical Society web&nbsp;site created using Joomla looks like see&nbsp;the [http://www.dallasgenealogy.org/ Dallas Genealogical Society]&nbsp;and the [http://www.stlgs.org/ St Louis Genealogical Society]&nbsp;sites.
=== Wordpress ===
Another open source option. Useful links include:
*[http://wordpress.org/about/ About Wordpress] - overview of the services &amp; features
*[http://codex.wordpress.org/Getting_Started_with_WordPress#WordPress_for_Beginners Wordpress for Beginners] -- resources to help you get started
*[http://wordpress.org/extend/themes/ Wordpress Theme Directory] - browse over 1,300 freely available themes to apply to your Wordpress site (for self-hosted installations only)
*[http://wordpress.org/extend/plugins/ Wordpress Plugin Directory] -- need enhanced functionality? There's a plugin out there for you!
*[http://wordpress.org/support/ Wordpress Support] - online forums for help
*[http://wordpress.org/about/ Wordpress.tv] - educational online videos providing information about Wordpress and the varied ways you can use it.


=== MODx  ===
=== MODx  ===
Line 201: Line 212:
= Wiki's  =
= Wiki's  =


A&nbsp;wiki is nothing more than a web page that can be modified by anybody who can view it. This page is a&nbsp;wiki:&nbsp;register with&nbsp;Family Search, click on the ''''Edit This Page'&nbsp;'''button at the top of your screen and you can change&nbsp;this page!&nbsp;<br>
A&nbsp;wiki is nothing more than a web page that can be modified by anybody who can view it. This page is a&nbsp;wiki:&nbsp;register with&nbsp;Family Search, click on the ''''Edit This Page'&nbsp;'''button at the top of your screen and you can change&nbsp;this page!&nbsp;<br>  


Obviously there is a lot more that that to know... one place to start is this&nbsp;[http://www.dallasgenealogy.org/index.php?option=com_content&view=article&id=264&Itemid=204 Wiki Overview]&nbsp;page.  
Obviously there is a lot more that that to know... one place to start is this&nbsp;[http://www.dallasgenealogy.org/index.php?option=com_content&view=article&id=264&Itemid=204 Wiki Overview]&nbsp;page.  
Line 240: Line 251:


*[http://www.blogger.com/home eBlogger] - Free, provided (and hosted)&nbsp;by Google  
*[http://www.blogger.com/home eBlogger] - Free, provided (and hosted)&nbsp;by Google  
*[http://wordpress.org/ WordPress]&nbsp;- Also free, although you must have your own server or a web hosting service to load it<br>
*[http://wordpress.org/ WordPress]&nbsp;- Free open-sourse website development (&amp;&nbsp;blogging) software.&nbsp; Can create a site for free at Wordpress.com or install on your own server (or a web hosting service). <br>


For more information see [http://www.blogbasics.com/ BlogBasics]. They have more tutorials and discussions about hosting options.  
For more information see [http://www.blogbasics.com/ BlogBasics]. They have more tutorials and discussions about hosting options.  
Line 246: Line 257:
== Related pages on Family&nbsp;Search  ==
== Related pages on Family&nbsp;Search  ==


[[Blog Your Way to Genealogical Success]]<br>
[[Blog Your Way to Genealogical Success]]<br>  


= Facebook  =
= Facebook  =
Line 260: Line 271:
*See [http://www.contentious.com/2009/03/08/hashtags-on-twitter-how-do-you-follow-=them Hashtags on Twitter: How do you follow them] on contentious.com for more information
*See [http://www.contentious.com/2009/03/08/hashtags-on-twitter-how-do-you-follow-=them Hashtags on Twitter: How do you follow them] on contentious.com for more information


= Flickr =
= Flickr =


[http://www.flickr.com/ Flickr] is a&nbsp;web site for&nbsp;pictures and images... there may be&nbsp;some great potential for using this to integrate images into a web site.
[http://www.flickr.com/ Flickr] is a&nbsp;web site for&nbsp;pictures and images... there may be&nbsp;some great potential for using this to integrate images into a web site.  


= Podcasts  =
= Podcasts  =
Line 300: Line 311:
= 'Back End'&nbsp; Services  =
= 'Back End'&nbsp; Services  =


Some aspects of running a society may be too important or too complicated for home grown solutions... There are alternatives focused on the not for profit organization.<br>
Some aspects of running a society may be too important or too complicated for home grown solutions... There are alternatives focused on the not for profit organization.<br>  


== Neon  ==
== Neon  ==
Line 308: Line 319:
== Vertical Response (VR)  ==
== Vertical Response (VR)  ==


*Vertical Response is an e-mail marketing solution for small businesses and non-profit organizations.&nbsp; While there is a charge for businesses, [http://www.verticalresponse.com/pricing/non-profit/ non-profit organizations] with 501(c)(3) status may send 10,000 e-mails per month free and receive a 15% discount on surveys and printed postcards.<br>
*Vertical Response is an e-mail marketing solution for small businesses and non-profit organizations.&nbsp; While there is a charge for businesses, [http://www.verticalresponse.com/pricing/non-profit/ non-profit organizations] with 501(c)(3) status may send 10,000 e-mails per month free and receive a 15% discount on surveys and printed postcards.<br>  
*VR is dedicated to the reduction of spam.&nbsp; E-mail lists may not be harvested from other sites.&nbsp; The list must be those that "opt-in" to receive e-mails. The system checks the outbound e-mails for previous bounces and unsubscribed e-mail addresses.&nbsp;  
*VR is dedicated to the reduction of spam.&nbsp; E-mail lists may not be harvested from other sites.&nbsp; The list must be those that "opt-in" to receive e-mails. The system checks the outbound e-mails for previous bounces and unsubscribed e-mail addresses.&nbsp;  
*Over 500 templates are provided to assist in the design of attractive e-mails or e-newsletters.&nbsp; It is also possible to design your own. E-mails or e-newsletters can be linked to an organization's Facebook and Twitter.<br><br>
*Over 500 templates are provided to assist in the design of attractive e-mails or e-newsletters.&nbsp; It is also possible to design your own. E-mails or e-newsletters can be linked to an organization's Facebook and Twitter.<br><br>
Line 314: Line 325:
== EasyNetSites  ==
== EasyNetSites  ==


This commercial service was developed specifically to support Genealogical Societies. Details are available at [http://easynetsites.com easynetsites.com<u>. <br></u>]
This commercial service was developed specifically to support Genealogical Societies. Details are available at [http://easynetsites.com easynetsites.com<u>. <br></u>]  


= Related Family Search Resources  =
= Related Family Search Resources  =


[https://wiki.familysearch.org/en/The_power_of_community The Power of Community and the Web 2.0]<br>[https://wiki.familysearch.org/en/Popular_Social_Networks_for_Genealogy Popular Social Networks for Genealogy]<br>[https://wiki.familysearch.org/en/Use_the_Internet_for_Family_History_Research Use the Internet for Family History Research] - This one needs some updating<br>[https://wiki.familysearch.org/en/All_aTwitter_about_Wave All aTwitter about Wave: Ten Disruptive New Web Services]
[https://wiki.familysearch.org/en/The_power_of_community The Power of Community and the Web 2.0]<br>[https://wiki.familysearch.org/en/Popular_Social_Networks_for_Genealogy Popular Social Networks for Genealogy]<br>[https://wiki.familysearch.org/en/Use_the_Internet_for_Family_History_Research Use the Internet for Family History Research] - This one needs some updating<br>[https://wiki.familysearch.org/en/All_aTwitter_about_Wave All aTwitter about Wave: Ten Disruptive New Web Services]
632

edits