Social Networking Technology Resources for Genealogical Societies: Difference between revisions
Tonyhanson (talk | contribs) No edit summary |
Tonyhanson (talk | contribs) No edit summary |
||
Line 110: | Line 110: | ||
If you dabble in these protocols the [http://www.w3schools.com/ www.w3schools.com] is a must see site. It has tutorials, syntax references and loads of interactive examples. | If you dabble in these protocols the [http://www.w3schools.com/ www.w3schools.com] is a must see site. It has tutorials, syntax references and loads of interactive examples. | ||
== MySQL - Popular Relational Database == | == MySQL - Popular Relational Database == | ||
Line 150: | Line 149: | ||
*[http://www.phpwcms.de/index.php phpwcms] | *[http://www.phpwcms.de/index.php phpwcms] | ||
= Wiki's | = Wiki's = | ||
A wiki is nothing more than a web page that can be modified by anybody who can view it. This page is a wiki: register with Family Search, click on the ''''Edit This Page' '''button at the top of your screen and you can change this page! <br> | A wiki is nothing more than a web page that can be modified by anybody who can view it. This page is a wiki: register with Family Search, click on the ''''Edit This Page' '''button at the top of your screen and you can change this page! <br> | ||
Obviously there is a lot more that that to know... one place to start is this [http://www.dallasgenealogy.org/index.php?option=com_content&view=article&id=264&Itemid=204 Wiki Overview] page. | Obviously there is a lot more that that to know... one place to start is this [http://www.dallasgenealogy.org/index.php?option=com_content&view=article&id=264&Itemid=204 Wiki Overview] page. | ||
== Popular Wiki's == | == Popular Wiki's == | ||
Line 163: | Line 162: | ||
*[http://www.dokuwiki.org/dokuwiki DokuWiki] | *[http://www.dokuwiki.org/dokuwiki DokuWiki] | ||
= Blogs | = Blogs = | ||
A Blog is just a specialized web page. The name 'Blog' is short for We'''B''' lo'''g'''. Characteristics include the following: | A Blog is just a specialized web page. The name 'Blog' is short for We'''B''' lo'''g'''. Characteristics include the following: | ||
Line 205: | Line 204: | ||
See [http://www.problogger.net/what-is-rss/ What is RSS] on PROBLOGGER for more information. | See [http://www.problogger.net/what-is-rss/ What is RSS] on PROBLOGGER for more information. | ||
= Creating Web-Based Presentations = | = Creating Web-Based Presentations = | ||
Line 224: | Line 222: | ||
*Stands for 'Nonprofit Enterprise Online Network'. A package of services offered by [http://www.z2systems.com/en-US/ Z2 Systems]. They charge for their services but you can choose the modules you want, and the fee is based on the size of your organization. | *Stands for 'Nonprofit Enterprise Online Network'. A package of services offered by [http://www.z2systems.com/en-US/ Z2 Systems]. They charge for their services but you can choose the modules you want, and the fee is based on the size of your organization. | ||
= Related Family Search Resources = | = Related Family Search Resources = | ||
Line 231: | Line 227: | ||
There are already some good resources available: | There are already some good resources available: | ||
<br>[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] | <br>[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] | ||
Revision as of 15:50, 29 January 2011
Template:Adoption Dallas Genealogical Society
Purpose
[edit | edit source]
As might be expected, a search of the FamilySearch Wiki using terms like Unix, shell, vi, htaccess, PHP 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 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.
Working in the Unix environment
[edit | edit source]
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.
Choosing a web hosting service[edit | edit source]
Not all services are the same... What else besides cost should you consider when selecting a web hosting service?
Fundamental security issues[edit | edit source]
Specific security needs will be different for every site, but there are some basic suggestions that are universal:
- Perform regular backups
- Keep current copies of your backups somewhere else
- Change your passwords frequently
- Keep your application software up to date
- Restrict access to known hacker sites in an .htaccess file
- Restrict known PHP exploits by using PHP.ini
- Schedule and review the output of the 'find ctime -l' command (lists files that have been changed recently, which may be an indication of malicious activity) daily
.htaccess[edit | edit source]
.htaccess is a file that can be created on your web site to provide your web server with special instructions to handle a variety of tasks such as page redirection and security. The following links provide more information:
- A Quick Introduction to htaccess
- 5 htaccess Tricks Every Webmaster Should Know
- The Ultimate htaccess
Backups[edit | edit source]
For all too many people the first time they consider the question of how (or even if) their web hosting service backs up their data is the day after their data has been irretrieveably lost. Most service providers only keep very recent backups (1 or 2 days). Unfortunately, by the time most people realize that they have serious problems on their site the backups contain corrupted data.
Good backups are your last and best line of defense.
cron[edit | edit source]
cron 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:
00 01 * * 0 /some/dir/my_backups
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.
* * * * * ^ ^ ^ ^ ^ | | | | | | | | | +----- day of week (0 - 6) (Sunday=0) | | | +------- month (1 - 12) | | +--------- day of month (1 - 31) | +----------- hour (0 - 23) +------------- min (0 - 59)
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.
05 13 * * 1,3,5 /some/dir/my_logs
If you are lucky your hosting service will provide a GUI interface that makes entering and managing entries a little easier.
tar[edit | edit source]
tar is a Unix utility that allows you to create backup files. Here is an example:
cd /my/system/public_html tar --create --gzip --file="Documents_01Jan2011" Documents
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.
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.
See your systems man pages for tar to see details on the options as these vary from implementation to implementation.
Text Editors[edit | edit source]
Creating and modifying files when logged into the shell requires the use of a text editor. vi is one that is provided with virtually every Unix installation (there are others). See the writeup on the vi editor for more information on how to use vi.
Terminal Emulation[edit | edit source]
Putty[edit | edit source]
PuTTy is a free terminal emulation software package that allows you to establish telnet or ssh sessions from your PC. See this outstanding web site for more information about this useful tool.
Basic Shell Programming[edit | edit source]
The shell is Unix-speak for the interface with the operating system. If you connect to your web hosting service using a protocol like telnet or ssh (using a terminal emulation software package like PuTTy) you will be interacting with the shell.
This is not an area for the faint of heart... if your only experience with computers has been with Windows or a Mac you are going to find that blinking dollar sign to be very unhelpful. You can do very powerful things here, but it does require a basic understanding of the file structure, some of the basic shell commands and familiarity with an editor like vi.
Note that many hosting services do not allow access to the shell by default. You may need to contact them and request permission.
Once you have access to the shell you can create files with valid commands in them. One common use is to create backup files.Here is a typical sample presented only to illustrate the basic concepts.
MON=`date | cut -c5-7` DAY=`date | cut -c9-10` YR=`date | cut -c25-28` TIM=`date | cut -c12-19 | sed 's/:/_/g'` DAT_TIM=`echo $DAY"_"$MON"_"$YR"_"$TIM` cd /home8/dallasge/public_html FILENAME=$BUD"/"$DAT_TIM"_public_html_Production.tar.gz" tar --create --gzip --file=$FILENAME Production
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:
chmod +x DailyBackups
You could then run the file by typing this at the shell prompt (from the same directory):
DailyBackups
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
CSS, XML or HTML information[edit | edit source]
If you dabble in these protocols the www.w3schools.com is a must see site. It has tutorials, syntax references and loads of interactive examples.
MySQL - Popular Relational Database[edit | edit source]
MySQL is a popular relational database provided by many web hosting services. If you subscribe to one of these services and have loaded one of their Blog, Wiki or Content Management System packages chances are you are using MySQL and don't even know it!
You should be able access MySQL directly: see the information provided by your Web Hosting provider.
MySQL Forge has an impressive colletion of MySQL tutorials.
Google Analytics[edit | edit source]
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: when you do you will be provided with some HTML 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.
PHP[edit | edit source]
PHP is a powerful language that can be used to enhance your web pages. It is also commonly used to create many of the powerful applications (such as Blogs, Wiki's and Content Management Systems) that you may use on your web site, so even a high level understanding of PHP can be very useful.
- php.net has a simple tutorial
- w3schools.com has a great reference and a PHP Tutorial
Content Management Software
[edit | edit source]
As the name implies, a Content Management Software (CMS) package provides a framework that is used to create the web site. Once the initial structure is created this allows users to focus on the content rather than on the mechanics of presenting the information. This has several advantages:
- They provide a very consistent look and feel for the entire web site.
- Web sites tend to be very standards compliant. This means that the content will be displayed 'correctly' on all browsers and all types of devices (including often overlooked smart phones).
- Since knowledge of HTML and CSS is not required, it 'lowers the barrier' for creating and managing content. This may make it possible for a society to have more people creating content.
Popular CMS's[edit | edit source]
- Joomla - See the Dallas Genealogical Society web site for one example of a web site created using this CMS.
- MODx
- Drupal
- e107
- Mambo
- XOOPS
- PHP-Nuke
- phpwcms
Wiki's[edit | edit source]
A wiki is nothing more than a web page that can be modified by anybody who can view it. This page is a wiki: register with Family Search, click on the 'Edit This Page' button at the top of your screen and you can change this page!
Obviously there is a lot more that that to know... one place to start is this Wiki Overview page.
Popular Wiki's[edit | edit source]
- MediaWiki - What Wikipedia uses...
- WikkaWiki - One attraction is the ability to create private/closed wiki's
- PmWiki
- DokuWiki
Blogs[edit | edit source]
A Blog is just a specialized web page. The name 'Blog' is short for WeB log. Characteristics include the following:
- A Blog is usually focused on a specific topic
- It consists of a series of posts that are usually brief
- The most recent post is displayed first
- Posts are organized by topics
- Older posts are archived
- Tags can be assigned to posts to facilitate searching
- Readers may be allowed to post and/or comment on posts
For a more in-depth exlanation see this Blog Overview page.
Popular Blogging Software[edit | edit source]
- eBlogger - Free, provided (and hosted) by Google
- WordPress - Also free, although you must have your own server or a web hosting service to load it
For more information see BlogBasics. They have more tutorials and discussions about hosting options.
Related pages on Family Search[edit | edit source]
Blog Your Way to Genealogical Success
Facebook[edit | edit source]
Utilizing FaceBook to reach out to younger genealogists is something that all societies should consider.
Twitter[edit | edit source]
Twitter is another tool that is probably under utilized by most societies.
The use of HashTags to post comments from events like conferences and seminars (like RootsTech) has become popular recently.
- See Hashtags on Twitter: How do you follow them on contentious.com for more information
RSS[edit | edit source]
RSS stands for Really Simple Syndication. This is a technology that allows you to 'subscribe' to selected web site, Blogs and/or Wiki's and receive content from them whenever it changes.
See What is RSS on PROBLOGGER for more information.
Creating Web-Based Presentations[edit | edit source]
If you have PowerPoint and a microphone you can create your own web-ready Flash presentations! See how the Dallas Genealogical Society is doing this using a free software package called authorPoint from authorgen: See the Overview
Personal Digital Archiving[edit | edit source]
Preservation and archiving must be a fundamental part of your societies strategy.
The Dallas Genealogical Society recently had a presentation on Personal Digial Archiving: See the web page that includes a link to a Flash version of the presentation.
'Back End' Services[edit | edit source]
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.
Neon[edit | edit source]
- Stands for 'Nonprofit Enterprise Online Network'. A package of services offered by Z2 Systems. They charge for their services but you can choose the modules you want, and the fee is based on the size of your organization.
Related Family Search Resources[edit | edit source]
There are already some good resources available:
The Power of Community and the Web 2.0
Popular Social Networks for Genealogy
Use the Internet for Family History Research - This one needs some updating
All aTwitter about Wave: Ten Disruptive New Web Services