<?xml version="1.0"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel><title>[ISyE Support Center] Recently Updated Articles</title><link>http://www.isye.gatech.edu/kb/rss/kb/recent_changes</link><description></description><item><title>Password Protecting an Area of your Web Site</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
How can I password protect an area of my website?&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
&lt;h2&gt;Create an .htaccess File &lt;/h2&gt;&#xD;
&lt;p&gt;An &lt;strong&gt;.htaccess&lt;/strong&gt; file must be created in the directory that the user wants&#xD;
  to secure. (Multiple directories can have &lt;strong&gt;.htaccess&lt;/strong&gt; files, but there&#xD;
can only be one &lt;strong&gt;.htaccess&lt;/strong&gt; file per directory.)&lt;/p&gt;&#xD;
&lt;p class="note"&gt;&lt;strong&gt;Important:&lt;/strong&gt;Access restriction applies to a certain directory, not a&#xD;
  certain file or HTML document. Documents that are to be restricted should be&#xD;
  put in directories separate from those you want unrestricted.&lt;/p&gt;&#xD;
&lt;p&gt;While in the directory you want to secure, create/edit a file called &lt;strong&gt;.htaccess&lt;/strong&gt; using&#xD;
your favorite text editor.&lt;/p&gt;&#xD;
&lt;blockquote&gt;&#xD;
  &lt;code&gt;&#xD;
  AuthUserFile /www/users/andyh/private/.htpasswd (path to .htpasswd&#xD;
      file) &lt;br&gt;&#xD;
    AuthGroupFile /dev/null (path to .htgroup&#xD;
      file)&lt;br&gt;&#xD;
    AuthName "Secure Area" (title for dialog box) &lt;br&gt;&#xD;
    AuthType Basic &lt;br&gt;&#xD;
  require valid-user&lt;br&gt;&#xD;
  &lt;/code&gt;&#xD;
&lt;/blockquote&gt;&#xD;
(&lt;a href="#access"&gt;Access alternatives&lt;/a&gt;)&#xD;
&lt;h2&gt;Create an encrypted password &lt;/h2&gt;&#xD;
&lt;p&gt;The &lt;strong&gt;.htpasswd&lt;/strong&gt; file should contain a list of usernames and passwords.&#xD;
  The format of the password file is straightforward, one line per user, with&#xD;
  the line containing the user name, followed by a colon, followed by the user's&#xD;
password encrypted with the standard Unix password encryption.&lt;/p&gt;&#xD;
&lt;p&gt;In other words, an &lt;i&gt;.htpasswd&lt;/i&gt; can look like this:&lt;/p&gt;&#xD;
&lt;blockquote&gt;&#xD;
  &lt;p&gt;&lt;code&gt;testuser1:jKXVnZH6eXR7&lt;br&gt;&#xD;
  testuser2:taeWr6tbTZKO6&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/blockquote&gt;&#xD;
&lt;p&gt;with one line for each user.&lt;/p&gt;&#xD;
&lt;p&gt;To generate an encrypted password, visit &lt;a href="https://www.isye.gatech.edu/intranet/modules/encrypt/"&gt;https://www.isye.gatech.edu/intranet/modules/encrypt/&lt;/a&gt;&lt;br&gt;&#xD;
  - Type in a username and password to use. &lt;br&gt;&#xD;
  - Copy the DES encrypted password into your .htpasswd file &lt;br&gt;&#xD;
  - For additional users, use the form again and add a line for that user to&#xD;
  the .htpasswd file. &lt;br&gt;&#xD;
&lt;/p&gt;&#xD;
&lt;h2&gt;Check File Permissions  &lt;/h2&gt;&#xD;
&lt;p&gt;Make sure both the .htpasswd and .htaccess files are readable by the web&#xD;
  server (chmod og+r .htaccess .htpasswd)&lt;/p&gt;&#xD;
