<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Office of Information Technology Blog &#187; How-To</title>
	<atom:link href="http://blog.oit.wvu.edu/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oit.wvu.edu</link>
	<description>OIT’s technology blog for WVU faculty, staff and students</description>
	<lastBuildDate>Fri, 20 Nov 2009 20:25:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automating the gMigrate Program</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:21:43 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1287</guid>
		<description><![CDATA[A technique to automate the GroupWise calendar migration program, gMigrate]]></description>
			<content:encoded><![CDATA[<p>Back in April 2009, I wrote about <a href="http://blog.oit.wvu.edu/2009/04/07/gmigrate/">Getting Your GroupWise Calendar on an iPod Touch (a penny-pincher’s solution)</a>. This trick lets you use a free program called gMigrate to migrate your GroupWise calendar over to Google Sync (Beta), which in turn synchronizes your calendar with your iPhone or Touch. This synchronization process is entirely manual, however. You have to run gMigrate whenever you update your GroupWise calendar and want to have that information to appear on your iPhone. Well, that&#8217;s not entirely true any more. With a little bit of Windows tweaking, I can show you how to automate this process.</p>
<p>In a nutshell, we are going to use a freeware scripting language called AutoIt to run the gMigrate program for us, and then we are going to use the <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows">Windows Scheduled Tasks utility</a> to automatically run the script.</p>
<h2>AutoIt</h2>
<p><a href="http://www.autoitscript.com/autoit3/">AutoIt</a> is a freeware scripting language, which can be used to automate the Windows graphical user interface. It will work on Windows 2000, XP, 2003, Vista, and Windows Server 2008. One of AutoIt&#8217;s cool features is a Windows Info monitor, which you use to determine the ID numbers of command buttons. Once you know those IDs you can write an AutoIt script that will execute a program and interact with it by clicking specific command buttons. In addition, you can also complile the script into an executable file.</p>
<p>The download page for AutoIt is here: <a href="http://www.autoitscript.com/autoit3/downloads.shtml">http://www.autoitscript.com/autoit3/downloads.shtml</a>.</p>
<p>Assuming that you have already configured your gMigrate with your GroupWise and GMail account information, here is a simple script that will run gMigrate and click the appropriate command buttons:</p>
<blockquote><p>; gMigrate Automation by Roman Olynyk, 8/4/2009<br />
Run ( &#8220;C:\Program Files\gMigrate\CompanionLink.exe&#8221;)<br />
WinWaitActive(&#8221;gMigrate&#8221;, &#8220;&#8221;, 10)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1881]&#8220;)<br />
WinWaitActive ( &#8220;gMigrate&#8221;, &#8220;Completed Synchronization&#8221;, 20)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 2]&#8220;)<br />
ControlClick (&#8221;gMigrate&#8221;, &#8220;&#8221;, &#8220;[ID: 1]&#8220;)</p></blockquote>
<p>I saved my script with the name &#8220;automigrate.AU3.&#8221; Here&#8217;s what this script does:</p>
<ol>
<li>Comments begin with semi-colons</li>
<li>The Run command needs the exact path. In this script I am using the default installation path for gMigrate. If your path is different, change it here.</li>
<li>The WinWaitActive command will wait for up to 10 seconds for the dialog box titled &#8220;gMigrate&#8221; to appear.</li>
<li>Once the dialog box appears, simulate a mouse click to the &#8221; Migrate&#8221; command button (ID 1881).</li>
<li>After clicking, wait for up to 20 seconds for the message &#8220;Completed Synchronization&#8221; to appear.</li>
<li>When &#8220;Completed Synchronization&#8221; dialog appears, click the OK button (ID 2).</li>
<li>Finally, clicking the OK button (ID 1) on the gMigrate dialog causes that program to close.</li>
</ol>
<p>That&#8217;s it. This is a bare-bones script. A more careful programmer can add proper error handling routines to allow for instances where the gMigrate program might fail. Also, this script will run as a foreground task, as I have not added any commands to hide its operation from the user.</p>
<p>You can test out the script by right-clicking over the AU3 file and selecting &#8220;Run Script&#8221; from the top of the menu. Once you are satisfied with the operation, you can go to the Tools menu of the SciTE4AutoIt3 program editor and run the complile command, which will convert your script into an executable file.</p>
<p>In a <a href="http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/">separate posting</a>, we&#8217;ll talk about how you can configure Scheduled Tasks in Windows to periodically run your migration script.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a Scheduled Task in Windows</title>
		<link>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/</link>
		<comments>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 14:54:40 +0000</pubDate>
		<dc:creator>Roman Olynyk</dc:creator>
				<category><![CDATA[Calendars]]></category>
		<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1272</guid>
		<description><![CDATA[The Windows Scheduled Task utility can be configured to run a script file that can migrate your GroupWise calendar to your iPhone or Touch]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.oit.wvu.edu/2009/08/04/automating-the-gmigrate-program/">Previously</a>, I showed you how you can use <strong>AutoIt</strong> to create a simple script that will click through the gMigrate program. Once you have turned your script into an executable file, you can now tell Windows to run it at certain intervals. The following instructions assume that you are using Windows XP.</p>
<ol>
<li>In the Windows XP Control Panel, select the <strong>Scheduled Tasks</strong> command.</li>
<li>With Scheduled Tasks open, double-click on the &#8220;Add Scheduled Task&#8221; icon, which should be at the top of the list of tasks.<br />
<img class="alignleft size-full wp-image-1274" src="http://blog.oit.wvu.edu/files/2009/08/scheduled_tasks.png" alt="scheduled_tasks" width="128" height="19" /></li>
<li>A Scheduled Task Wizard will appear; click <strong>Next&gt;</strong> to continue.</li>
<li>The Scheduled Task Wizard will display a list of programs from which you can select. Your automigrate program will not be in this list, so you must use the <strong>Browse</strong> command button to locate and select it.</li>
<li>Once you have selected the program, the wizard will ask you to type in a name for the task, followed by a group of radio buttons for when you would like this task performed. I chose &#8220;Daily.&#8221;<br />
<img class="alignnone size-medium wp-image-1275" src="http://blog.oit.wvu.edu/files/2009/08/automigrate_sched-300x221.png" alt="automigrate_sched" width="300" height="221" /></li>
<li>After clicking <strong>Next&gt;</strong> again, the Scheduled Task Wizard asks you to select the time and day when you would like the task to start. I&#8217;m configuring my task to run while I&#8217;m usually at work, so I chose a time in the morning after I&#8217;ve had a chance to settle in and possibly work with my calendar &#8212; say 9:30 a.m. Also, since I don&#8217;t normally work weekends, I can opt to run this task only on <strong>Weekdays</strong>.<br />
<img class="alignnone size-medium wp-image-1276" src="http://blog.oit.wvu.edu/files/2009/08/running_on_weekdays2-300x221.png" alt="running_on_weekdays2" width="300" height="221" /></li>
<li>The next dialog asks you to provide your username and password for you computer. When you have typed in that information, click the <strong>Next&gt;</strong> button.</li>
<li>The wizard will display a dialog box, which confirms when Windows will run this task. Notice that there&#8217;s a checkbox where you can &#8220;Open advanced properties for this task when I click Finish.&#8221; <strong>Select this checkbox</strong>, because it will allow you to set how often you want this task to run. As an added precaution, note that you can choose to stop the task if it is still running at the time you&#8217;ve selected.<br />
<img class="alignnone size-full wp-image-1277" src="http://blog.oit.wvu.edu/files/2009/08/confirmation_dialog.png" alt="confirmation_dialog" width="441" height="325" /></li>
<li>The Advanced Schedule Options let you set how many times a day you want the program to run.<br />
<img class="alignnone size-full wp-image-1278" src="http://blog.oit.wvu.edu/files/2009/08/advanced_schedule.png" alt="advanced_schedule" width="368" height="300" /></li>
<li>Once you click the <strong>Apply</strong> button, your scheduled task will run under the conditions that you have set for it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/08/04/creating-a-scheduled-task-in-windows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>James Boyle: Cultural Agoraphobia: What Universities Need to Know About Our Bias Against Openness</title>
		<link>http://blog.oit.wvu.edu/2009/05/29/james-boyle-faculty-academy-2009/</link>
		<comments>http://blog.oit.wvu.edu/2009/05/29/james-boyle-faculty-academy-2009/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:01:30 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[james boyle]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1147</guid>
		<description><![CDATA[The other day one of the people in higher ed I follow on Twitter, Jim Groom from the University of Mary Washington, posted a tweet saying they had a webcast of the keynote speaker for their Faculty Academy, James Boyle, online. I checked it out and was really impressed with what he had to say.  [...]]]></description>
			<content:encoded><![CDATA[<p>The other day one of the people in higher ed I follow on Twitter, <a href="http://jimgroom.net/">Jim Groom</a> from the University of Mary Washington, posted a tweet saying they had a <a href="http://facultyacademy.org/blog09/webcasts/">webcast of the keynote speaker for their Faculty Academy,</a> <a href="http://www.law.duke.edu/boylesite/">James Boyle</a>, online. I checked it out and was really impressed with what he had to say.  I even sent him an email asking if he&#8217;d consider coming to the WV Higher Education Technology Conference in September to speak. (still waiting for a reply, though.)</p>
<p>Anyway, he brings up some excellent food for thought on how universities should to revisit how we think about openness.  Not only in the types of systems and software we employ, but in our academic materials.  He reminds us that the fundamental reason we are in higher education is to educate and share knowledge.  What difference does it make, really, if people can download our course materials?  Why shouldn&#8217;t they?  Because they haven&#8217;t yet paid for them?  Why is that important?  To get any kind of degree the will actually need to enroll, so I fail to see how that would affect the school&#8217;s bottom line.</p>
<p>MIT has for a number of years now offered most if not all of their course materials online for free.  Think of the savings to students in not needing to purchase books every semester.  What if the students did have access to all of the course work ahead of time, wouldn&#8217;t that just make it easier for them to complete the work and do better?  Perhaps they would get more out of the course if they were prepared and could be ready when the semester &#8220;clock is ticking?&#8221;</p>
<p>Here is the video clip of his presentation.  I&#8217;d love to hear what the university community thinks about this.</p>
<blockquote><p><a href="http://facultyacademy.org/blog09/webcasts/"><strong>Cultural Agoraphobia: What Universities Need to Know About Our Bias Against Openness</strong></a><br />
In this presentation, Professor James Boyle will argue that we have a cognitive bias–he calls it cultural agoraphobia–that leads us to underestimate the potential of open networks, open culture and open productive processes. What is the evidence for such a bias?  What should a university do about it–from the library to the classroom to the archive? Using examples ranging from the development of the World Wide Web to Wikipedia and open source software, this talk will try and answer those questions.</p>
<p><a href="http://facultyacademy.org/blog09/webcasts/">Watch the webcast<br />
</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/05/29/james-boyle-faculty-academy-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Call for Proposals! 2009 West Virginia Higher Education Technology Conference</title>
		<link>http://blog.oit.wvu.edu/2009/04/02/call-for-proposals-2009-wvhetc/</link>
		<comments>http://blog.oit.wvu.edu/2009/04/02/call-for-proposals-2009-wvhetc/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 15:34:29 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Presentations]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=1024</guid>
		<description><![CDATA[Here is a message from the 2009 West Virginia Higher Education Technology Conference committee:


Call for Proposals
The West Virginia Higher Education Technology Conference is now accepting presentation, poster session, and workshop proposals for its September 28-30, 2009 conference at Lakeview Golf Resort and Spa in Morgantown, WV.

This conference brings together experts from all over West Virginia [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a message from the <a href="http://wvconference.com">2009 West Virginia Higher Education Technology Conference</a> committee:</p>
<blockquote>
<h2><img class="aligncenter size-medium wp-image-1034" src="http://blog.oit.wvu.edu/files/2009/04/wvhetc-2009-emailbanner-2-300x106.png" alt="wvhetc-2009-emailbanner-2" width="300" height="106" /></h2>
<h2>Call for Proposals</h2>
<p>The West Virginia Higher Education Technology Conference is now accepting presentation, poster session, and workshop proposals for its September 28-30, 2009 conference at Lakeview Golf Resort and Spa in Morgantown, WV.</p>
<p style="text-align: center"><a href="http://www.wvnet.edu/wvconference/proposals/"><img class="size-full wp-image-1030 aligncenter" src="http://blog.oit.wvu.edu/files/2009/04/proposalbutton.png" alt="Submit a Proposal" width="210" height="80" /></a></p>
<p>This conference brings together experts from all over West Virginia for three days to connect, discuss, and learn about the latest in technology and the future of education.</p>
<p>We look forward to building a fantastic program that covers a broad spectrum of topics pertaining to technology and higher education. We hope to see you at the conference and invite you to submit your proposal today! Proposals will be received through June 1, 2009.</p>
<p><strong>Conference Theme:</strong> weLearn Technology facilitates learning in higher education every day &#8211; every minute. In higher education we are all connected by a common purpose of educating and learning. Students, faculty, staff &#8211; we are all linked through information technology. Through technology weLearn.</p>
<h3>Presentation Tracks</h3>
<ul>
<li><a href="http://www.wvnet.edu/wvconference/proposals/presentation-proposals/track-descriptions/#teaching">Teaching and Learning</a></li>
<li><a href="http://www.wvnet.edu/wvconference/proposals/presentation-proposals/track-descriptions/#sustainable">Technology and Sustainability; Green IT: What does it mean?</a></li>
<li><a href="http://www.wvnet.edu/wvconference/proposals/presentation-proposals/track-descriptions/#emerging">Emerging Technologies</a></li>
<li><a href="http://www.wvnet.edu/wvconference/proposals/presentation-proposals/track-descriptions/#message">Getting the Message Out</a></li>
<li><a href="http://www.wvnet.edu/wvconference/proposals/presentation-proposals/track-descriptions/#legal">Legal and Ethical Issues</a></li>
</ul>
<h3>Poster Sessions</h3>
<p>Last year we received a lot of positive feedback about the poster sessions and would like to encourage you to consider participating with a poster session of your own. This flexible format allows for more direct Q&amp;A and is great for networking.</p>
<h3>Pre- and Post-Conference Workshops</h3>
<p>If you have something you&#8217;d like to share in a more in-depth session, consider holding a pre- or post-conference workshop.</p>
<p>We look forward to hearing from you!</p>
<p>- WVHETC 2009 Conference Committee</p>
<h3>Subscribe to Our Conference Updates</h3>
<p><a href="http://feeds2.feedburner.com/wvhetc"><img class="alignleft size-full wp-image-1027" src="http://blog.oit.wvu.edu/files/2009/04/feed_32.png" alt="WVHETC RSS Feed" width="32" height="32" /></a><br />
<a href="http://www.facebook.com/home.php?ref=logo#/pages/West-Virginia-Higher-Education-Technology-Conference/56980236906"><br />
<img class="size-full wp-image-1026 alignleft" src="http://blog.oit.wvu.edu/files/2009/04/facebook_32.png" alt="Find us on Facebook" width="32" height="32" /></a><br />
<a href="http://twitter.com/wvhetc"><img class="alignleft size-full wp-image-1028" src="http://blog.oit.wvu.edu/files/2009/04/twitter_32.png" alt="Twitter" width="32" height="32" /></a></p>
<p>West Virginia Higher Education Technology Conference<br />
Phone: 304-293-5192<br />
Conference Website: http://wvconference.com</p></blockquote>
<p>We&#8217;ll be there!  Will you?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/04/02/call-for-proposals-2009-wvhetc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pistachio: How to Present While People are Twittering</title>
		<link>http://blog.oit.wvu.edu/2009/02/27/pistachio-how-to-present-while-people-are-twittering/</link>
		<comments>http://blog.oit.wvu.edu/2009/02/27/pistachio-how-to-present-while-people-are-twittering/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 18:05:44 +0000</pubDate>
		<dc:creator>Alisha Myers</dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[highered]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=855</guid>
		<description><![CDATA[Tamar Weinberg from Pistachio Consulting posted this interesting piece about presenting in the age of Twitter.  His advice will help anyone who finds themselves sharing ideas in front of an unattentive audience. You may have thoroughly prepared for the presentation and expected a more engaged audience. You tell yourself that they are obviously more engaged [...]]]></description>
			<content:encoded><![CDATA[<p>Tamar Weinberg from <a href="http://pistachioconsulting.com/twitter-presentations/">Pistachio Consulting</a> posted this interesting piece about presenting in the age of Twitter.  His advice will help anyone who finds themselves sharing ideas in front of an unattentive audience. You may have thoroughly prepared for the presentation and expected a more engaged audience. You tell yourself that they are obviously more engaged with what&#8217;s happening on their laptops. No one is actively whispering nor jotting down notes! However, avoid internalizing this and bitterly concluding that your presentation failed. That is unlikely the case.</p>
<blockquote>
<h2><a title="How to Present While People are Twittering" href="http://pistachioconsulting.com/twitter-presentations/" target="_self">How to Present While People are Twittering</a></h2>
<p>by Tamar Weinberg</p>
<p>February 27, 2009</p>
<p>People used to whisper to each other or pass hand-scribbled notes during presentations. Now these notes are going digital on Twitter or via conference-provided chat rooms.</p>
<p>Up until now, this back-channel has been mainly confined to the Internet industry and technology conferences. However, a survey of leadership conferences from Weber Shandwick shows that there is a significant increase in blogging and <a href="http://www.marketingvox.com/trends-in-leadership-conferences-fewer-keynotes-more-tweeting-043171">twittering at conferences</a>.</p>
<p>So the next time you present at a conference, instead of being confronted by a sea of faces looking at you, you may be phased by a sea of heads looking down at their laptops. The challenge is how to adapt to presenting with the back-channel.</p></blockquote>
<p><a title="How to Present While People are Twittering" href="http://pistachioconsulting.com/twitter-presentations/" target="_self">Read more</a> on how Twitter helps you and your audience during a presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/02/27/pistachio-how-to-present-while-people-are-twittering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WVU.Encrypted Wireless on your iPhone or iPod Touch</title>
		<link>http://blog.oit.wvu.edu/2009/02/18/wvuencrypted-wireless-on-your-iphone-or-ipod-touch/</link>
		<comments>http://blog.oit.wvu.edu/2009/02/18/wvuencrypted-wireless-on-your-iphone-or-ipod-touch/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 18:31:56 +0000</pubDate>
		<dc:creator>Steven Marra</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[WVU wireless]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=726</guid>
		<description><![CDATA[In this post we&#8217;ll cover, step by step, setting up your Apple device to access this convenient, campus-wide wireless network:
WVU.Encrypted is preferred for WVU faculty, staff, and students who use the wireless on a regular basis. The encrypted network eliminates any concerns about wireless eavesdropping. Instructions for setting up a computer to access the Encrypted [...]]]></description>
			<content:encoded><![CDATA[<p>In this post we&#8217;ll cover, step by step, setting up your Apple device to access this convenient, campus-wide wireless network:</p>
<blockquote><p><strong>WVU.Encrypted</strong> is preferred for WVU faculty, staff, and students who use the wireless on a regular basis. The encrypted network eliminates any concerns about wireless eavesdropping. <a href="http://oit.wvu.edu/wireless/wvuencrypted/">Instructions for setting up a computer to access the Encrypted Wireless are here</a>.</p></blockquote>
<p><strong>Checklist:</strong></p>
<p>-A 2nd generation iPhone or iPod Touch, or a 1st generation iPhone or iPod Touch with the latest system update installed (version 2.2).</p>
<p>- You’ll need your Master ID username and password. If you don’t know yours, start here<br />
http://oit.wvu.edu/masterid/</p>
<p>- Make sure your device has an active connection to the internet.</p>
<ol>
<li> Go to <em>Settings<br />
</em><img class="alignnone size-full wp-image-672" src="http://blog.oit.wvu.edu/wp-content/blogs.dir/1/files//2009/01/settings.jpg" alt="settings" width="64" height="84" /></li>
<li>Select <em>Wi-Fi<br />
</em><img class="alignnone size-full wp-image-816" src="http://blog.oit.wvu.edu/files/2009/02/1settings.png" alt="1settings" width="320" height="172" /></li>
<li>Choose <em>Other&#8230;<br />
</em><img class="alignnone size-full wp-image-817" src="http://blog.oit.wvu.edu/files/2009/02/5other1.png" alt="5other1" width="320" height="309" /></li>
<li>The <em>Name</em> of the network is WVU.Encrypted<br />
<img class="alignnone size-full wp-image-818" src="http://blog.oit.wvu.edu/files/2009/02/2wvu_encrypted.png" alt="2wvu_encrypted" width="320" height="244" /></li>
<li><em>Security</em> is WPA2 Enterprise<br />
<img class="alignnone size-full wp-image-819" src="http://blog.oit.wvu.edu/files/2009/02/3wpa2_enterprise.png" alt="3wpa2_enterprise" width="320" height="380" /></li>
<li>Your <em>Username</em> and <em>Password</em> are your Master ID and Master ID Password<img class="alignnone size-full wp-image-820" src="http://blog.oit.wvu.edu/files/2009/02/4username_password.png" alt="4username_password" width="320" height="263" /></li>
<li>After you enter your Username and Password, select <em>Join<br />
</em><img class="alignnone size-full wp-image-822" src="http://blog.oit.wvu.edu/files/2009/02/6join.png" alt="6join" width="80" height="46" /></li>
<li>It may take a moment, but your device should connect to the WVU.Encrypted network *if* it is available in your location<br />
<img class="alignnone size-full wp-image-821" src="http://blog.oit.wvu.edu/files/2009/02/other2.png" alt="other2" width="320" height="307" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/02/18/wvuencrypted-wireless-on-your-iphone-or-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GroupWise email on your iPhone or iPod Touch</title>
		<link>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/</link>
		<comments>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:31:42 +0000</pubDate>
		<dc:creator>Steven Marra</dc:creator>
				<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=669</guid>
		<description><![CDATA[Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!
Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via https://wvugw.wvu.edu
Checklist:
-A 2nd generation iPhone or iPod Touch, or a [...]]]></description>
			<content:encoded><![CDATA[<p>Setting the Mail app on your iPhone or iPod Touch to get GroupWise email is quick and easy!</p>
<p><strong><em>Please note this does not apply to the GroupWise calendar. At this time, the best way to access your GroupWise calendar on your Apple device is through Safari via <a href="https://wvugw.wvu.edu/gw/webacc">https://wvugw.wvu.edu</a></em></strong></p>
<p>Checklist:</p>
<p>-A 2nd generation iPhone or iPod Touch, or a 1st generation iPhone or iPod Touch with the latest system update installed (version 2.2).</p>
<p>- You&#8217;ll need your username and password for the GroupWise email you want to access.</p>
<p>- You&#8217;ll need your Central ID username and password, too. If you don&#8217;t know yours, start here <a href="http://centralid.wvu.edu">http://centralid.wvu.edu</a></p>
<p>- Make sure your device has an active connection to the internet.</p>
<ol>
<li>Find and open <em>Settings<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/settings.jpg"><img class="alignnone size-medium wp-image-672" src="http://blog.oit.wvu.edu/files/2009/01/settings.jpg" alt="" width="64" height="84" /><br />
</a></li>
<li>Select <em>Mail, Contacts, Calendars<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg"><img class="alignnone size-medium wp-image-673" src="http://blog.oit.wvu.edu/files/2009/01/mailcontacts.jpg" alt="" width="300" height="42" /></a></li>
<li>Select <em>Add Account&#8230;<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/account1.jpg"><img class="alignnone size-medium wp-image-681" src="http://blog.oit.wvu.edu/files/2009/01/account1.jpg" alt="" width="300" height="179" /></a></li>
<li>Choose <em>Other<br />
</em><a href="http://blog.oit.wvu.edu/files/2009/01/other.jpg"><img class="alignnone size-medium wp-image-675" src="http://blog.oit.wvu.edu/files/2009/01/other.jpg" alt="" width="300" height="60" /></a></li>
<li>Enter your account information:<br />
<a href="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg"><img class="alignnone size-medium wp-image-686" src="http://blog.oit.wvu.edu/files/2009/01/newaccount1.jpg" alt="" width="300" height="227" /></a></p>
<ul>
<li><em>Name</em> = GroupWise</li>
<li><em>Address</em> is your GroupWise email address.</li>
<li><em>Password</em> is the password you use to access your GroupWise email.</li>
<li><em>Description</em> should fill in automagically.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
<li>Under <em>Incoming Mail Server</em>, enter the <em>Host Name</em> <strong>gwpop.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg"><img class="alignnone size-medium wp-image-680" src="http://blog.oit.wvu.edu/files/2009/01/accountinfo1.jpg" alt="" width="300" height="135" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/accountinfo.jpg"></a></p>
<ul>
<li><em>User Name</em> is the name you use to log in to your GroupWise email.</li>
<li><em>Password</em> can be left alone. It carries over from earlier.</li>
</ul>
</li>
<li>Under <em>Outgoing Mail Server</em>, enter the <em>Host Name</em> <strong>exsmtp.systems.wvu.edu<br />
</strong><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg"><img class="alignnone size-medium wp-image-682" src="http://blog.oit.wvu.edu/files/2009/01/outgoing2.jpg" alt="" width="300" height="161" /></a><a href="http://blog.oit.wvu.edu/files/2009/01/outgoing.jpg"></a></p>
<ul>
<li><em>User Name</em> is your Central ID.</li>
<li><em>Password</em> is your Central ID password.</li>
<li>Tap <em>Save</em> to continue.</li>
</ul>
</li>
</ol>
<p>Now your device will attempt to log in and retrieve your email. Chances are, it will ask you to accept a security certificate. If it does, please do! Or, if it fails to access your account the 1st time, follow the prompts to try again.</p>
<p>Sometimes it takes a minute or two for everything to sync. Be patient =)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2009/01/22/groupwise-email-on-your-iphone-or-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Reflecting on the HighEdWeb 2008 Conference</title>
		<link>http://blog.oit.wvu.edu/2008/10/16/reflecting-on-the-highedweb-2008-conference/</link>
		<comments>http://blog.oit.wvu.edu/2008/10/16/reflecting-on-the-highedweb-2008-conference/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 21:05:03 +0000</pubDate>
		<dc:creator>Alisha Myers</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[conference]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=276</guid>
		<description><![CDATA[I recently attended the HighEdWeb 2008 Conference in Springfield, MO. All of the presentations and both workshops I attended were excellent. The presenters gave many good tips and tools to use. The following are my short summaries on some presentations:
Creating a College Web Style Guide: Principles, Processes, and Prototypes
Jesse Racine, Web Designer and Developer for [...]]]></description>
			<content:encoded><![CDATA[<p>I recently attended the HighEdWeb 2008 Conference in Springfield, MO. All of the presentations and both workshops I attended were excellent. The presenters gave many good tips and tools to use. The following are my short summaries on some presentations:</p>
<p><em>Creating a College Web Style Guide: Principles, Processes, and Prototypes</em><br />
Jesse Racine, Web Designer and Developer for <a title="McHenry County College" href="http://www.mchenry.edu/" target="_blank">McHenry County College</a>, entertainingly presented the importance of keeping things uniformed for your site. He explained the importance of creating a web style guide is to &#8220;improve quality of communications by being consistent.&#8221; Navigation will be more predictable this way making the site user-friendly. He also explained that having this guide will also save one their time and money.</p>
<p><em>Colors on the Web: Few Things, Great Results</em><br />
Martha Carrer Cruz Gabriel presented on the fascinating subject of color. I am interested in this subject because of my interest and background in painting. She explained the importance of color and how we physically and psychologically react. Martha is the Director of Technology at New Media Developers, Ltd. She is also a professor of digital design and games design courses at <a title="Universidade Anhembi Morumbi" href="http://portal.anhembi.br/" target="_blank">Brazil&#8217;s Universidade Anhembi Morumbi</a>. Martha explained that people will notice the interface first and that the color shapes the page&#8217;s meaning. So, color is something you feel when looking at many different mediums. So, think about those who will be utilizing the website. What is the best combination of colors for expressing this message?</p>
<p><em>New Initiatives in Web Standards Education</em><br />
Chris Mills, Developer Relations Manager for <a title="Opera Software " href="http://www.opera.com/company/" target="_blank">Opera Software ASA</a>, talked about the issue of websites and absence of web standards. He bluntly explained that the lack of education and lack of interest contributes to this issue. He is determined that the easiest clients to work with are web developers who are concerned.</p>
<p>It is interesting how he handles this difficult arena. Again, he stated the importance of education and training material. The group delivers an up-to-date free course on web standards. This free course can be found at <a title="Opera Web Standards Curriculum" href="http://www.opera.com/wsc/" target="_blank">http://www.opera.com/wsc</a> which I have previously visited. So, his plans are giving web standards more credibility and providing certification for those who complete the course.</p>
<p><em>Internet Evolution Through the Eyes of a Deaf User and Web Professional</em><br />
Svetlana Kouznetsova, Web Designer and Developer for <a title="Lehman College" href="http://www.lehman.edu/lehman/" target="_blank">Lehman College</a>, began her presentation announcing the high 97 percent of inaccessible websites. She described a different perspective on the frustration of inaccessibility. She explained how similar having a disability is to handling a stroller in public, like at an airport. One may feel frustrated when he or she is unable to understand the dialogue of a foreign film or you may even be frustrated because of your outdated technology that you are stuck using. To have an accessible website, one can maintain clean codes and follow accessibility guidelines while having a creative design. Many people believe their site will be plain and unattractive which is not true. The presenter showed a video without the sound and captions. As you can imagine, it was impossible to grasp what was happening. I can relate to this because it is impossible for me to watch a foreign film or even a Shakespeare film without the captions. She explains that it is important to include captions with videos as well as include the transcripts for podcasts.</p>
<p><em>Accessible Video Interface</em><br />
Many universities are now presenting videos on their websites. It is important that these videos include captions and are manageable. <a title="Gabriel McGovern" href="http://www.gabrielmcgovern.com/" target="_blank">Gabriel McGovern</a>, Web Designer for <a title="Portland Community College" href="http://www.pcc.edu/" target="_blank">Portland Community College</a>, explained that one is able to create high quality Flash videos that have a consistent design and is easy to update. By building the right interface, you are able to make changes that will automatically update all of your videos.</p>
<p>He talked about creating the captions using a free application called <a title="Media Access Generator" href="http://ncam.wgbh.org/webaccess/magpie/" target="_blank">Media Access Generator</a> (provided by the National Center for Accessible Media). In addition, the creator will need to time the captions along with the video. You are able to determine what is important for buttons (mute, forward, pause, captions, etc.) and customize the buttons in Flash. You are also able to create a transcript page for accessibility so all you see is text. Another feature that allows accessibility is the xml file (smil.xml) which determines what size video to load for an individual machine. The video can be for download or streaming.</p>
<p>What conferences have you recently attended?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/10/16/reflecting-on-the-highedweb-2008-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How WordPress Changed My Life [2008 WVHETC Presentation]</title>
		<link>http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/</link>
		<comments>http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 19:14:55 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[2008 WVHETC]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[higher education]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=205</guid>
		<description><![CDATA[Last week I presented at the WV Higher Education Technology Conference.  I thought that I&#8217;d go ahead and post my presentation here for those of you who didn&#8217;t get to attend.  If anyone else at WVU presented and would like to post their presentations here, just let me know.  I&#8217;ll be happy to post other [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I presented at the WV Higher Education Technology Conference.  I thought that I&#8217;d go ahead and post my presentation here for those of you who didn&#8217;t get to attend.  If anyone else at WVU presented and would like to post their presentations here, just let me know.  I&#8217;ll be happy to post other presentations here as well.</p>
<blockquote>
<h3>How WordPress Changed My Life</h3>
<p><em>Presentation by Sarah R. Barnes at the 2008 West Virginia Higher Education Technology Conference</em></p>
<p>My name is Sarah Barnes and I work for the WVU Office of Information Technology. Today I am going to talk about WordPress and how it changed my life.</p>
<p>Now this may seem like a rather melodramatic title, but when I was thinking about how I wanted to present on WordPress I started to examine why exactly it is that I have grown so fond of it.<br />
To explain that, I need to put it in perspective.</p>
<p>I got into web design in 1996. I am primarily self-taught and my interest in web development has generally been on the design and usability of websites.  Before I got to know WordPress, my work had been primarily rooted in static html, usually using includes.</p>
<p>About a year and a half ago, I completed a major redesign of the <a href="http://oit.wvu.edu">Office of Information Technology</a> website.  Since the site is still mostly static html with php includes right now, I was running into a problem with maintaining the <a href="http://oit.wvu.edu/news">news portion</a> of our site. I was creating new static files for each new news story and saving it in a specific place, uploading it, adding it manually to an XML file (for our RSS feed) to make sure it appeared on the main page. Additionally, if I was not available, my supervisor could not add content.  Also – if both of us were out, no one could post a new story to the main page. Long story short, we had to find a way that we could</p>
<ol>
<li>Update the main news stories easily,</li>
<li>When we were off-campus if necessary,</li>
<li>Would produce an RSS feed that could be pushed to subscribers and syndicated on our website wherever needed.</li>
</ol>
<p>I’d known for awhile we needed something database-driven. Unfortunately, I didn’t know anything about creating databases. I’d always relied on “the server guy” to handle that.</p>
<p><strong>Enter WordPress.  What exactly is it? </strong></p>
<p><a href="http://wordpress.org">WordPress</a> was originally designed as a blogging tool competing with other blogging tools like <a href="http://blogger.com">Blogger</a>, <a href="http://moveabletype.com">Moveable Type</a>, <a href="http://textpattern.com">TextPattern</a>, and others. It was created in 2003 and it is currently the largest self-hosted blogging tool in the world.</p>
<p>Though one of my colleagues at OIT (Justin) had mentioned WordPress to me before, I didn&#8217;t fully explore the option until after attending a presentation about setting up WordPress. The presenter demonstrated how easy it was to set up and use and integrated it into her website.  She even used a press release section of her website as an example.</p>
<p>So initially I asked Justin for help setting up WordPress so I could try it out to serve up press releases.  After I got in and saw what the fuss was about it was really eye opening. I was able, in a matter of a few hours, modify a WordPress theme to look exactly like the OIT website and incorporate it into our existing site structure.</p>
<h3><strong>Not Just a Blogging Tool</strong></h3>
<p>I realized that this application was extremely versatile and could easily be modified to be used on a variety of websites – not just as a blog tool or a news engine. It could also be used as a content management system.  Soon after that I dove in and tried installing it on my own on my own personal hosting account. I realized I&#8217;d been wasting a lot of time by assuming that I couldn&#8217;t set up database driven sites on my own.  As it turns out, given the proper tools, it&#8217;s pretty durn easy to set it up yourself.  So, this really was a liberating step for me.  I began to see a greater potential for using this platform than just to run press releases or a blog and began to use it to develop other sites.</p>
<p>Its modular nature makes it amenable to different types of websites.  As it turns out, it is an excellent content management system for community organizations, classes, collaboration tools, project updates, diaries, photo galleries, discussion, even ecommerce.</p>

<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/wvu-office-of-information-technology_1222111582750/' title='OIT'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/wvu-office-of-information-technology_1222111582750-150x150.png" class="attachment-thumbnail" alt="WVU OIT Website" title="OIT" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-wvu-office-of-information-technology_1223565826227/' title='OIT News and Announcements'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-wvu-office-of-information-technology_1223565826227-150x150.png" class="attachment-thumbnail" alt="OIT News &amp; Announcements" title="OIT News and Announcements" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-dashboard-e28094-wordpress_1223567078884/' title='Dashboard'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-dashboard-e28094-wordpress_1223567078884-150x150.png" class="attachment-thumbnail" alt="Dashboard (OIT News &amp; Announcements)" title="Dashboard" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-create-new-post-e28094-wordpress_1223567098652/' title='Create Posts'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-create-new-post-e28094-wordpress_1223567098652-150x150.png" class="attachment-thumbnail" alt="Write New Post (OIT News &amp; Announcements)" title="Create Posts" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-posts-e28094-wordpress_1223567119167/' title='Manage Posts'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-posts-e28094-wordpress_1223567119167-150x150.png" class="attachment-thumbnail" alt="Manage Posts (OIT News &amp; Announcements)" title="Manage Posts" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-edit-themes-e28094-wordpress_1223567144055/' title='Edit Themes'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-edit-themes-e28094-wordpress_1223567144055-150x150.png" class="attachment-thumbnail" alt="Edit Themes (OIT News &amp; Announcements)" title="Edit Themes" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-general-settings-e28094-wordpress_1223567158359/' title='General Settings'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-general-settings-e28094-wordpress_1223567158359-150x150.png" class="attachment-thumbnail" alt="General Settings (OIT News &amp; Announcements)" title="General Settings" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/oit-news-and-announcements-e280ba-manage-plugins-e28094-wordpress_1223567207429/' title='WP Plugin Manager (OIT News &amp; Announcements)'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/oit-news-and-announcements-e280ba-manage-plugins-e28094-wordpress_1223567207429-150x150.png" class="attachment-thumbnail" alt="Plugin Manager (OIT News &amp; Announcements)" title="WP Plugin Manager (OIT News &amp; Announcements)" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/the-reenactor-post-a-blog-about-reenacting_1223566624917/' title='The Reenactor Post'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/the-reenactor-post-a-blog-about-reenacting_1223566624917-150x150.png" class="attachment-thumbnail" alt="The Reenactor Post (My dad&#039;s blog)" title="The Reenactor Post" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/arthurdale-wv-c2bb-eleanore28099s-little-village_1222111712409/' title='arthurdale.org'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/arthurdale-wv-c2bb-eleanore28099s-little-village_1222111712409-150x150.png" class="attachment-thumbnail" alt="Arthurdale Heritage, Inc. uses WordPress as a CMS" title="arthurdale.org" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/arts-council-of-preston-county_1223567042686/' title='arts-council-of-preston-county_1223567042686'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/arts-council-of-preston-county_1223567042686-150x150.png" class="attachment-thumbnail" alt="Arts Council of Preston County uses WordPress as a CMS" title="arts-council-of-preston-county_1223567042686" /></a>
<a href='http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/things-gone-by-c2bb-blog-archive-c2bb-victorian-18kt-rose-gold-snake-ring-59500_1223577973924/' title='ThingsGoneBy.com will soon use WordPress for eCommerce'><img width="150" height="150" src="http://blog.oit.wvu.edu/files/2008/10/things-gone-by-c2bb-blog-archive-c2bb-victorian-18kt-rose-gold-snake-ring-59500_1223577973924-150x150.png" class="attachment-thumbnail" alt="ThingsGoneBy.com will soon use WordPress for eCommerce" title="ThingsGoneBy.com will soon use WordPress for eCommerce" /></a>

<h3></h3>
<h3>System requirements and installation (the famous 5 minute install)</h3>
<p>Installing WordPress is incredibly easy. WordPress needs 2 things: php and a database like SQL or MySQL.</p>
<p>At first I was incredibly daunted by the prospect of setting up my own database. I’d heard of a great tool called phpMyAdmin which is a kind of graphical interface for setting up databases on servers that use php and SQL/MySQL. I hadn’t actually used it before, but I gave it a try and suddenly I was free.</p>
<p>Once the database is set up all you need to do with Wordpress is edit 1 file. A single file – wp-config.php.</p>
<p>Even then all you need to do with this file is edit the database name, username, password, and location.</p>
<p>Once you upload that and point your browser to the website, it’ll take you through a couple of screens and have you set up the admin account.</p>
<p>After that you are done. It is ridiculously simple.</p>
<h3>How does WordPress Work?</h3>
<p>Using WordPress is also very easy. Let me put it this way. My dad had no concept of what a blog really was or did 2 months ago. Now he has a blog and is managing the content himself (for the most part) posting articles, links, videos, and photos. I occasionally have to explain a thing or two to him about how it works or what he can do with it, but overall I have spent exactly maybe 2-3 hours TOTAL on telling him how to use it.</p>
<p>I would venture to say that adding content to WordPress is as easy as sending an email.<br />
There are several different roles in WordPress: Admin, Editor, Author and Contributor. Admin, has the highest level privileges and can do anything. Editors can’t change settings, but they can manage all posts and pages. Authors can only publish posts. Contributors are only able to send content for review.</p>
<p>Content is divided into Posts and Pages. Pages are not a part of the blog timeline and not added to the RSS feed generated by WordPress. Pages are best for content that is more static. Posts are the way the bulk of your content is generated in Wordpress. Posts are in a timeline and update the RSS feed.</p>
<p><strong>Write</strong> &#8211; To create a new Post or Page click the Write tab or select either the Write a New Post or Write a New Page buttons on the main WordPress “Dashboard.” You can also add new Links under the Write tab.</p>
<p><strong>Manage</strong> lets you go back and edit pages, posts, links, categories, tags, your media library, import or export data, etc.</p>
<p><strong>Design</strong> controls which theme you use. Themes are displays based on any that you have uploaded to the themes folder. Select a new theme by clicking on one and applying it. The Widgets link controls your sidebars. This is optional, but it is an easy way to mange certain aspects of WordPress. You can have multiple sidebars.</p>
<p><strong>Comments</strong> lets you manage comments made on your Wordpress site.</p>
<h3>Administrator Tabs</h3>
<p>Administrative management does require you know a little bit more than your average bear, but in comparison to other Content Management Systems it is very user-friendly and uncomplicated.</p>
<p><strong>Users</strong> lets you manage all the users of your blog. You can dictate who is an admin, editor, author, contributor or simply a subscriber. You can also change passwords here if you want.<br />
Plugins controls what plugins are active on your website. To add new plugins upload to wp-content&gt;plugins. Then go to Plugins and activate any you want to use.</p>
<p><strong>Settings</strong> controls the back end. Turn comments on or off, set Permalinks, edit settings for writing and reading posts, etc. Also options for specific plugins are usually under this tab.<br />
<strong></strong></p>
<p><strong>Themes</strong> are uploaded to wp-content&gt; themes and activated under the Design tab.</p>
<h3>Updating/Upgrading</h3>
<p>Right now upgrading WordPress has to be done manually or by installing a plugin called WordPress Automatic Plugin. In WordPress 2.7 (coming out in November) this feature will be added by default.</p>
<p>Updating plugins is also important to keep on top of, and can (as of WP 2.5) be updated easily through the WP interface.</p>
<h3>Designing for WordPress (Themes)</h3>
<p>Now. After you install WordPress you will want to customize the look and feel of the site. WordPress uses “themes” to customize a basic set of code. The implementation of themes in WordPress is what, in my opinion, makes it stand out from other content management systems. Each theme is self-contained within the wp-content folder. This folder is the only one that stores custom information for your WordPress install. You can modify other parts of Wordpress, but by setting it up this way, they’ve made it so it is unlikely that the average user will ever want or have to.</p>
<p>WordPress is a php application, but it is extremely modular. The application is broken down into several core files which can be modified in limitless ways.</p>
<p>The best way to jump into WordPress, however, is to download a theme and modify it. I feel this is the best way to learn how it works. Once you do this a ew times, you see how different themes are constructed and start to get a better understanding of what is possible. I generally look for a theme that has the overall layout I’m looking for and go from there. However, if you want, you can start your own theme from scratch. A good place to start is with a blank theme (download “Starkers”) and build your own look and feel.</p>
<p>One thing I really like about WordPress is the Theme Editor. You can edit the theme in real time on the website if you want. This is a lot less time consuming that upload it each time you make a change. OTOH, it does require a level of comfort with straight code with no syntax highlighting.</p>
<h3>Plugins</h3>
<p>Another aspect of WordPress that makes it very attractive and flexible is the plethora of plugins available to extend its capabilities.  Plugins that do everything from improving the backend administrative features to making your WordPress site a full-blown shopping cart.<br />
[In-depth discussion probably not an option due to time constraints.]</p>
<h3>&#8230;more?</h3>
<p>So you may be asking yourself, WordPress sounds great, but can it really manage a large site? What about multiple blogs? Do you have to install it multiple times?</p>
<p>Well, there is another WordPress for those of us who want to run multiple instances of Wordpress and have centralized control over all of them called Wordpress Multiuser or <a href="http://mu.wordpress.org/">WordPress Mu</a>.</p>
<p>WordPress Mu is a single installation that lets you manage multiple “blogs.” Wordpress.com and Edublogs use it to manage the millions of hosted blogs. This summer we launched a blog for OIT using WPMU (blog.oit.wvu.edu). I can control the available themes and plugins from a central location.  The biggest drawback to WPMU, in my opinion is the lack of a web-based theme editor.</p>
<p>WPMU in iself is a presentation, so I&#8217;l go ahead and end here.  I really appreciate your time.  Thank you.</p>
<p>Questions?</p></blockquote>
<p>Please keep in mind that this was only a 30 minute presentation, so I didn&#8217;t really have a lot of time to cover everything in WordPress.</p>
<p>Is anyone else out there using WordPress?  How are you using it?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/10/09/how-wordpress-changed-my-life-2008-wvhetc-presentation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Staying &#8220;In the know&#8221; with RSS</title>
		<link>http://blog.oit.wvu.edu/2008/09/16/staying-in-the-know-with-rss/</link>
		<comments>http://blog.oit.wvu.edu/2008/09/16/staying-in-the-know-with-rss/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 16:27:46 +0000</pubDate>
		<dc:creator>Sarah Barnes</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[google reader]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://blog.oit.wvu.edu/?p=108</guid>
		<description><![CDATA[This may seem to be old news to some people, but it occurred to me that some of you out there may not really be utilizing one of the most efficient trends in information acquisition since the advent of email &#8211; RSS.
If you are one of those folks, you may be asking &#8211; &#8220;Well, what [...]]]></description>
			<content:encoded><![CDATA[<p>This may seem to be old news to some people, but it occurred to me that some of you out there may not really be utilizing one of the most efficient trends in information acquisition since the advent of email &#8211; RSS.</p>
<p>If you are one of those folks, you may be asking &#8211; <strong><em>&#8220;Well, what is RSS anyway and why do I care?&#8221;</em></strong></p>
<div id="attachment_112" class="wp-caption alignleft" style="width: 38px"><a href="http://blog.oit.wvu.edu/files/2008/09/feed-icon-28x28.png"><img class="size-full wp-image-112" src="http://blog.oit.wvu.edu/files/2008/09/feed-icon-28x28.png" alt="This is the universal RSS symbol." width="28" height="28" /></a><p class="wp-caption-text">Universal RSS symbol</p></div>
<p><a href="http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html">RSS</a> stands for <a href="http://www.webreference.com/authoring/languages/xml/rss/intro/">Really Simple Syndication</a> or <a href="http://www.whatisrss.com/">Rich Site Summary</a>.  Many websites produce RSS feeds &#8211; basically a simple file (<a href="http://www.xml.com/pub/a/2002/12/18/dive-into-xml.html">XML</a>) of the website&#8217;s content that is pushed out (or &#8220;fed&#8221; if you will) to the rest of the Internet.  This file can be subscribed to by an RSS reader or syndicated on another website.</p>
<p>The beauty of RSS is that you get notified as soon as something is posted.</p>
<div id="attachment_113" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.oit.wvu.edu/files/2008/09/google-reader-screenshot-feeds.png"><img class="size-medium wp-image-113" src="http://blog.oit.wvu.edu/files/2008/09/google-reader-screenshot-feeds-300x197.png" alt="Google Reader" width="300" height="197" /></a><p class="wp-caption-text">Google Reader</p></div>
<p>Checking in is no more difficult than visiting a central location on the web, such as <a href="http://www.google.com/reader">Google Reader</a>, <a href="http://www.google.com/ig">iGoogle</a>, <a href="http://my.yahoo.com/">myYahoo</a> (to name but a few), or an application like <a href="http://www.feedreader.com/">FeedReader</a> or <a href="http://www.newsgator.com/">NewsGator</a>. Keep in mind there are hundreds of different places and tools to set up your virtual news desk, just find one that works best for you.</p>
<div id="attachment_114" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.oit.wvu.edu/files/2008/09/fr1.png"><img class="size-medium wp-image-114" src="http://blog.oit.wvu.edu/files/2008/09/fr1-300x241.png" alt="FeedReader" width="300" height="241" /></a><p class="wp-caption-text">FeedReader</p></div>
<p>Subscribing to feeds also greatly reduces the amount of time spent loading new windows or surfing, refreshing, etc. I&#8217;ve been very happy to discover new sites and sources of information that I might not have otherwise known about simply by subscribing to content this way.  Blogs (like this one) will often point me to a new source of information and I&#8217;ll add it to my reader.  Since I use Google Reader, I also see recommendations for feeds that I might be interested in on the landing page.</p>
<p>To subscribe to a website&#8217;s feed, look for the <a href="http://www.feedicons.com/">RSS symbol</a> or a link to RSS.  Your browser will ask you how you want to subscribe.  Choose the option that works best for you.</p>
<p>On the flipside getting your news from RSS feeds can be a bit overwhleming.  Due to the shear volume of information you now have access to, you have to be selective about what you spend your time reading this way.  Right now I use both iGoogle and Google Reader.  Why both? They both have different strengths and I find that using them both lets me monitor different sites in different ways.</p>
<p>iGoogle lets me add feeds, but displays up to 9 headlines and summaries at a time.  I can have different tabs (created by me) for different types of feeds.  I use this for monitoring headlines and current events.  Google Reader, on the other hand, adds all of the new stories to a feed and I use this to monitor blogs of more specialized information that I am probably going to want to read.</p>
<p>I&#8217;ll post again with more tips on using RSS and Google Reader.  In the meantime, feel free to post any questions or comments about using RSS.</p>
<p><strong>Need more information?</strong> Try this great little video from <a href="http://www.commoncraft.com/rss_plain_english">Common Craft called &#8220;RSS in Plain English</a>.&#8221;</p>
<p>Here are some other handy resources for learning more about RSS:</p>
<ul>
<li><a href="http://www.webreference.com/authoring/languages/xml/rss/intro/">Introduction to RSS</a></li>
<li><a href="http://en.wikipedia.org/wiki/RSS_(file_format)">Wikipedia: RSS</a></li>
<li><a href="http://cyber.law.harvard.edu/rss/rss.html">RSS 2.0 at Harvard Law</a></li>
<li><a href="http://www.mnot.net/rss/tutorial/">RSS Tutorial for Content Publishers and Webmasters</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.oit.wvu.edu/2008/09/16/staying-in-the-know-with-rss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