&lt;h2&gt;Additional Sources of Information &lt;/h2&gt;&#xD;
&lt;ul&gt;&#xD;
  &lt;li&gt;Apache HTTP documentation (&lt;a href="http://httpd.apache.org/docs/howto/auth.html"&gt;http://httpd.apache.org/docs/howto/auth.html&lt;/a&gt;)&lt;/li&gt;&#xD;
  &lt;li&gt;ApacheWeek article (&lt;a href="http://www.apacheweek.com/features/userauth"&gt;http://www.apacheweek.com/features/userauth&lt;/a&gt;) &lt;/li&gt;&#xD;
  &lt;li&gt;Zend article (&lt;a href="http://www.zend.com/zend/trick/tricks-august-2001.php"&gt;http://www.zend.com/zend/trick/tricks-august-2001.php&lt;/a&gt;) &lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;h3&gt;&lt;a name="access"&gt;&lt;/a&gt;The "Limit" Statement&lt;/h3&gt;&#xD;
&lt;!--#include virtual="/cts/body.html" --&gt;&#xD;
&lt;p&gt;The set of instructions that are placed between the &lt;i&gt;&lt;limit get&gt;&lt;/i&gt; and &lt;i&gt;&lt;/Limit&gt;&lt;/i&gt; statements&#xD;
  determine how the directory can be accessed.&lt;/p&gt;&#xD;
&lt;p&gt;Here are some example situations that require different sets of instructions:&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
  &lt;li&gt;&#xD;
    &lt;p&gt;Allow access to a &lt;strong&gt;single user: &lt;/strong&gt;&lt;code&gt;require user [username]&lt;/code&gt; where username&#xD;
      is an entry in the &lt;strong&gt;.htpasswd&lt;/strong&gt; file.&#xD;
&#xD;
  &lt;li&gt;Allow access to a &lt;strong&gt;group of people&lt;/strong&gt;: &lt;code&gt;require&#xD;
      group [groupname]&lt;/code&gt; where groupname is the name of a group in the &lt;strong&gt;.htgroup&lt;/strong&gt; file.&#xD;
      &lt;p&gt;&lt;/p&gt;&#xD;
  &lt;li&gt;&lt;strong&gt;A&lt;/strong&gt;&lt;strong&gt;llow&lt;/strong&gt; access to any user inside a &lt;strong&gt;certain&#xD;
        domain&lt;/strong&gt;: &#xD;
        &lt;blockquote&gt;&lt;code&gt;order deny,allow&lt;br&gt;&#xD;
      deny from all&lt;br&gt;&#xD;
      allow from [domain name] &lt;/code&gt;&lt;/blockquote&gt;&#xD;
    where domain name is the name of the domain to allow&#xD;
    access to (e.g. isye.gatech.edu)&#xD;
    &lt;p&gt;&lt;/p&gt;&#xD;
  &lt;li&gt;&lt;strong&gt;D&lt;/strong&gt;&lt;strong&gt;eny&lt;/strong&gt; access to any user inside a &lt;strong&gt;certain&#xD;
      domain: &lt;/strong&gt;&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;blockquote&gt;&#xD;
  &lt;blockquote&gt;&#xD;
    &lt;p&gt;&lt;code&gt;order allow,deny&lt;br&gt;&#xD;
        allow from all&lt;br&gt;&#xD;
        deny from [domain name]&lt;/code&gt;&lt;/p&gt;&#xD;
  &lt;/blockquote&gt;&#xD;
  &lt;p&gt;where domain name is the intended&#xD;
          domain name to deny access to. &lt;/p&gt;&#xD;
&lt;/blockquote&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/52</link><pubDate>Thu, 19 Jan 2012 20:50:34 GMT</pubDate><guid isPermaLink="false">74b279eae2bb94ffdf955ad661395ec2</guid></item><item><title>Text Editors</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I edit text files on a UNIX machine?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h3&gt;pico&lt;/h3&gt;
&lt;p&gt;Pico is a simple, display-oriented text editor based on the Pine message system
  composer. As with Pine, commands are displayed at the bottom of the screen,
  and context-sensitive help is provided. As characters are typed they are immediately
  inserted into the text.&lt;/p&gt;
&lt;h3&gt;vi&lt;/h3&gt;
&lt;p&gt;vi (pronounced v-i, as two separate letters) is a display-oriented text editor
  based on an underlying line editor ex. For first time or casual Unix users,
  vi is not recommended to use. It is very powerful for search/replace type functions,
  and is recommend for advanced Unix users. &lt;/p&gt;&lt;p&gt;The ISyE version is actually vim, and can be configured with a .vimrc file in your home directory.&lt;/p&gt;
&lt;h3&gt;emacs&lt;/h3&gt;
&lt;p&gt;emacs is another text editor for advanced Unix users. There is also a GUI version, called xemacs.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/7</link><pubDate>Tue, 25 Oct 2011 21:03:34 GMT</pubDate><guid isPermaLink="false">d5c42dd7afc13686f051cb0323c84f26</guid></item><item><title>Outlook 2010 Setup Instruction for the New IMAP Accounts</title><description>&lt;h2&gt;Problem: &lt;/h2&gt;
&lt;p&gt;How do I set up my new IMAP email account on a new or existing installation of Outlook 2010?
&lt;/p&gt;
&lt;h2&gt;Solution: &lt;/h2&gt;
&lt;ol&gt;
&lt;LI&gt; In Outlook 2010, click the File tab and click the Account Settings button.&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/1.png" alt="" /&gt;
&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; It will display the Account Settings window with Email tab open.  &lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/2.png" alt="" /&gt;&lt;br clear="all"&gt;&lt;br clear="all"&gt;

&lt;LI&gt; Click New option to open the Add New Account Windows.  Select  Manually configure server settings or additional server types. Then click Next button.&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/3.png" alt="" /&gt;&lt;br clear="all"&gt;&lt;br clear="all"&gt;

&lt;LI&gt; Select Internet E-mail, then click Next .
&lt;ul&gt;
&lt;li&gt; Enter your full name as "Your Name". 
&lt;li&gt; Enter your Email Address (such as "allen.belletti@isye.gatech.edu".)
&lt;li&gt; Select IMAP as Account Type 
&lt;li&gt; Set the Incoming mail server (IMAP) to "imap.isye.gatech.edu".
&lt;li&gt; Set the Outgoing mail server (SMTP) to "mail.isye.gatech.edu"
&lt;li&gt; Enter your ISyE account name for the User Name (for example, "allen".)
&lt;li&gt; Enter your ISyE account password.
&lt;li&gt; It is recommended that you uncheck "Remember password".
&lt;li&gt; Make sure that "Require logon using Secure Password Authentication (SPA)" is not checked.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/4.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click "More Settings" tab to open the Internet Email Settings window.
&lt;ul&gt;
&lt;li&gt; Click the "Outgoing Server" tab.
&lt;li&gt; Check "My outgoing server (SMTP) requires authentication."
&lt;li&gt; Ensure that "Use same settings as my incoming mail server" is selected.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/5.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Sent Items tab. 
&lt;ul&gt;
&lt;li&gt; Check "Save sent items in the following folder on the server" .
&lt;li&gt; Select Sent folder in the ISyE email list.
&lt;/ul&gt;
&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/6.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Deleted Items tab.
&lt;ul&gt;
&lt;li&gt; Check "Move deleted items to the following folder on the server"
&lt;li&gt; Select Trash folder in the ISyE email folder list.
&lt;li&gt; Uncheck Purge items when switching folders while online
&lt;/ul&gt;
&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/7.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Advanced tab.
&lt;ul&gt;
&lt;li&gt; Select port 143 for incoming server (IMAP) and 587 for Outgoing server (SMTP)
&lt;li&gt; Select TLS as the encrypted connection for both Incoming and Outgoing server.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/8.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click OK to close Internet E-mail Settings window.
&lt;LI&gt; Click Next in Add New Account window, then click Finish to close the window.
&lt;/ol&gt;
&lt;/body&gt;
&lt;/html&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/105</link><pubDate>Fri, 09 Sep 2011 18:06:51 GMT</pubDate><guid isPermaLink="false">ba79532579e054983479220e598e1c06</guid></item><item><title>Installing the GT Root certificate (fixes intranet errors)</title><description>&lt;p&gt;The ISyE Intranet is now encrypted with a Georgia Tech SSL certificate.  This means that "out of the box" most browsers will show an error message when you try to visit the Intranet.&lt;/p&gt;

&lt;p&gt;Installing the GT certificate should prevent this problem.  To install the GT certificate, visit &lt;a href="http://ca.gatech.edu" title="ca.gatech.edu"&gt;ca.gatech.edu&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The web page there should automatically detect your browser and operating system, and give you the instructions to install the certificate.&lt;/p&gt;

&lt;p&gt;NOTE:  this will only work for the browser you are using at the time.  If you use Firefox and Chrome, you may need to install it for each browser.  If you have more that one computer, like a desktop and a laptop, you will need to install it on each system.&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/104</link><pubDate>Tue, 14 Jun 2011 17:24:58 GMT</pubDate><guid isPermaLink="false">75db213d231287409e18dee2baae3f3d</guid></item><item><title>Modifying Template Files in Your Personal Web Page</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
What are these files mainmenu.php, personal_vars.php, and index.php in my home directory?  How do I use them to modify pages on my ISyE home site?  How do I add new pages?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Note: &lt;/strong&gt;These instructions apply only to ISyE faculty and staff
  interested in hosting a personal website on ISyE's web server. If you
  are ISyE faculty or staff and would like to find out more relating to setting
  up and using your personal web space, please refer to &lt;a href="http://www.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;id=17"&gt;this
  Knowledgebase article&lt;/a&gt;. The ISyE IT group is happy to assist you in getting
  you started, or, if you wish to set up your web space by yourself, please &lt;a href="http://www.isye.gatech.edu/helpdesk/isyedata/files/ISyE_faculty-staff_template.zip"&gt;download the template files&lt;/a&gt; and put them into your home directory.&lt;/p&gt;
  
  &lt;p&gt;If you have questions or comments, please feel free to contact
  Andy Haleblian.&lt;/p&gt;
&lt;p&gt;This tutorial assumes that&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;You have a basic understanding of HTML.&lt;/li&gt;
  &lt;li&gt;You know how to retrieve and put web files to and from your personal web
    space. For information relating to file transfer and available software,
    the ISyE Knowledgebase contains articles on using &lt;a href="http://www.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=14&amp;id=18"&gt;FTP
    Voyager&lt;/a&gt; and &lt;a href="http://www.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=37&amp;id=49"&gt;WinSCP&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;You have access to and know how to use a chosen webpage editor. Popular
    choices include&lt;br /&gt;

&lt;ul&gt;
  &lt;li&gt;Microsoft FrontPage (freely available for &lt;a href="https://software.oit.gatech.edu/request.php?package=frontpage"&gt;download
      from OIT&lt;/a&gt;) &lt;/li&gt;
  &lt;li&gt;Macromedia Dreamweaver (~$64 a copy. Order licenses through the &lt;a href="mailto:helpdesk@isye.gatech.edu"&gt;ISyE
      HelpDesk&lt;/a&gt;)&lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.mozilla.org"&gt;Mozilla Composer&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Windows Notepad&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;

&lt;em&gt;Note: We strongly suggest against using Microsoft Word to edit your web
    pages. Microsoft Word has a tendency to write bloated, poorly formatted,
    and sometimes poorly supported code. &lt;/em&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt; These instructions were developed using Macromedia Dreamweaver as a reference,
  but are applicable to other webpage editors. Please note that these instructions
  are not meant to be a guide relating to using any particular piece of software.&lt;/p&gt;


&lt;h1&gt;What are Templates and How Do They Work? &lt;/h1&gt;
&lt;p&gt; A template is a standard design or method of carrying the same web page elements
  across multiple web pages with minimal effort. Our application concerns including
  a standardized ISyE header, footer, navigational menu, and html style (using
  CSS) across multiple ISyE faculty and staff pages. Please note we are employing
  the use of PHP (&lt;a href="http://www.php.net/"&gt;PHP Hypertext Preprocessor&lt;/a&gt;)
  for this purpose. This web scripting language is supported by ISyE's
  web server and is a straightforward solution for our application.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image002.gif" alt="Parts of the index.php file" width="639" height="315"&gt;&lt;/center&gt;&lt;/p&gt;
  &lt;p&gt;Each page within the user's web space using the ISyE template is based
  on the &lt;code&gt;index.php&lt;/code&gt; file (usually named &lt;code&gt;index.php&lt;/code&gt; if it is the
  only file in that directory &#xE2;&#x80;&#x93; the default document, or a different filename
  if multiple files are located in same folder). For our purposes, we will refer
  to the template file as &lt;code&gt;index.php&lt;/code&gt;. This file includes PHP
  code that dynamically pulls in the header, footer, menu, and styling from external
  files located elsewhere on the web server. This template file can also contains
  individual content specific to that page that the user can edit. Usually, this
  is the only part of the file that the user will have to modify.&lt;/p&gt;

&lt;h1&gt;To Edit an Existing Page on Your Website:&lt;/h1&gt;
&lt;ol&gt;
  &lt;li&gt;&lt;p&gt;To find the folder on the server that contains the page that you wish to
    edit, look at the page's URL in the address bar of a web browser. Using
    your home directory as a base reference, the relative location of the folder
    on the server is identical to the relative location of the page in the URL.&lt;/p&gt;
&lt;p&gt;For example, if the URL of your home page is &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt;http://www.isye.gatech.edu/~andyh/ &lt;/code&gt;&lt;/p&gt;
&lt;p&gt; and the page that you wish to edit is your &lt;em&gt;Research&lt;/em&gt; page located
  at &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; http://www.isye.gatech.edu/~andyh/research/ &lt;/code&gt;&lt;/p&gt;
&lt;p&gt; and your &lt;em&gt;Home&lt;/em&gt; page is located on the server at &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; /home/net/www_users/andyh &lt;/code&gt;&lt;/p&gt;
&lt;p&gt; (where the public_html soft link points to in your UNIX home directory) then your &lt;em&gt;Research&lt;/em&gt; page is in the folder located on the server at &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; /home/net/www_users/andyh/research &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image004.jpg" alt="The index.php file with content for the research page" width="480" height="323"&gt;&lt;/center&gt;&lt;/p&gt;&lt;p&gt;
    &lt;strong&gt;&lt;em&gt; Note&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; : Filenames within our UNIX system are
    case sensitive. When editing and reference files in html code, please ensure
    that this is taken into consideration. &lt;/em&gt;&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;Find the folder on the server that contains the page you wish to edit (according
    to Step 1). Open the file in this folder using your favorite webpage editor.&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;To edit the content of your web page, edit the code between the lines&lt;/p&gt;

&lt;p align="center"&gt;&lt;code&gt; &lt;!-- start main content column --&gt; &lt;/code&gt;&lt;/p&gt;
&lt;p&gt; and &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; &lt;!-- end main content column --&gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image005.jpg" alt="These are the start and end tags for content" width="480" height="322"&gt;&lt;/center&gt;&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;When you are done, upload the file back to the server to the directory
    you downloaded it from.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;To Create a New Page within Your Personal Web Space: &lt;/h1&gt;
&lt;ol&gt;
  &lt;li&gt;&lt;p&gt;In your home directory, create a folder to contain the files for your new
    page(s). Note that your folder name cannot contain any spaces.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image007.jpg" alt="Creating and naming a new folder" width="480" height="322"&gt;&lt;/center&gt;
&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;Copy the &lt;code&gt;index.php&lt;/code&gt; file from your home directory and paste
    it in your new folder. &lt;/p&gt;

&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image009.jpg" alt="Copying and pasting index.php into that new folder" width="480" height="322"&gt;&lt;/center&gt;
&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Open this file up in your editor and delete the lines &lt;/p&gt;
&lt;p&gt;&lt;code&gt; &lt;?php //pulls bio and awards from ISyE database. Delete these
    lines if used in file other than your personal homepage. &lt;br /&gt;
 include("isyeinternet/includes/contactinfo.php"); ?&gt; &lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Between the lines &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; &lt;!-- start main content column --&gt; &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;and &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; &lt;!-- end main content column --&gt;&lt;/code&gt;,&lt;/p&gt;
&lt;p&gt;write the HTML code for your new web page. Note that the &lt;code&gt; &lt;html&gt;&lt;/code&gt; and &lt;code&gt; &lt;body&gt;&lt;/code&gt; tags,
  as well as any HTML code that would normally go between the &lt;code&gt; &lt;head&gt;&lt;/code&gt; and &lt;code&gt; &lt;/head&gt;&lt;/code&gt; tags,
  are not necessary.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image011.jpg" alt="Modifying the index.php file" width="480" height="322"&gt;&lt;/center&gt;
&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;Go to the line &lt;/p&gt;
&lt;p align="center"&gt;&lt;code&gt; require_once('personal_vars.php'); &lt;/code&gt;&lt;/p&gt;
&lt;p&gt;at the top of the file and add &lt;code&gt; ../&lt;/code&gt; in front of &lt;code&gt; personal_vars.php&lt;/code&gt; as
  many times as there are subdirectory levels between the newly created &lt;code&gt;index.php&lt;/code&gt; file
  and top level of your web page directory.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image013.jpg" alt="Editing the personal_vars.php line" width="480" height="322"&gt;&lt;/center&gt;&lt;/p&gt;&lt;p&gt;
  For instance, the &lt;code&gt;index.php&lt;/code&gt; file in the biography folder is
  one subdirectory level below the top level of my web page directory. To relate
  this and have the path render correctly, I add &lt;code&gt; ../&lt;/code&gt; in front
  of &lt;code&gt; personal_vars.php&lt;/code&gt;.&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;Save the file and upload it to the server.&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;
    &lt;p&gt;If you wish to add a link to this page within the navigational menu on the
      left side of the page, open up the file &lt;code&gt;mainmenu.php&lt;/code&gt; in
      the top most level of your web directory and alter the menu accordingly
      (we have included the most frequently used menu structure, so use this
      code as a reference, and feel free to modify it for your needs).&lt;/p&gt;
	  &lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image015.jpg" alt="The mainmenu.php file" width="480" height="322"&gt;&lt;/center&gt;&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;If you see a commented-out line that contains the name of the folder you
    created in Step 1, delete the &lt;code&gt; &lt;!--&lt;/code&gt; and &lt;code&gt; --&gt;&lt;/code&gt; on
    either side of that line. If not, copy a line of code beginning with &lt;code&gt; &amp;middot;&lt;/code&gt; that
    is not commented out and paste it on the line below. &lt;/p&gt;

&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image017.jpg" alt="Copying and pasting a new line into mainmenu.php" width="480" height="322"&gt;&lt;/center&gt;&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;
    &lt;p&gt;Change the folder name to the name of the folder you created, and change
      the text between the anchor tags to the name of your new page.&lt;/p&gt;
	  &lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image019.jpg" alt="Editing the new line" width="480" height="323"&gt;&lt;/center&gt;&lt;/p&gt;&lt;/li&gt;

  &lt;li&gt;&lt;p&gt;Save &lt;code&gt;mainmenu.php&lt;/code&gt;, upload it to the server, and view it
    in a web browser.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/templates/clip_image021.jpg" alt="The finished website" width="480" height="324"&gt;&lt;/center&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/72</link><pubDate>Fri, 25 Mar 2011 16:23:10 GMT</pubDate><guid isPermaLink="false">bcf9721e4210a3ffbcd4a8eecfd7a87a</guid></item><item><title>How do I perform a Windows Update?</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I was informed that it would be a good idea to run a Windows updates on my computer. How do I go about doing this?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Windows Update downloads and installs the latest updates/patches available
  for your computer's operating system, software, and hardware. Since new computer
  security vulnerabilities are emerging everyday, it important to keep
your Windows computer current  and protected. &lt;/p&gt;
&lt;p&gt;
  &lt;div class="ylwoutline"&gt;Please note that you must have Administrator rights on the local machine to
    use Windows Update. These directions are geared towards  individuals who
    own laptops or equipment not frequently located on the premises. We strongly
    suggest that you run Windows Update when on a highspeed connection. Otherwise,
    it could take several hours to downloads a larger update from the Microsoft
    site.&lt;/div&gt;
&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;  Open Internet Explorer and look under the &lt;strong&gt;Tools&lt;/strong&gt; menu
    item for &lt;strong&gt;Windows
    Update&lt;/strong&gt;. If you cannot locate a Windows Update link there, type&lt;a 
href="http://windowsupdate.microsoft.com"&gt; http://windowsupdate.microsoft.com&lt;/a&gt; into
    the browser address bar (please not that windows update may not work with
    older version of IE or other web browsers).  
  &lt;li&gt;After successfully accessing Microsoft's website, you will be notified
    that the system is "Checking for the latest
    version of the Windows Update software... This may take a while". You may
    be notified via a pop-up message that the Windows Update V4
    Control is required. Click &lt;strong&gt;Yes&lt;/strong&gt; and proceed. 
  &lt;li&gt;"Welcome to Windows Update" will be noted at the top of the webpage. Below
    you should see a &lt;strong&gt;Scan for updates link&lt;/strong&gt;.  Click it. &lt;br&gt;
    &lt;br&gt;
    &lt;center&gt;
      &lt;img alt="Click the green arrow" src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/updates/1-wu.gif"&gt;
      &lt;br&gt;
        &lt;/center&gt;
    &lt;li&gt;The page will now note "Looking for Available Updates" followed
      by a progress meter. After the meter reaches 100%, the webpage will note "Pick
    updates to install". Below
    you should see a &lt;strong&gt;Review and Install updates&lt;/strong&gt;. Click it.    
    &lt;li&gt;There will be a list of updates, each with a Remove button after it.
    It is usually recommended to install all of the updates, unless IT has notified
      you of a special situation (e.g. PeopleSoft not working with a new Windows
      patch). Choose &lt;strong&gt;Install Now&lt;/strong&gt;.
  &lt;li&gt;The chosen update(s) will automatically download and install. You will
    be given the choice to not restart your computer, otherwise Windows Update
    will restart your computer for you. TheuUpdates will not take effect until
    you have restarted your computer.. 
  &lt;li&gt;If you did not install all of the updates (e.g. you had to install an exclusive
    update), go back to &lt;a 
href="http://windowsupdate.microsoft.com"&gt;http://windowsupdate.microsoft.com&lt;/a&gt; and
    get the rest.&lt;li&gt;Run Windows Update one more time to make sure there are
      no more updates. 
    &lt;/ol&gt;
&lt;h3&gt; Running Windows Update Automatically in Windows
XP&lt;/h3&gt;
&lt;ol&gt;
  &lt;li&gt;Choose &lt;strong&gt;Start&lt;/strong&gt;, then &lt;strong&gt; Control Panel&lt;/strong&gt;. 
  &lt;li&gt;Double-click on &lt;strong&gt;System&lt;/strong&gt;. 
  &lt;li&gt;Choose the &lt;strong&gt;Automatic Updates&lt;/strong&gt; tab. Make sure that the &lt;strong&gt;Keep
    my computer up to date&lt;/strong&gt; box is checked. 
  &lt;li&gt;Choose an appropriate process from the Settings area based on your computer
    use. We suggest
    &lt;strong&gt;Download the updates automatically and notify me when
    they are ready to be installed&lt;/strong&gt;. 
  &lt;li&gt;Choose the &lt;strong&gt;OK&lt;/strong&gt; button.   
&lt;/ol&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/61</link><pubDate>Fri, 25 Mar 2011 16:21:21 GMT</pubDate><guid isPermaLink="false">c942a5712bac52a43e7a4c9ff5e08cec</guid></item><item><title>Protecting Your Computer From Viruses</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
What software protects my computer from viruses, and how do I use it?  What should I do if I encouter a virus on my machine?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;Note: if these instructions do not match the Virus Scan on your computer,
  you may have an older version. Please contact the helpdesk at &lt;a href="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/a&gt; for
  an upgrade.&lt;/p&gt;
&lt;p&gt;The McAfee Virus Scan software is installed on all computers on the ISyE network.
  It appears as a small shield with a V in the taskbar:&lt;/p&gt;
&lt;center&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/viruses/icon.jpg" alt="Virus Scan Icon"&gt;&lt;/p&gt;&lt;/center&gt;

&lt;p&gt;This program is running in the background the entire time the computer is
  switched on, conducting continuous scans of the files on the user's machine. &lt;em&gt;DO
  NOT CLOSE VIRUS SCAN, or the PC will become susceptible to viruses. &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;u&gt; Conducting a Manual Scan: &lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;If you wish to run a manual scan, right click on the Virus Scan icon and select
    On-Demand Scan.&lt;/p&gt;
&lt;center&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/viruses/ondemand.jpg" alt="On Demand Scan Option"&gt;&lt;/p&gt;&lt;/center&gt;

&lt;p&gt;  The On-Demand Scan Properties window will open. Be sure that All Local Drives
    is highlighted, and then click on Scan Now.&lt;/p&gt;
&lt;center&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/viruses/ondemandproperties.jpg" alt="On Demand Scan Properties Window"&gt;&lt;/p&gt;&lt;/center&gt;

The On-Demand Scan Progress window will open and list all the files being scanned.
    If you wish to stop or pause the scan, press the Stop or Pause button, respectively.
&lt;center&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/viruses/ondemandscan.jpg" alt="On Demand Scan" &gt;&lt;/p&gt;&lt;/center&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt; Detecting a Virus: &lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;In the event that Virus Scan detects an infected file, it will automatically
  try to delete the file:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;If the deletion succeeds, Virus Scan will produce a pop-up message informing
    the user of its actions. Simply close the message.&lt;/li&gt;
  &lt;li&gt;If the deletion fails, Virus Scan will inform the user of this failure.
    Please send a message to &lt;a href="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/a&gt; in
    this event.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;&lt;u&gt; Upgrading the Virus Definitions: &lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Virus Scan software updates occur automatically at 9:00 every morning. If
  you have a laptop or you usually shut down your machine before you leave in
  the evening, then you can manually update your virus scan by right clicking
  on the virus scan icon and selecting the Update Now menu. &lt;/p&gt;
&lt;center&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/viruses/updatenow.jpg" alt="Update Now"&gt;&lt;/p&gt;&lt;/center&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/71</link><pubDate>Fri, 25 Mar 2011 16:19:07 GMT</pubDate><guid isPermaLink="false">fd5bec4ab4c2ff398b839c9591bb40bb</guid></item><item><title>Mapping a Network Drive</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I am working on a Windows machine and need access to a SAMBA share.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h2 class="kbsubheading1"&gt;What is SAMBA?&lt;/h2&gt;
&lt;p&gt;Samba is a suite of Unix applications that speak the SMB (Server Message Block)
  protocol. Many operating systems, including Windows and OS/2, use SMB to perform
  client-server networking. By supporting this protocol, Samba allows Unix servers
  to get in on the action, communicating with the same networking protocol as
  Microsoft Windows products. Thus, a Samba-enabled Unix machine can masquerade
  as a server on your Microsoft network and offer the following services:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Share one or more filesystems&lt;/li&gt;
  &lt;li&gt;Share printers installed on both the server and its clients&lt;/li&gt;
  &lt;li&gt;Assist clients with Network Neighborhood browsing&lt;/li&gt;
  &lt;li&gt;Authenticate clients logging onto a Windows domain&lt;/li&gt;
  &lt;li&gt;Provide or assist with WINS name server resolution&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Specific to ISyE,  UNIX account holders can use SAMBA to access their
    UNIX home directories and file shares from various Windows PCs on the ISyE
network.  Also, please note SAMBA is only available from within the ISyE network.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="kbsubheading2"&gt;Mapping a UNIX-based directory to a Windows
    computer via SAMBA and Windows Explorer:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;1. Open Windows Explorer on the local machine.&lt;br&gt;
2. Select Tools-&gt;Map Network Drive&lt;br&gt;
3. Enter &lt;code&gt;\\[server name][share name]&lt;/code&gt;. Share name is the directory that you want to map to, server name is the name of the samba server. To map to your ISyE UNIX home directory, either use your UNIX account name or the word "homes".&lt;/p&gt;

&lt;p&gt;e.g. &lt;code&gt;\\samba.isye.gatech.edu\homes&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;4. Click Finish.&lt;/p&gt;

&lt;p&gt;&lt;span class="callout"&gt;NOTE: If you used the same password on your PC that you use for your email, it will map the drive immediately. Otherwise, you will have to enter a password and then it will map the drive.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/camtasia.gif"&gt; &lt;a href="http://www.isye.gatech.edu/helpdesk/isyedata/mappingdrive.html" target="_blank"&gt;View the Video&lt;/a&gt;&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/14</link><pubDate>Fri, 25 Mar 2011 16:18:06 GMT</pubDate><guid isPermaLink="false">ca3402f42567c39fb100cea2fbe33368</guid></item><item><title>Printer and Toner Management</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I need to have the toner in my printer replaced.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;ISyE has entered into a relationship with Bobby Dodd industries to maintain and
    service onsite ISyE-owned black and white laser printers (see below for home printers)&lt;/strong&gt;. Printers included in this program have a BDI sticker affixed in an easily viewable
    area. If you need service or toner replaced, either call BDI at the provided
    number (mention your printer ID number) or submit a request via an online
     form located at &lt;a href="http://www.isye.gatech.edu/printerhelp/" 
target=_blank&gt;http://www.isye.gatech.edu/printerhelp/&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;About Home Printers&lt;/h3&gt;
&lt;p&gt;Black and white laser printers for home use will not have a BDI sticker on them. These units are maintained by Lawrence Sharp.  Toner and repair requests for ISyE-owned home black and white laser printers must be handled through the ISyE HelpDesk. The department policy is one toner per calendar year for home printers. Anything beyond that needs to be bought by the printer
  owner.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/bdilabel.jpg" alt="BDI maintenance sticker"&gt;&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/64</link><pubDate>Fri, 25 Mar 2011 16:17:21 GMT</pubDate><guid isPermaLink="false">b1097069d716ef67dfcba616ec7365c9</guid></item><item><title>Thunderbird 2 Setup Instructions for the New IMAP Accounts</title><description>&lt;P&gt;&lt;B&gt;NOTE:&lt;/B&gt; Thunderbird 2 is no longer current.  For information on obtaining and installing Thunderbird 3 &lt;a href="http://herald.isye.gatech.edu/helpdesk/index.php/kb/article/000100"&gt;read this entry.&lt;/A&gt;&lt;/P&gt;

&lt;h3&gt;Problem: &lt;/h3&gt;

How do I set up my new IMAP email account on a new or existing installation of Thunderbird?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h1&gt;Configuring Thunderbird 2.0.0.4&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;New Installation  &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1. Download thunderbird from http://www.mozilla.com/en-US/thunderbird/&lt;br /&gt;
2. Install using all the default setup options. Then close the application &lt;br /&gt;
  3. Start up thunderbird and when select the option that says dont import anything on the import wizard
&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/1 tbird.jpg" width="447" height="355" /&gt;&lt;/p&gt;
&lt;p&gt;4. Select &amp;quot;Email account&amp;quot; and click &amp;quot;Next&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/2 tbird.jpg" width="447" height="443" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;5.
  Enter your full name and preferred email address  (for example, &lt;a href="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/a&gt;),  click &amp;quot;Next&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/3 tbird.jpg" width="447" height="443" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;6. Select server type &amp;quot;IMAP&amp;quot;, enter  &amp;quot;imap.isye.gatech.edu&amp;quot; as Incoming Server.&lt;br /&gt;
  7.
Enter &amp;quot;mail.isye.gatech.edu&amp;quot; as the Outgoing  Server, click &amp;quot;Next&amp;quot;.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/4 tbird.jpg" width="447" height="443" /&gt;&lt;/p&gt;
&lt;p&gt;8.Enter your ISyE account name (for example, &amp;quot;allen&amp;quot;) as the Incoming User Name.&lt;br /&gt;
9.Enter the same account name as the Outgoing User  Name, click &amp;quot;Next&amp;quot;. &lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/5 tbird.jpg" width="447" height="443" /&gt;&lt;/p&gt;
&lt;p&gt;10.Choose a name for this account such as &amp;quot;ISyE  IMAP Mail&amp;quot; and click &amp;quot;Next&amp;quot;.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/6 tbird.jpg" width="447" height="443" /&gt;&lt;/p&gt;
&lt;p&gt;11.
  If everything is correct, click &amp;quot;Finish&amp;quot;.&lt;br /&gt;
  12. When prompted for your password click on cancel since setup is not complete &lt;/p&gt;
&lt;p&gt;13. Then click on Tools then Account settings from the menu bar.&lt;br /&gt;
14. Click on  &amp;quot;Server Settings&amp;quot; located beneath the name of your new account, in the  left-hand portion of the window.&lt;br /&gt;
15. Under &amp;quot;Security Settings&amp;quot on the right side, select &amp;quot;TLS&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/7 tbird.jpg" width="612" height="575" /&gt;&lt;/p&gt;
&lt;p&gt;16. Click on &amp;quot;Outgoing Server (SMTP)&amp;quot; at the bottom  of the leftmost portion of the window.&lt;br /&gt;
  17. Make sure  that &amp;quot;Use name and password&amp;quot; is checked, and enter your account name next to  &amp;quot;User Name&amp;quot;.&lt;br /&gt;
18. Click the  button next to &amp;quot;TLS&amp;quot; (not &amp;quot;TLS, if available&amp;quot;)&lt;br&gt;
19. Set the Port to 587&lt;/p&gt;
&lt;p&gt;  &lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/thunderbird/8 tbird.jpg" width="326" height="319" /&gt;&lt;/p&gt;
&lt;p&gt;20. Click OK , then OK again.You are  now ready to read and send email using Thunderbird.&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/81</link><pubDate>Fri, 25 Mar 2011 16:13:42 GMT</pubDate><guid isPermaLink="false">b354c337a97de48380b9d6babd869ead</guid></item><item><title>How to setup and use spam filtering</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How can I setup and use spam filtering?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h2&gt;I. Introduction&lt;/h2&gt;

&lt;p&gt;Maia Mailguard is part of a solution that the ISyE IT department has implemented to reduce the amount of junk email (spam) reaching customers.  It includes a web-based interface as well as various server components which actually perform the filtering.  By using the Maia system, you will be able to adjust the sensitivity of your mail filtering as well as choose how messages identified as spam are handled.  Options include holding suspect messages in a "quarantine" area, marking as spam but delivering normally, deleting immediately or no filtering at all.&lt;/p&gt;


&lt;h2&gt;II. Signing up for the first time&lt;/h2&gt;

&lt;p&gt;By default, all incoming mail to the isye.gatech.edu domain is filtered for spam and viruses.  In order to minimize the risk of lost mail, this filtering has been done with a high degree of tolerance for "questionable" pieces of mail.  By registering yourself, you will gain the ability to tailor the filtering to your needs through adjustable thresholds and the use of white and blacklists (see the FAQ) to control who is allowed to send mail to you.&lt;/p&gt;

&lt;p&gt;To register, browse to &lt;a href="https://mail.isye.gatech.edu/maia"&gt;https://mail.isye.gatech.edu/maia&lt;/a&gt;.  You will be asked for your username and password (Figure 1).  These are the standard ones that you use to access other ISyE resources and not your GT-account.&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-1.jpg" border="1"&gt;&lt;br /&gt;
Figure 1&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;Once logged in for the first time, you should see a "Welcome to Maia Mailguard!" banner along with some introductory text (Figure 2).  You may ignore the "Current protection level:" options as we have already set this to Custom.&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-2.jpg" border="1"&gt;&lt;br /&gt;
Figure 2&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;Please perform the following steps to get set up:
&lt;ol&gt;
		&lt;li&gt;Click the "Settings" icon midway down the left side of the page.&lt;/li&gt;
		&lt;li&gt;Near the top of the page next to "Primary Address", click your email address (Figure 3).&lt;/li&gt;
		&lt;li&gt;Choose a spam threshold and enter it next to "Consider mail 'Spam'..." and "Quarantine Spam when..."  We recommend 5.0, but you may use a higher value (which will miss spam more often) or a lower value (which will occasionally mark a legitimate message as spam.)&lt;/li&gt;
		&lt;li&gt;Next to "Mail with bad headers..." please choose "Labeled".&lt;/li&gt;
		&lt;li&gt;Click the "Update This Addresses' Settings" button at the bottom of the page (Figure 4).&lt;/li&gt;
&lt;/ol&gt;
&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-3.jpg" border="1"&gt;&lt;br /&gt;
Figure 3&lt;br /&gt;
&lt;/center&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-4.jpg" border="1"&gt;&lt;br /&gt;
Figure 4&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;That completes your initial setup process.  If you have questions about the many options that are available to you, please feel free to ask one of us.  Now proceed to the next section to learn what to do with Maia on an ongoing basis.&lt;/p&gt;


&lt;h2&gt;III. Using Maia Mailguard on a regular basis&lt;/h2&gt;

&lt;p&gt;Over time, you will receive many email messages which are spam.  Most of these will be "obvious" to the system and are discarded automatically.  Occasionally, a message will look like spam, but Maia will not be confident enough to delete it immediately.  These messages are held in your "Suspected Spam" quarantine, also known as your "spam cache".&lt;/p&gt;

&lt;p&gt;To check your spam cache, click on the icon that looks like a white 'X' with "Report/Rescue" beneath it (Figure 5).  If any items have been held, you will see a list of them now.  The recommended way to deal with these is as follows:&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-5.jpg" border="1"&gt;&lt;br /&gt;
Figure 5&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;
&lt;ol&gt;
		&lt;li&gt;Sort the spam cache by score, in ascending order.  Do this by clicking on the "Score" header.  You will only need to do this once after which it will be remembered.&lt;/li&gt;
		&lt;li&gt;Glance through the various messages to see if there is anything you want to keep.  Note that the lowest scores are the ones most likely to be legitimate messages.&lt;/li&gt;
  		&lt;li&gt;To keep a message, click on its subject and press the "Confirm this Non-spam" button at the top of the page.&lt;/li&gt;
  		&lt;li&gt;When you have removed all of the legitimate messages please click "Confirm the States of these Items" to mark the rest as spam (Figure 6).&lt;/li&gt;
&lt;/ol&gt;
&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-6.jpg" border="1"&gt;&lt;br /&gt;
Figure 6&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;Occasionally, Maia will miss a spam message entirely and allow it to be delivered to you.  When this happens, you may log in and notify the system so that it will learn what types of messages you don't want to receive.  Use the following steps to accomplish this:&lt;/p&gt;
&lt;p&gt;

&lt;ol&gt;
&lt;li&gt;Click on the green check mark icon labeled "Report/Confirm"&lt;/li&gt;
&lt;li&gt;Locate the offending message and click on its subject.&lt;/li&gt;
&lt;li&gt;Click the "Report this SPAM" button at the top of the page.&lt;/li&gt;
&lt;li&gt;Once you have reported any spam, please click "Confirm the Status of these Items" to let Maia know that the other messages are legitimate email.&lt;/li&gt;
&lt;/ol&gt;

&lt;/p&gt;



&lt;h2&gt;IV. FAQs&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Q.  Can I change the number of messages displayed on one page while viewing a cache?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A&lt;/strong&gt;.  Yes.  The default of 50 messages is often too small, especially if you receive a large amount of spam.  You may change this by clicking "Settings", then changing the value next to "Mail items to be displayed on each page?" and then clicking "Update Miscellaneous Settings" at the bottom of the page.  I find that "1000" works quite well here as it typically allows all of the messages to be displayed on one page without becoming too slow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q.  This is a lot of trouble.  Do I have to do anything with Maia at all?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt;  Almost nothing.  We do strongly recommend that you log in and check your Suspected Spam cache once per week for legitimate messages.  Please follow the instructions in section III, "Spam cache" to do this.  Once you have verified that everything in the cache is spam, please click the "Confirm the Status of these Items" button.  This helps to ensure greater accuracy for everyone and will empty your cache as well.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q.  I would like to always accept or always block mail from certain addresses.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt;  This is called &lt;em&gt;whitelisting&lt;/em&gt; (always accept) or &lt;em&gt;blacklisting&lt;/em&gt; (always reject).  You may add items to these lists by clicking the "W/B List" icon on the left side of the page.  Then enter the email address (such as allen@isye.gatech.edu) or an entire domain (such as @caltech.edu) that you wish to add.  Finally, select either the Whitelist or the Blacklist button and click "Add to List".  To remove an item from the list, click next to it under the "Remove" heading and then click the "Update" button at the bottom of the list (Figure 6).&lt;/p&gt;

&lt;center&gt;&lt;br /&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/maia/Figure-7.jpg" border="1"&gt;&lt;br /&gt;
Figure 7&lt;br /&gt;
&lt;/center&gt;

&lt;p&gt;&lt;strong&gt;Q.  I've already created white/blacklists on the existing systems.  Do I need to enter my entire list again?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A.&lt;/strong&gt;  No.  These have all been transferred to Maia.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q.  I have begun receiving "Quarantine Reminder" messages.  What does this mean?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A. &lt;/strong&gt;The system will begin sending these messages once per day after you have accumulated 25 messages in your "Suspected Spam" cache.  Please follow the procedure in section III, "Suspected Spam cache" to empty it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Q.  I have a question which is not answered in this document.  What shall I do?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;A&lt;/strong&gt;.  Please send a message to &lt;a href="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/a&gt;, and we will be happy to clarify anything you would like to know about this system.&lt;br&gt;
&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/80</link><pubDate>Fri, 25 Mar 2011 16:09:58 GMT</pubDate><guid isPermaLink="false">2cf04742faffe8bb9e2adf47cb6cc823</guid></item><item><title>Using FTP</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I need to use FTP to access/manipulate files between FTP-capable machines.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;FTP (or file transfer protocol) is the old standard means of transmitting
  and receiving files from one host to another. A client program gives you the
  ability to connect a computer to an ftp server to send or retrieve files.
  Some systems on the GT and Internet networks provide support for anonymous access
  (i.e. the system does not require that you have an account in order to connect
  and retrieve information).&lt;/p&gt;
&lt;H3&gt;ISyE Systems and FTP&lt;/H3&gt;
&lt;p&gt;FTP programs transmit passwords without encryption and thus is a security risk.
As a result, ISyE does not provide support for "authenticated" FTP.&lt;/p&gt;
&lt;p&gt;ISyE does provide an anonymous FTP service through ftp.isye.gatech.edu for the purpose
of publicly sharing files with the outside world and for allowing collaborators to
upload files to special secured locations.&lt;/p&gt;
&lt;p&gt;To make files available to the outside world via anonymous FTP, either ssh into
ftp.isye.gatech.edu and copy the files into the appropriate sub-directory of /ftp/pub
or use scp to directly copy the files.  Please be certain that the files are truly for
public consumption as anyone on the Internet will be able to download the files.&lt;/p&gt;
&lt;p&gt;If you are a faculty member of ISyE and want external collaborators to be able to
upload files into a secured location, a directory must exist for this particular project
or faculty member under /ftp/incoming.  Once the files are uploaded, ONLY the faculty member
for whom the directory was created can ssh to ftp.isye.gatech.edu and move (mv command)
the files to another location, or use scp to copy them off to a remote host.&lt;p&gt;
&lt;p&gt;To request an incoming directory, please email helpdesk@isye.gatech.edu with the details
of the request.&lt;/p&gt;
&lt;p&gt;Students who need an upload directory for research purposes should ask their adviser to
request a directory.  Note that the adviser will have to copy off the files once uploaded.&lt;/p&gt;
&lt;h3&gt;Anonymous FTP via UNIX&lt;/h3&gt;
&lt;p&gt;At the UNIX prompt, type &lt;code&gt;ftp [hostname]&lt;/code&gt; (remember to use the
  full hostname). You can also use xftp if you are working in a windows environment.
  &lt;/p&gt;
  &lt;p&gt;Enter anonymous as the login name, and your email address as the password.
  &lt;/p&gt;
&lt;h3&gt;Anonymous FTP via Windows&lt;/h3&gt;
&lt;p&gt;Start FileZilla, WinSCP (or your favorite FTP client) from the local machine. You will
      usually need the following information to access an FTP-capable machine. &lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;host/server (e.g. &lt;code&gt;ftp.isye.gatech.edu&lt;/code&gt;)&lt;/li&gt;
  &lt;li&gt;user name (&lt;code&gt;anonymous&lt;/code&gt;)&lt;/li&gt;
  &lt;li&gt;password (your email address)&lt;/li&gt;
  &lt;li&gt;default directory (when logging in, the ftp client will drop you into the "pub" directory.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Using SCP&lt;/h2&gt;
&lt;p&gt;When you connect to a normal FTP server, your username and password are sent in clear text. This data can be read by someone using a packet sniffer that is "plugged in" anywhere in between you and the remote server. Be sure to change passwords regularly, but specifically, try to avoid FTP when a better alternative is available. &lt;/p&gt;
&lt;p&gt;One alternative to using FTP is using secure FTP or secure Copy. &lt;a href="http://www2.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=37&amp;id=49"&gt;Visit the WinSCP knowledgebase article&lt;/a&gt; for more information.</description><link>http://www.isye.gatech.edu/kb/kb/article/18</link><pubDate>Mon, 24 Jan 2011 19:58:40 GMT</pubDate><guid isPermaLink="false">88ce7f67f91deda5649085af6b5d2747</guid></item><item><title>Copying files from your incoming ftp directory</title><description>&lt;p&gt;If you have had files placed in an incoming ftp directory, here is the method for retrieving those files.&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;ssh to castle.isye.gatech.edu using SecureCRT or another ssh client&lt;/li&gt;
&lt;li&gt;ssh from castle to ftp.isye.gatech.edu&lt;/li&gt;
&lt;li&gt;copy the files using cp&lt;/li&gt;&lt;/ol&gt;

See the transcript below as an example:
&lt;ol&gt;&lt;li&gt;
&lt;pre&gt;
zero:~ lsharp$ ssh castle.isye.gatech.edu

Unauthorized system access is prohibited.

System use is governed by the GIT Computer and
Network Usage, Security and Data Access Policies.

Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
Last login: Mon Jan 24 14:36:21 2011 from adsl-074-244-119-076.sip.asm.bellsouth.net

----[ 10/29/2010 ]---------------------------------------------------------

Castle is now enforcing limits on CPU time and memory for all users.  You
may run for up to 60 minutes of CPU time and use up to 4GB of memory.  If
either of these are exceeded, the job will automatically be killed by the
system.

This machine is intended for general use and development, so these limits
should not pose a problem for anyone and will ensure that the system
remains responsive for all.  Please contact us via helpdesk@isye.gatech.edu
if you have questions or concerns.  Long running and/or large jobs should
be run via the ISyE Compute infrastructure.  Please contact Trey Palmer
(trey@isye.gatech.edu) for additional information.

Also please note that keep.isye.gatech.edu is available to everyone as an
alternate to castle, should the latter become unavailable at any point.

--------------------------------------------------------------------------

-bash-3.2$
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;
-bash-3.2$ ssh ftp.isye.gatech.edu

Unauthorized system access is prohibited.

System use is governed by the GIT Computer and
Network Usage, Security and Data Access Policies.


lsharp@ftp.isye.gatech.edu's password: 
Last login: Thu Oct 23 10:53:35 2008 from argo.isye.gatech.edu
-bash-3.2$
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;
-bash-3.2$ cd /ftp/incoming
-bash-3.2$ cd lsharp
-bash-3.2$ ls -l
total 22020
-rw-r--r--+ 1 ftp ftp      131 Jan 12  2010 callhome.sh
-rw-r--r--+ 1 ftp ftp 24145004 Jan 12  2010 vlc-0.8.6b.dmg
-rw-r--r--+ 1 ftp ftp    42387 Sep  1 09:13 z5b9J.gif
-bash-3.2$ cp z5b9J.gif ~lsharp 
&lt;/pre&gt;&lt;/li&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/103</link><pubDate>Mon, 24 Jan 2011 19:55:52 GMT</pubDate><guid isPermaLink="false">ab07d26e201fc17db0d047d8d324ca7e</guid></item><item><title>Using the ISyE Virtual Private Network (VPN)</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I am a faculty or staff member and need access to the ISyE network (VPN access is not available to students).
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;We all owe TLI a debt of gratitude for funding a departmental VPN remote connectivity solution for ISyE! Now you might ask, what is VPN and what can it do for you......VPN stands for Virtual Private Network. For anyone connecting to the internet, through any means and from any location, running the VPN client software provides a secure virtual connection between your computer and the ISyE computer network. This technology allows you to take advantage of all network related services offered within the department from any location. &lt;strong&gt;Please note that VPN accounts are available for ISyE faculty and staff only.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Receiving and sending email is easier (with no 'server' configuration changes as are required currently), SAMBA (remote file sharing services) will now be available from remote locations as well as a number of other services coming on line over the next year. One last significant benefit is that VPN encrypts all data transferred between your computer and the ISyE network. This helps to protect your passwords, email and any other sensitive data that might be transmitted. If you would like more information on VPN, or are interested in getting setup to use VPN from home or from a laptop, please read the following.&lt;/p&gt;

&lt;h2 class="kbsubheading1"&gt;ISYE VPN Installation Instructions&lt;/h2&gt;

&lt;p&gt;1. &lt;strong&gt;Before proceeding, please contact Allen Belletti @4-6221
    to obtain a username and ask to be added to the system. Without this step,
    you will not be able to access the ISyE network using the software. If
  you have a previous version of the VPN Client already installed, please remove
  it using add/remove programs under the windows control panel before installing
  the new version. Also, if this is the case, use the password assigned to you,
not the initial password as noted below.&lt;/strong&gt;
&lt;p&gt; 2. Download and run the file named &lt;a href="http://herald.isye.gatech.edu/helpdesk/isyedata/files/VPN_Client_4_91_021.exe"&gt;VPN_Client_4_91_021.exe
    (3.3MB)&lt;/a&gt;.
    &lt;strong&gt;Please note that you must have administrator rights
on the local machine to install the software&lt;/strong&gt;.
&lt;p&gt; 3. Accept all the installation defaults by clicking on the YES and NEXT buttons.
&lt;p&gt; 4. When the installation has completed, restart the computer.
&lt;p&gt; 5. After restart,   run the Contivity VPN Client program located on the desktop or in the Nortel
Networks Program Group within the Start Menu.
&lt;p&gt; 6. Click on NO when asked to use the Connection Wizard to create a connection.
&lt;p&gt; 7. Enter the following information into the appropriate fields:
&lt;blockquote&gt;
  &lt;p&gt; Connection: &lt;code&gt;Georgia Tech ISyE VPN&lt;/code&gt;&lt;br&gt;
    Description: &lt;code&gt;Georgia Tech ISyE VPN&lt;/code&gt;&lt;br&gt;
    Dial-up: &lt;code&gt;(None) &lt;/code&gt;&lt;br&gt;
    User Name: &lt;code&gt;(Enter your current ISYE User ID)&lt;/code&gt;&lt;br&gt;
    Password: &lt;code&gt;gtisyevpn (initial password only - should be changed on first connection)&lt;/code&gt;&lt;br&gt;
    Save Password: &lt;code&gt;(Click on the box to place a check  inside it.)&lt;/code&gt;&lt;br&gt;
    Destination: &lt;code&gt;130.207.91.149&lt;/code&gt;&lt;br&gt;
  &lt;/p&gt;
&lt;/blockquote&gt;
8. Click on the SAVE button.&lt;br&gt;
9. Click on the CONNECT button.&lt;br&gt;
10. Change your password on first connection. To change the password, right-click on the VPN icon in the lower right corner of the screen and choose "Change Password".&lt;br&gt;

&lt;p class="callout"&gt;***Please do not set the  Contivity software to automatically
  load every time Windows is started. This would be quite detrimental to a laptop
  that was brought back onto campus, because it would needlessly route all network
traffic through the VPN server.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/6</link><pubDate>Tue, 21 Dec 2010 20:33:52 GMT</pubDate><guid isPermaLink="false">0801ae7f06a9b0f50c119fe308ee1935</guid></item><item><title>Web Server Migration</title><description>&lt;h3&gt;ISyE Web Server Upgrade&lt;/h3&gt;

&lt;p&gt;ISyE is moving our web servers to new hardware in the coming weeks.  We are using this opportunity to make some security fixes to the server software.  For the majority of ISyE users this will have no impact on your web pages.  A few users may have to make some changes to their code to work with the new security settings.
&lt;/p&gt;
&lt;h3&gt;How Can I Know If My Web Page Will Work?&lt;/h3&gt;

&lt;p&gt;Our current web server uses the url &lt;a href="http://www2.isye.gatech.edu"&gt;http://www2.isye.gatech.edu&lt;/a&gt;.  The new web server is using the url &lt;a href="http://www2.isye.gatech.edu"&gt;http://www3.isye.gatech.edu&lt;/a&gt;.  
&lt;/p&gt;

&lt;p&gt;So if your current web pages are located at &lt;a href="http://www2.isye.gatech.edu/workforcecom/"&gt;http://www2.isye.gatech.edu/workforcecom/&lt;/a&gt; you can see them viewed on the new server by changing the url from www2 to www3:  &lt;a href="http://www3.isye.gatech.edu/workforcecom/"&gt;http://www3.isye.gatech.edu/workforcecom/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;There are two main groups of users who should check their code:  Users who have web forms, and users who connect to databases.&lt;/p&gt;

&lt;h3&gt;Database users&lt;/h3&gt;

&lt;p&gt;In the past, the web server and the database server were both on the same hardware.  Database connections to 'localhost' would work.  The new web server is separate from the database server, so localhost connections will no longer work.  If you have a page that connects to a database as localhost or ballista.isye.gatech.edu, you will need to change the connection to &lt;strong&gt;mysql.isye.gatech.edu&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;Web Form users&lt;/h3&gt;

&lt;p&gt;The old web server had the php setting Register Globals turned on.  This meant that in web forms, each field you submitted would be converted to a php variable.  For example, if you had a form that requested the field "firstname" it would be automatically converted to a php variable $firstname.  On the new server this setting is turned off, so variables will not be automatically created.&lt;/p&gt;

&lt;p&gt;If you have a web form that requests the field "firstname" now you will need to either address the POST variable directly, as $_POST['firstname'] or copy its value with the following line of code:&lt;/p&gt;

&lt;p&gt;    $firstname =  $_POST['firstname'];&lt;/p&gt;

&lt;h3&gt;Having problems?&lt;/h3&gt;

&lt;p&gt;If you have any problems with your web pages or have any further questions about these changes, email us at helpdesk@isye.gatech.edu and we will be glad to help you.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/102</link><pubDate>Tue, 13 Apr 2010 20:28:53 GMT</pubDate><guid isPermaLink="false">025380dd13930814913dead203d476de</guid></item><item><title>How to run Unix/Linux compute jobs using Condor</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I use the ISyE Unix/Linux computational resources?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
Instructions for the use of ISyE's computational Linux cluster:
&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;b&gt;Initial requirements&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
You need an &lt;a href="http://www2.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=16&amp;id=29"&gt;ISyE Unix Account&lt;/a&gt;. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;b&gt;Logging in&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
The central 64-bit compute server is wren.isye.gatech.edu (or just "wren" if you are on ISyE's subnets).  
&lt;br&gt;&lt;br&gt;
You should be able to access wren via ssh using your usual ISyE Unix account and password.  Your Unix home directory will be mounted and accessible.&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;

&lt;b&gt;Compute cluster hierarchy&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
The central server, Wren, is called the "head node."  When compute jobs are ready to be run, the head node assigns execution of them to subordinate servers which are called "compute nodes."
&lt;br&gt;&lt;br&gt;

Users only need to log into the head node.   The compute nodes do not support direct logins, and they cannot mount home directories.  Compute jobs must be submitted to them through the Condor batch queue scheduler.
&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;

&lt;b&gt;Development&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
Development for 64-bit Linux compute jobs should be done on wren, and interactive test runs can be performed there.
&lt;br&gt;&lt;br&gt;
Long-running compute jobs and large batches of unattended short-running jobs are not allowed on the head node.
&lt;br&gt;&lt;br&gt;
GUI development interfaces can be exported to the local X Windows desktop via ssh X forwarding (the ssh -X option).
&lt;br&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;

&lt;b&gt;Condor commands&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
Condor's executables are located in /opt/condor/bin, which should be in your default command path on wren, with man pages available for most important commands.
&lt;br&gt;&lt;br&gt;
Generally the most useful Condor commands are:
&lt;br&gt;&lt;br&gt;&lt;pre&gt;
   condor_submit -- submit jobs to the condor batch scheduler.&lt;br&gt;
   condor_status -- show overall cluster status.&lt;br&gt;
   condor_q      -- show current job queue and status of jobs.&lt;br&gt;
   condor_rm     -- remove jobs from the condor queue.&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;&lt;br&gt;

&lt;br&gt;&lt;br&gt;
&lt;b&gt;Job submission&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
For most compute jobs, you will need to create a condor submit description file (a ".cmd" file) and then run "condor_submit &lt;filename&gt;.cmd".
&lt;br&gt;&lt;br&gt;
An example .cmd file is listed below.   Other examples can be found in /opt/condor/examples, and the syntax for .cmd files is documented in the condor_submit man page.
&lt;br&gt;&lt;br&gt;
In the simplest cases, you can submit a job to condor by running "consub &lt;i&gt;filename&lt;/i&gt;".  This will work for a simple program that has no options, no input and output files (so if run locally, output would go to the screen).  consub will create a simple &lt;i&gt;filename&lt;/i&gt;.cmd file, copy the executable to a compute node and run the job, and then copy the output back to &lt;i&gt;filename&lt;/i&gt;.out.

&lt;br&gt;
&lt;br&gt;&lt;br&gt;

&lt;b&gt;File accessibility on the compute nodes&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
You can run jobs directly from your Unix home directory tree, and they will be accessible to the compute nodes.   
&lt;br&gt;&lt;br&gt;
If you need more space than currently allocated, request it from IT.  There is also a global scratch space available for users who are generating very large amounts of output (&gt; 100GB).
&lt;br&gt;&lt;br&gt;
It is possible to transfer files to the nodes, and then back to wren upon completion (should_transfer_files).  On dedicated compute clusters like ours this is generally not the desired method.
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Log files&lt;/b&gt;&lt;br&gt;&lt;br&gt;
The Condor log file should be written to /tmp, rather than to your home directory tree.   Any user can create a directory in /tmp.   Typically just create /tmp/&lt;username&gt; and use that as an output path for the "log" directive (see example below).&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;b&gt;Condor universe&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
You must specify a "universe" to run a condor job in.  For basic compute jobs written in any language, add a line to use the "vanilla" universe.  If you do not explicitly specify the universe, it will default to "standard" universe which will not work without special compile-time options.
&lt;br&gt;&lt;br&gt;

&lt;br&gt;&lt;br&gt;

&lt;b&gt;Example .cmd file&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
&lt;pre&gt;
    universe        = vanilla
    executable      = foo
    output          = foo.out
    error           = foo.err
    log             = /tmp/&lt;username&gt;/foo.log
    arguments       = 10 20 30
    queue
&lt;/pre&gt;
&lt;br&gt;
This command file should be called "foo.cmd" and placed in the same global scratch space subdirectory as the program "foo".  You will then type "condor_submit foo.cmd" to run this compute job.   Normal screen output will go to to "foo.out" and stderr will go to "foo.err".   The program expects three command-line
arguments which are "10", "20", and "30".
&lt;br&gt;&lt;br&gt;
&lt;b&gt;Note that the log file is placed in /tmp!  This is very important!&lt;/b&gt;   Log files written to NFS-mounted home or scratch directories will often break condor due to NFS locking problems.   So, once again, create a directory for yourself in /tmp, and write your log files there.&lt;br&gt;&lt;br&gt;
Any other input and output files generated by the program will be accessed normally, as long as the path is accessible to the program (normally, this means in your home or scratch directory).   
&lt;br&gt;
&lt;br&gt;&lt;br&gt;
In many cases you may also need to run jobs that won't work correctly without your login environment variables (such as PATH, LD_LIBRARY_PATH, or software-specific environment variables).  Since these won't be available by default on the compute nodes, you need to explicitly add them via the submit file using this line:&lt;br&gt;&lt;br&gt;
&lt;pre&gt;
     getenv = true
&lt;/pre&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;b&gt;Notification&lt;/b&gt;&lt;br&gt;&lt;br&gt;
The cluster will not normally notify you of job completion.   If you'd like notification, you should add one of the following lines depending on the level of notification you would like:&lt;br&gt;&lt;br&gt;
&lt;pre&gt;
    notification = error        
    notification = complete
    notification = always
&lt;/pre&gt;&lt;br&gt;&lt;br&gt;
The default email address for these notifications is the ISyE email address of the user submitting the jobs.  If you'd like mail sent to an alternate address, add the following line:&lt;br&gt;&lt;br&gt;
&lt;pre&gt;
    notify_user = my.email@domain.com
&lt;/pre&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;

           

&lt;b&gt;More on Condor&lt;/b&gt;
&lt;br&gt;&lt;br&gt;
For further documentation, please see the &lt;a href="http://www.cs.wisc.edu/condor/manual/v7.0"&gt;Condor User's Manual&lt;/a&gt;.

</description><link>http://www.isye.gatech.edu/kb/kb/article/95</link><pubDate>Fri, 26 Feb 2010 16:45:56 GMT</pubDate><guid isPermaLink="false">d8966ca9f87d3c31ed8652d4e0c3f5c9</guid></item><item><title>Using SecureCRT</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I need to use an SSH client to access an ISyE server. Do you have any suggestions? I heard SecureCRT is available at ISyE.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;Access to ISyE UNIX servers is available from anywhere in the world via the ssh2 protocol. There are free and commercial ssh clients available for most platforms (UNIX/Linux, Windows and Macintosh). SecureCRT is available on most all ISyE supported computers.&lt;/p&gt;

&lt;h2&gt;&lt;strong&gt;Using SecureCRT to connect to an ISyE UNIX server&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;There are many advanced options available with ssh, but to connect to an ISyE
  server (e.g. castle.isye.gatech.edu) for a simple interactive login, fill in
  the information as shown below. &lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/ssh1.gif" alt="SSH Quick Connect Screen"&gt;&lt;/p&gt;
&lt;p&gt;You may wish to save the session as "castle" or "ISyE" so you don't need to configure it each time you use the program. The first time you connect, the program will prompt you with 
this message: &lt;/p&gt;
&lt;p&gt; &lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/ssh2.gif" alt="Host Key screen"&gt;&lt;/p&gt;
&lt;p&gt;If you select  &lt;strong&gt;Accept &amp; Save&lt;/strong&gt;, you will not be prompted
  again. &lt;/p&gt;&lt;p class="note"&gt;&lt;strong&gt;NOTE:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;SecureCRT supports secure file transfers, 
from the windows command line which can be used as a substitute for FTP. See &lt;a  href="http://www.vandyke.com/products/securecrt/screenshots/screenshot5.html" target="_blank"&gt;SecureCRT-VCP File Transfer Utility&lt;/a&gt; for specific information on VCP.&lt;/p&gt;
&lt;p&gt;WinSCP can also be used for secure file transfers. See &lt;a  href="http://www2.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=37&amp;id=49" target="_blank"&gt;WinSCP&lt;/a&gt; for specific information on WinSCP.&lt;/p&gt;
&lt;p&gt;Georgia Tech Faculty &amp; Staff can download SecureCRT and WinSCP at &lt;a href="https://software.oit.gatech.edu/"&gt;https://software.oit.gatech.edu/&lt;/a&gt;.</description><link>http://www.isye.gatech.edu/kb/kb/article/44</link><pubDate>Wed, 27 Jan 2010 17:12:17 GMT</pubDate><guid isPermaLink="false">342238a14dd9d946b1de79f0776da767</guid></item><item><title>Vacation Message Activation</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I activate an "away from office" email auto-reply.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;To set an "out of office" message for your ISyE email address, it is now possible to do so yourself.
The following instructions provide a simple procedure for enabling and later disabling your message
&lt;/p&gt;

&lt;p&gt;Please think about the need for the message before activating such a service.
It is possible for a malicious individual who receives such a message to use
that information in a negative fashion.  It is, after all, notification that
you are on vacation and thus away from your home.  Though the incidents are
few, it is worth being aware of the possibility.&lt;/p&gt;

&lt;p&gt;To begin sending an "out of office" auto-reply message please follow these steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Browse to &lt;a href="https://mail.isye.gatech.edu/" target="_blank"&gt;https://mail.isye.gatech.edu/&lt;/a&gt; and log in using your ISyE account and password.&lt;/li&gt;
&lt;li&gt; Click the "Options" link along the top of the screen (between "Folders" and "Search").&lt;/li&gt;
&lt;li&gt; Click on "Manage Vacation, Forwarding and Filtering" in the bottom right.&lt;/li&gt;
&lt;li&gt; To begin your vacation message, check the box next to "Send auto-reply to sender?"&lt;/li&gt;
&lt;li&gt; Enter the subject that will be sent with your response under "Vacation subject".&lt;/li&gt;
&lt;li&gt; Enter the text of your vacation message beneath "Vacation message".&lt;/li&gt;
&lt;li&gt; Click the "Submit" button at the bottom of the page.&lt;/li&gt;
&lt;li&gt; Click the "Sign Out" link in the upper-right corner of the page.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When you are ready to stop automatically replying, please do the following:&lt;/p&gt;

&lt;ol&gt;  &lt;li&gt; Browse to &lt;a href="https://mail.isye.gatech.edu/" target="_blank"&gt;https://mail.isye.gatech.edu/&lt;/a&gt; and log in using your ISyE account and password.&lt;/li&gt;
   &lt;li&gt; Click the "Options" link along the top of the screen (between "Folders" and "Search").&lt;/li&gt;
   &lt;li&gt; Click on "Manage Vacation, Forwarding and Filtering" in the bottom right.&lt;/li&gt;
   &lt;li&gt; To stop sending your vacation message, un-check the box next to "Send auto-reply to sender?"
      Note that you may leave your subject and message in place for next time.&lt;/li&gt;
   &lt;li&gt; Click the "Submit" button at the bottom of the page.&lt;/li&gt;
   &lt;li&gt; Click the "Sign Out" link in the upper-right corner of the page.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That's it! If you have any questions or comments about this procedure, please send a note to
&lt;a href="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/a&gt; or contact any member of the IT staff.&lt;/p&gt;

</description><link>http://www.isye.gatech.edu/kb/kb/article/92</link><pubDate>Wed, 06 Jan 2010 21:55:47 GMT</pubDate><guid isPermaLink="false">6b0e0f53ac2445703ac2ca69708dc7a2</guid></item><item><title>Thunderbird 3 setup instructions</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I set up my new IMAP email account on a new or existing installation of Thunderbird 3.0?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h1&gt;Configuring Thunderbird 3.0&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;New Installation  &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1. Download thunderbird from &lt;a href="http://getthunderbird.com/"&gt;http://getthunderbird.com&lt;/A&gt;&lt;/p&gt;
&lt;P&gt;2. Install using all the default setup options. At the end of the install you will be able to launch Thunderbird.&lt;/P&gt;
&lt;P&gt;3. When Thunderbird starts, you will be presented with the Mail Account Setup window.  Enter your name, your ISyE Email and your ISyE password.&lt;BR&gt;&lt;BR&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird31.jpg" width="633" height="226" /&gt;
&lt;/p&gt;

&lt;p&gt;4. Thunderbird should autodetect the settings for ISyE mail servers as follows:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird32.jpg" width="635" height="342" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;5.  The Incoming setup is correct, but the outgoing setup is not, so click on the Manual Setup in the lower left corner of the window&lt;/p&gt;


&lt;p&gt;6. The Account Settings window will appear.  Click the &amp;quot;Outgoing Server (SMTP)&amp;quot; option at the bottom of the list on the left &lt;/P&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird33.jpg" width="591" height="572" /&gt;&lt;br /&gt;
&lt;/p&gt;
  7. When the Outgoing Server settings appear, click the Edit button on the right side.
&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird34.jpg" width="590" height="572" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;8. When the SMTP Server window appears, go to the &amp;quot;Connection Security&amp;quot; pulldown at the bottom and select &amp;quot;STARTTLS&amp;quot;&lt;br /&gt;
&lt;P&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird36.jpg" width="266" height="315" /&gt;&lt;/p&gt;
&lt;p&gt;9. Click OK in the SMTP Server Window. &lt;/p&gt;
&lt;p&gt;10. Click OK in the Account Settings window.&lt;/p&gt;
&lt;p&gt;11.Click OK in the Mail Account Setup window.&lt;/p&gt;
&lt;P&gt;Thunderbird should now successfully connect to the ISyE Mail servers and download your messages.&lt;/P&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/100</link><pubDate>Tue, 05 Jan 2010 18:18:13 GMT</pubDate><guid isPermaLink="false">5f1a1dd06e8415250898e622ef2c2d80</guid></item><item><title>Install lightning and Create ICS calendar</title><description>&lt;p&gt;Part I: Install Lightening Add-on in Thunderbird   &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Follow the instruction online by click the link below.  
http://www.mozilla.org/projects/calendar/lightning/download.html  
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Part II: Create ICS calendar in Thunderbird to sync with My Gatech Calendar  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open the calendar in Thunderbird.   &lt;/li&gt;
&lt;li&gt;Go to Calendar, click New Calendar to open the window.  &lt;/li&gt;
&lt;li&gt;Select on the Network and click Next  &lt;/li&gt;
&lt;li&gt;Select iCalendar (ICS). For the location, input https://mail.gatech.edu/home/&lt;username&gt;@mail.gatech.edu/Calendar&lt;br&gt;
  ( &lt;username&gt; is your GT Unix account. ) Then click Next.  &lt;/li&gt;
&lt;li&gt;Give a name to the calendar you created. Leave E-mail as none. Click Next.  &lt;/li&gt;
&lt;li&gt;You may be asked for the user name and password for your GT account.   &lt;/li&gt;
&lt;li&gt;Click finish.   &lt;/li&gt;
&lt;li&gt;After the calendar is created, right click it to open its properties setting. Uncheck Read Only property. &lt;/li&gt;
&lt;/ul&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/99</link><pubDate>Thu, 28 May 2009 18:11:04 GMT</pubDate><guid isPermaLink="false">e204cdd9bfa51fd7c36e59600bb99cb7</guid></item><item><title>Note PHD students only: Printing from a personal computer to ricphd</title><description>&lt;p&gt;There is no way to directly print to that printer from a personal machine, however you can print by:  &lt;/p&gt;

&lt;p&gt;Using winscp, (or similar scp application) copy the files you want to print from your computer to one of the&lt;br&gt;
ISyE unix computers, say castle.isye.gatech.edu  &lt;/p&gt;

&lt;p&gt;Then log into castle.isye.gatech.edu using SSH.  &lt;/p&gt;

&lt;p&gt;From the console type: lp -d ricphd "filename"  &lt;/p&gt;

&lt;p&gt;http://herald.isye.gatech.edu/helpdesk/index.php/kb/article/000009  &lt;/p&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/97</link><pubDate>Fri, 27 Mar 2009 14:57:40 GMT</pubDate><guid isPermaLink="false">c1c543ab27abb5374612e59dd2105c38</guid></item><item><title>Setting file permissions for web files</title><description>&lt;p&gt;Files must be made world readable to be accessible on the web.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From the command line:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;chmod a+r filename&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From Fugu on a Mac:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing Command-I on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Info button at the top of the window, or&lt;br /&gt;&#xD;
c) right clicking on the file and selecting &amp;quot;Get Info&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;Read&amp;quot; box is checked for the Owner, Group and Others, then click the Apply button.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From WinSCP on a PC:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt; Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing F9 on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Properties button at the bottom of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Properties&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;R&amp;quot; box is checked for the Owner, Group and Others, then click the OK button.&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&lt;p&gt;Directories need to be world readable and executable to be accessible on the web. The process is very similar to files:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From the command line:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;chmod a+rx filename&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From Fugu on a Mac:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing Command-I on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Info button at the top of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Get Info&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;Read&amp;quot; and &amp;quot;Execute&amp;quot; boxes are checked for the Owner, Group and Others, then click the Apply button.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From WinSCP on a PC:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt; Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing F9 on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Properties button at the bottom of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Properties&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;R&amp;quot; and &amp;quot;X&amp;quot; boxes are checked for the Owner, Group and Others, then click the OK button.&lt;/p&gt;&#xD;
</description><link>http://www.isye.gatech.edu/kb/kb/article/98</link><pubDate>Mon, 02 Feb 2009 19:04:16 GMT</pubDate><guid isPermaLink="false">b920938dae4d7a5e02e1bf4ce6a27869</guid></item><item><title>Using WinSCP</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
I need to use a secure client to access an ISyE server. Do you have any suggestions? I heard WinSCP is an alternative. &#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
&lt;h2&gt;What is WinSCP?&lt;/h2&gt;&#xD;
&lt;p&gt;WinSCP is a freeware SCP (Secure CoPy) client for Windows 95/98/NT/2000/XP/ME&#xD;
    using SSH (Secure SHell). Its main function is safe copying of files between&#xD;
    a local and a remote computer. Beyond this basic function, WinSCP manages&#xD;
    some other actions with files.&lt;p&gt;&#xD;
&#xD;
&lt;h2&gt;How do I use WinSCP to connect to an ISyE UNIX server?&lt;/h2&gt;&#xD;
&lt;p&gt;There are many advanced options available with WinSCP, but to connect to an&#xD;
    ISyE server(e.g. castle.isye.gatech.edu) for a simple interactive login, fill in the information as shown below.  Click Save if you'd like to save this connection for later use.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="/helpdesk/isyedata/images/winscp/winscp1.png"&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Verify the connection and choose Yes or No accordingly.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="/helpdesk/isyedata/images/winscp/winscp2.png"&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Once you enter the program, drag and drop files between your local computer&#xD;
and the remote machine.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="/helpdesk/isyedata/images/winscp/winscp3.png"&gt;&lt;/p&gt;&#xD;
&lt;p&gt;For more information or to download the software, please visit the WinSCP&#xD;
  Sourceforge area located at &lt;a href="http://winscp.sourceforge.net/eng/" target="_blank"&gt;http://winscp.sourceforge.net/eng/&lt;/a&gt;.&#xD;
  WinSCP can also be downloaded from the Georgia Tech &lt;a href="https://software.oit.gatech.edu/" target="_blank"&gt;OIT&#xD;
  Software Download page&lt;/a&gt;.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/kb/kb/article/48</link><pubDate>Wed, 21 May 2008 20:39:26 GMT</pubDate><guid isPermaLink="false">cce6b83d78d7f7e4c5134a46498ce1f1</guid></item><item><title>Editing your .profile.local to use TeX or LaTeX</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
I want to use TeX or LaTeX, but am told that I need to set a PATH in my UNIX local profile.
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;p&gt;If you don't want to use TeX (including LaTeX), then you're probably fine with the default UNIX account as it is. If you want to use TeX, you need to add a line to one of your configuration files. Specifically, the default account setup doesn't include the TeX directory in your path (the set of locations that are checked for programs).&lt;/p&gt;

&lt;p&gt;To remedy this, add the following line to the file called &lt;span class="response"&gt;.profile.local&lt;/span&gt; in your home directory:&lt;br&gt;&lt;br&gt;&lt;code&gt;PATH=$PATH:/usr/local/teTeX/bin/sparc-sun-solaris2.8&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;For more information on using configuration files like &lt;span class="response"&gt;.profile.local&lt;/span&gt;, try one of the tutorials linked to from the article on &lt;a href="http://herald.isye.gatech.edu/helpdesk/index.php/kb/article/000046"&gt;Feeling Comfortable with the Command Line&lt;/a&gt;.&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/kb/kb/article/53</link><pubDate>Thu, 01 May 2008 20:34:59 GMT</pubDate><guid isPermaLink="false">c8aebaa0737bc96a85f8ba864db0d39f</guid></item><item><title>Outlook 2003 Setup Instructions for the New IMAP Accounts</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
How do I set up my new IMAP email account on a new or existing installation of Outlook 2003?&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
&lt;h1&gt;Configuring Outlook 2003&lt;/h1&gt;&#xD;
&lt;p&gt;&lt;strong&gt;New installation &lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;1. Start up Outlook 2003 and when the outlook 2003 startup wizard appears click Next&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/1 outlook-start.jpg" width="725" height="569" /&gt; &lt;/p&gt;&#xD;
&lt;p&gt;2. When asked about configuring an email account, select Yes and click next&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/2 outlook.jpg" width="575" height="442" /&gt; &lt;/p&gt;&#xD;
&lt;p&gt;3. For the Server Type select IMAP and click Next&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/3 outlook.jpg" width="575" height="442" /&gt; &lt;/p&gt;&#xD;
&lt;p&gt;4. Enter your full name as "Your Name".&lt;br /&gt;&#xD;
5. Enter your Email Address (such as "&lt;a href="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/a&gt;".&lt;br /&gt;&#xD;
6. Set the Incoming mail server (IMAP) to  "imap.isye.gatech.edu".&lt;br /&gt;&#xD;
7. Set the Outgoing mail server (SMTP) to  "mail.isye.gatech.edu"&lt;br /&gt;&#xD;
8. Enter your ISyE account name for the User Name  (for example, "allen".)&lt;br /&gt;&#xD;
9.  Enter  your ISyE account password.&lt;br /&gt;&#xD;
10.  It is recommended  that you uncheck "Remember password".&lt;br /&gt;&#xD;
11.  Make  sure that "Log on using Secure Password Authentication (SPA)" is not checked.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/4 outlook.jpg" width="575" height="442" /&gt;&lt;/p&gt;&#xD;
&lt;p&gt;12. Click the More Settings button&lt;br /&gt;&#xD;
13. Click the "Outgoing Server" tab.&lt;br /&gt;&#xD;
14. Check  "My outgoing server (SMTP) requires authentication."&lt;br /&gt;&#xD;
15. Ensure  that "Use same settings as my incoming mail server" is selected.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/5 outlook.jpg" width="367" height="443" /&gt; &lt;/p&gt;&#xD;
&lt;p&gt;16. Click the "Advanced" tab.&lt;br /&gt;&#xD;
17. Beneath  "Incoming server (IMAP)", check the box for "This server requires an encrypted  connection (SSL)". &lt;br /&gt;&#xD;
18. Do not check the  second box beneath "Outgoing server (SMTP)". &lt;/p&gt;&#xD;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/newimap/outlook2003/6 outlook.jpg" width="367" height="443" alt="" /&gt;&lt;/p&gt;&#xD;
&lt;p&gt;19. Click  "OK".&lt;br /&gt;&#xD;
20. Click  "Next".&lt;br /&gt;&#xD;
21. Click  "Finish".&lt;/p&gt;&#xD;
</description><link>http://www.isye.gatech.edu/kb/kb/article/82</link><pubDate>Thu, 01 May 2008 20:13:29 GMT</pubDate><guid isPermaLink="false">55624db9c2a7355b9eb473b8de5074df</guid></item></channel></rss>

