<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://ark.lparchaeology.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=92.234.27.85</id>
		<title>ARK - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://ark.lparchaeology.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=92.234.27.85"/>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php/Special:Contributions/92.234.27.85"/>
		<updated>2026-06-10T18:31:35Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.1</generator>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Settings.php&amp;diff=643</id>
		<title>Settings.php</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Settings.php&amp;diff=643"/>
				<updated>2008-11-14T15:16:13Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* Server Specific Information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the main settings file for each instance of ARK. The file is divide into sections as set out below&lt;br /&gt;
&lt;br /&gt;
===Server Setup===&lt;br /&gt;
The server setup being used.  Currently ARK is configured for Mapserver 4 Windows (ms4w), Mac, and Linux servers.  Set the server type and include the [[env_settings.php]] file using:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$server=&amp;quot;ms4w&amp;quot;;&lt;br /&gt;
// Include settings related to your server environment (this also uses the server specified above)&lt;br /&gt;
include(&amp;#039;env_settings.php&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Server Specific Information====&lt;br /&gt;
You will need to edit the following depending on your specific server information.  Edit the information under the type of server you are using.  Basic settings for each server are included below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
switch($server){&lt;br /&gt;
	&lt;br /&gt;
	case ms4w:&lt;br /&gt;
		// The folder name of THIS instance of Ark (relative to the document root of the host in which it is hosted)&lt;br /&gt;
		$ark_dir = &amp;#039;/ark/&amp;#039;;&lt;br /&gt;
		// The mysql db name of this instance of ark&lt;br /&gt;
		$ark_db = &amp;#039;ark&amp;#039;;&lt;br /&gt;
		// The mysqlserver&lt;br /&gt;
		$sql_server = &amp;#039;localhost&amp;#039;;&lt;br /&gt;
		// The mysql user who will make all the db calls&lt;br /&gt;
		$sql_user = &amp;#039;usr&amp;#039;;&lt;br /&gt;
		// The mysql user&amp;#039;s password&lt;br /&gt;
		$sql_pwd = &amp;#039;psw&amp;#039;;&lt;br /&gt;
		// EXPORT&lt;br /&gt;
 		$export_dir = $ark_dir.&amp;#039;data/tmp/&amp;#039;;&lt;br /&gt;
		// FILE specific&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		$registered_files_dir = $doc_root. $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		// Browser option: default is $ark_dir . &amp;#039;data/files/&lt;br /&gt;
		// If the registered files directory is outside the main server directory then you need to setup an alias in httdp.conf&lt;br /&gt;
		$registered_files_host = $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Top directory of the file browser - can only search relative to this directory. &lt;br /&gt;
		$default_upload_dir = &amp;#039;C:/&amp;#039;;&lt;br /&gt;
	break;&lt;br /&gt;
	case mac:&lt;br /&gt;
		// The folder name of THIS instance of Ark (relative to the document root of the host in which it is hosted)&lt;br /&gt;
		$ark_dir = &amp;#039;/ark/&amp;#039;;&lt;br /&gt;
		// The mysql db name of this instance of ark&lt;br /&gt;
		$ark_db = &amp;#039;ark&amp;#039;;&lt;br /&gt;
		// The mysqlserver&lt;br /&gt;
		$sql_server = &amp;#039;127.0.0.1&amp;#039;;&lt;br /&gt;
		// The mysql user who will make all the db calls&lt;br /&gt;
		$sql_user = &amp;#039;usr&amp;#039;;&lt;br /&gt;
		// The mysql user&amp;#039;s password&lt;br /&gt;
		$sql_pwd = &amp;#039;pws&amp;#039;;&lt;br /&gt;
		// EXPORT&lt;br /&gt;
 		$export_dir = $ark_dir.&amp;#039;data/tmp/&amp;#039;;&lt;br /&gt;
		// FILE specific&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		$registered_files_dir = $doc_root. $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		// Browser option: default is $ark_dir . &amp;#039;data/files/&lt;br /&gt;
		// If the registered files directory is outside the main server directory then you need to setup an alias in httdp.conf&lt;br /&gt;
		$registered_files_host = $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Top directory of the file browser - can only search relative to this directory. &lt;br /&gt;
		$default_upload_dir = &amp;#039;\srv&amp;#039;;&lt;br /&gt;
&lt;br /&gt;
	break;&lt;br /&gt;
	case linux:&lt;br /&gt;
		// The folder name of THIS instance of Ark (relative to the document root of the host in which it is hosted)&lt;br /&gt;
		$ark_dir = &amp;#039;/ark/&amp;#039;;&lt;br /&gt;
		// The mysql db name of this instance of ark&lt;br /&gt;
		$ark_db = &amp;#039;ark&amp;#039;;&lt;br /&gt;
		// The mysqlserver&lt;br /&gt;
		$sql_server = &amp;#039;localhost&amp;#039;;&lt;br /&gt;
		// The mysql user who will make all the db calls&lt;br /&gt;
		$sql_user = &amp;#039;usr&amp;#039;;&lt;br /&gt;
		// The mysql user&amp;#039;s password&lt;br /&gt;
		$sql_pwd = &amp;#039;pwd&amp;#039;;&lt;br /&gt;
		// EXPORT&lt;br /&gt;
 		$export_dir = $ark_dir.&amp;#039;data/tmp/&amp;#039;;&lt;br /&gt;
		// FILE specific&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		$registered_files_dir = $doc_root. $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Where the files are stored after they are registered (/ after last folder)&lt;br /&gt;
		// Browser option: default is $ark_dir . &amp;#039;data/files/&lt;br /&gt;
		// If the registered files directory is outside the main server directory then you need to setup an alias in httdp.conf&lt;br /&gt;
		$registered_files_host = $ark_dir . &amp;#039;data/files/&amp;#039;;&lt;br /&gt;
		// Top directory of the file browser - can only search relative to this directory. &lt;br /&gt;
		$default_upload_dir = &amp;#039;\srv&amp;#039;;&lt;br /&gt;
	break;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===General===&lt;br /&gt;
This contains general configuration for the ARK.&lt;br /&gt;
&lt;br /&gt;
====Minimiser====&lt;br /&gt;
Is the minimiser enabled?&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Set to TRUE if you want to use the minimising right hand navigation bar&lt;br /&gt;
$minimiser = TRUE;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====ARK Name====&lt;br /&gt;
The name of this instance of ARK&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// The Ark name&lt;br /&gt;
$ark_name = &amp;#039;Tutorial&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Live Search===&lt;br /&gt;
The controls for the live search function&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Live search controls &lt;br /&gt;
/*&lt;br /&gt;
* live = live search &lt;br /&gt;
* dd = drop down menu&lt;br /&gt;
* plain = plain text search&lt;br /&gt;
*/&lt;br /&gt;
$mode = &amp;quot;live&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also the controls for live search for XMI&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Live search controls for xmi&lt;br /&gt;
/*&lt;br /&gt;
* live = live search - this should only be set to live if you are using the collapsing data entry&lt;br /&gt;
* dd = drop down menu&lt;br /&gt;
* plain = plain text search&lt;br /&gt;
*/&lt;br /&gt;
$xmi_mode = &amp;quot;live&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Modules===&lt;br /&gt;
Configure the modules to be used in this ARK project:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// List the modules that need to be loaded in this ARK project&lt;br /&gt;
$loaded_modules = &lt;br /&gt;
    array(&lt;br /&gt;
	&amp;#039;abk&amp;#039;, // address book&lt;br /&gt;
        &amp;#039;cxt&amp;#039;, // contexts&lt;br /&gt;
        &amp;#039;pln&amp;#039;, // plans&lt;br /&gt;
	&amp;#039;smp&amp;#039;, // samples&lt;br /&gt;
        &amp;#039;spf&amp;#039;, // Special finds&lt;br /&gt;
        &amp;#039;sph&amp;#039;, // Site photos&lt;br /&gt;
        &lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also configure the modules to load mapping data:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Lists the modules to load maps for&lt;br /&gt;
$loaded_map_mods = &lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;cxt&amp;#039;, // context&lt;br /&gt;
	&amp;#039;smp&amp;#039;, // samples&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set the default item key for this ARK setup:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// The default item key for this instance of Ark - format: mod_cd&lt;br /&gt;
$default_itemkey = &amp;#039;cxt_cd&amp;#039;; // context&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set the DSN for this ARK (this should generally NOT need adjusting)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// DSN (this shouldn&amp;#039;t need adjusting)&lt;br /&gt;
$dsn = &amp;#039;mysql://&amp;#039;.$sql_user.&amp;#039;:&amp;#039;.$sql_pwd.&amp;#039;@&amp;#039;.$sql_server.&amp;#039;/&amp;#039;.$ark_db;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Security===&lt;br /&gt;
The security for ARK is handled by LiveUser.  The liveuser configuration is as follows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Liveuser: &lt;br /&gt;
// These are the names of the liveuser objects. They should be unique per ARK &lt;br /&gt;
// (to prevent cross ark hacking). They need to be called in the code as&lt;br /&gt;
// $$liveuser and $$liveuser_admin&lt;br /&gt;
$liveuser = $ark_name . &amp;#039;usr&amp;#039;;&lt;br /&gt;
$liveuser_admin = $ark_name . &amp;#039;usr&amp;#039; . &amp;#039;_admin&amp;#039;;&lt;br /&gt;
// The path to the login script (relative to the document root)&lt;br /&gt;
$loginScript = &amp;#039;index.php&amp;#039;;&lt;br /&gt;
// Anonymous Logins&lt;br /&gt;
// If these variables are set then you are allowing anonymous logins&lt;br /&gt;
// This is a security risk! Its best to leave these statements commented out.&lt;br /&gt;
// Bear in mind that this does not need to be a real user.&lt;br /&gt;
$anonymous_login[&amp;#039;username&amp;#039;] = &amp;#039;anon&amp;#039;;&lt;br /&gt;
$anonymous_login[&amp;#039;password&amp;#039;] = &amp;#039;anon&amp;#039;;&lt;br /&gt;
// Method used in forms:&lt;br /&gt;
// get = form messages sent via get method - vissible in browser bar.&lt;br /&gt;
// post = form message sent via post method - invisible to the user.&lt;br /&gt;
$form_method = &amp;#039;get&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Skin===&lt;br /&gt;
Sets the skin name and skin path for this ARK project:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Skin name&lt;br /&gt;
$skin = &amp;#039;arkologik&amp;#039;;&lt;br /&gt;
// Skin path&lt;br /&gt;
$skin_path = &amp;quot;$ark_dir/skins/$skin&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Thumbnails===&lt;br /&gt;
Sets thumbnail sizes for ARK (this will be used when uploading files)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Optional&lt;br /&gt;
$thumbnail_sizes =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;arkthumb_width&amp;#039; =&amp;gt; 100,&lt;br /&gt;
        &amp;#039;arkthumb_height&amp;#039; =&amp;gt; 100,&lt;br /&gt;
        &amp;#039;webthumb_width&amp;#039; =&amp;gt; 500,&lt;br /&gt;
        &amp;#039;webthumb_height&amp;#039; =&amp;gt; 500&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Forms===&lt;br /&gt;
Set default year and site code for data entry and viewing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
//Default year as a setting for form data entry&lt;br /&gt;
$default_year = &amp;#039;2008&amp;#039;;&lt;br /&gt;
//Default site code&lt;br /&gt;
$default_site_cd = &amp;#039;PCO06&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Viewers===&lt;br /&gt;
Configure the viewers to display a set number of rows:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Number of rows to display on the data viewer&lt;br /&gt;
$conf_viewer_rows = 25;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also configure the index pages for Micro View, Data View, and Search pages:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Default Micro viewer page (used by search result handlers)&lt;br /&gt;
$conf_micro_viewer = $ark_dir.&amp;quot;micro_view.php&amp;quot;;&lt;br /&gt;
// Default data viewer page&lt;br /&gt;
$conf_data_viewer = $ark_dir.&amp;quot;data_view.php&amp;quot;;&lt;br /&gt;
// Default search page - search funtions will send data thru to this page&lt;br /&gt;
$conf_search_viewer = $ark_dir.&amp;quot;data_view.php&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set the default for search results display:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Default $output_mode for the data viewer&lt;br /&gt;
$default_output_mode = &amp;#039;tbl&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Mapping===&lt;br /&gt;
Set the basic configuration for mapping functions (map directory, temp directory, etc):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Path to temp directory (server)&lt;br /&gt;
$ark_maptemp_dir = &amp;#039;C:/ms4w/Apache/htdocs/&amp;#039;.$ark_dir.&amp;#039;mapserver/tmp/&amp;#039;;&lt;br /&gt;
// Path to temp directory (web)&lt;br /&gt;
$ark_web_maptemp_dir = &amp;#039;mapserver/tmp/&amp;#039;;&lt;br /&gt;
// Path to WMS mapfile (server)&lt;br /&gt;
$ark_wms_map = &amp;#039;C:/ms4w/Apache/htdocs/&amp;#039;.$ark_dir.&amp;#039;mapserver/mapfiles/ark_wms.map&amp;#039;;&lt;br /&gt;
// Path to WFS mapfile (server)&lt;br /&gt;
$ark_wfs_map = &amp;#039;C:/ms4w/Apache/htdocs/&amp;#039;.$ark_dir.&amp;#039;mapserver/mapfiles/ark_wfs.map&amp;#039;;&lt;br /&gt;
// Map scales&lt;br /&gt;
$map_scales = &amp;#039;[1000,750,500,250,150,100,50,25,10]&amp;#039;;&lt;br /&gt;
// Tilecache_path - only set this if you have a tilecache setup on your server&lt;br /&gt;
//$tilecache_path = &amp;#039;/cgi-bin/tilecache.cgi?&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Configure the wms query layers:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/*$wms_qlayers = array (&lt;br /&gt;
	array(&lt;br /&gt;
		&amp;#039;name&amp;#039; =&amp;gt; &amp;#039;cxt_schm&amp;#039;,&lt;br /&gt;
		&amp;#039;geom&amp;#039; =&amp;gt; &amp;#039;pgn&amp;#039;&lt;br /&gt;
	),&lt;br /&gt;
	array(&lt;br /&gt;
		&amp;#039;name&amp;#039; =&amp;gt; &amp;#039;sfi_points&amp;#039;,&lt;br /&gt;
		&amp;#039;geom&amp;#039; =&amp;gt; &amp;#039;pt&amp;#039;&lt;br /&gt;
	),&lt;br /&gt;
);*/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set up the map projection and extents to suit the location of the ARK project:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Map projection (in form: &amp;quot;EPSG:4326&amp;quot;)&lt;br /&gt;
$map_projection = &amp;#039;EPSG:27700&amp;#039;;&lt;br /&gt;
// Map extents (in form: &amp;quot;1075,970,1115,1010&amp;quot;)&lt;br /&gt;
$map_extents = &amp;#039;533866, 180940,533963, 181000&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set the layer from WMS to be used in map view&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Maplayers from the WMS layer used in the map view&lt;br /&gt;
$mapview_layers = array (&amp;#039;contexts&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Logging===&lt;br /&gt;
Cofigures logging levels to record logging into database and changes to data.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
//Logging levels&lt;br /&gt;
$conf_log_add = &amp;#039;on&amp;#039;;&lt;br /&gt;
$conf_log_edt = &amp;#039;on&amp;#039;;&lt;br /&gt;
$conf_log_del = &amp;#039;on&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Search Engine===&lt;br /&gt;
Configures words to cut out of multi-string searches to streamline the search process and maximise results.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// words to cut out of multi string searches&lt;br /&gt;
$conf_non_search_words = array(&amp;#039;and&amp;#039;, &amp;#039;di&amp;#039;, &amp;#039;in&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Languages===&lt;br /&gt;
Configures the default language and other languages in use.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// The default lang&lt;br /&gt;
$default_lang = &amp;#039;en&amp;#039;;&lt;br /&gt;
// These are the languages in use (in order)&lt;br /&gt;
$conf_langs = array(&amp;#039;en&amp;#039;, &amp;#039;da&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Fields===&lt;br /&gt;
Used to include the [[field_settings.php]] file.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
include_once(&amp;#039;field_settings.php&amp;#039;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Document Type===&lt;br /&gt;
Configures the document type to use for web output&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$doctype = &amp;quot;html \n&lt;br /&gt;
     PUBLIC \&amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN\&amp;quot;\n&lt;br /&gt;
     \&amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\&amp;quot;&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Navigation===&lt;br /&gt;
====Navigation Links====&lt;br /&gt;
Configure to state what links will appear in the end of the navigation bar.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$conf_linklist =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;file&amp;#039; =&amp;gt; &amp;#039;index.php&amp;#039;,&lt;br /&gt;
        &amp;#039;vars&amp;#039; =&amp;gt; &amp;#039;logout=true&amp;#039;,&lt;br /&gt;
        &amp;#039;label&amp;#039; =&amp;gt; &amp;#039;logout&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Navigation Pages====&lt;br /&gt;
Unless listed in this array, all pages will appear in the main nav.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$conf_hide_pages =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;index.php&amp;#039;,&lt;br /&gt;
        &amp;#039;record_view.php&amp;#039;,&lt;br /&gt;
        &amp;#039;contact.php&amp;#039;,&lt;br /&gt;
        &amp;#039;about.php&amp;#039;,&lt;br /&gt;
        &amp;#039;search.php&amp;#039;,&lt;br /&gt;
        &amp;#039;folder.php&amp;#039;,&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Left Panel Configuration===&lt;br /&gt;
&lt;br /&gt;
====Left Panel- Data Entry====&lt;br /&gt;
Configures the left panel in the data entry pages, requires the following:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;view&amp;#039;&amp;#039;&amp;#039; - the view the link should point to (regist, detfrm, files or a custom view)&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;item_key&amp;#039;&amp;#039;&amp;#039; - itemkey to point to if any (cxt_cd, smp_cd)&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;href&amp;#039;&amp;#039;&amp;#039; - link to the output &lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;mknname&amp;#039;&amp;#039;&amp;#039; - mark-up nickname will search the markup table for this nickname and print the markup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=cxt_cd&amp;quot;, &lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regcxt&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=detfrm&amp;amp;amp;item_key=cxt_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;detcxt&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=pln_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regpln&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=sph_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regsph&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=abk_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regabk&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=smp_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regsmp&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=detfrm&amp;amp;amp;item_key=smp_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;detsmp&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=materi&amp;amp;amp;item_key=smp_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;matsmp&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=regist&amp;amp;amp;item_key=spf_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;regspf&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$data_entry_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?view=files&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;uplfile&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Left Panel- Micro View====&lt;br /&gt;
Configures the left panel in the micro view pages, requires the following:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;item_key&amp;#039;&amp;#039;&amp;#039; - itemkey to point to if any (cxt_cd, smp_cd)&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;href&amp;#039;&amp;#039;&amp;#039; - link to the output &lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;mknname&amp;#039;&amp;#039;&amp;#039; - mark-up nickname will search the markup table for this nickname and print the markup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$micro_view_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?item_key=cxt_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwcxt&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$micro_view_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?item_key=pln_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwpln&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$micro_view_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?item_key=smp_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwsmp&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$micro_view_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?item_key=spf_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwspf&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
$micro_view_left_panel[] = &lt;br /&gt;
array(&lt;br /&gt;
	&amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?item_key=sph_cd&amp;quot;, &lt;br /&gt;
	&amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwsph&amp;#039;&lt;br /&gt;
	);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Left Panel- Data View====&lt;br /&gt;
This configures the left panel for the data view pages and needs the following:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;href&amp;#039;&amp;#039;&amp;#039; - link to the output ({$_SERVER[&amp;#039;PHP_SELF&amp;#039;]} is on same page, $ark_dir/export.php is on export page)&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;output_mode&amp;#039;&amp;#039;&amp;#039; - output format for internal links&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;output&amp;#039;&amp;#039;&amp;#039; - is output format for external links&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;mknname&amp;#039;&amp;#039;&amp;#039; - mark-up nickname will search the markup table for this nickname and print the markup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$data_view_left_panel[] =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;$ark_dir/export.php?output=CSVExt&amp;quot;,&lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;expcsv&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
$data_view_left_panel[] =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;$ark_dir/export.php?output=XMLExt&amp;quot;,&lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;expxml&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
$data_view_left_panel[] =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?output_mode=tbl&amp;quot;,&lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwtbl&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
$data_view_left_panel[] =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;{$_SERVER[&amp;#039;PHP_SELF&amp;#039;]}?output_mode=chat&amp;quot;,&lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwchat&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Left Panel- User Home====&lt;br /&gt;
This configures the left-panel for the user home pages and needs the following fields:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;href&amp;#039;&amp;#039;&amp;#039; - link to the output &lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;mknname&amp;#039;&amp;#039;&amp;#039; - mark-up nickname will search the markup table for this nickname and print the markup&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$user_home_left_panel[] =&lt;br /&gt;
    array(&lt;br /&gt;
        &amp;#039;href&amp;#039; =&amp;gt; &amp;quot;data_view.php?vtok=1&amp;amp;amp;nname=All_Contexts&amp;amp;amp;ftype=key&amp;amp;amp;key=1&amp;amp;amp;ktype=all&amp;quot;,&lt;br /&gt;
        &amp;#039;mknname&amp;#039; =&amp;gt; &amp;#039;vwcxt&amp;#039;&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Administrator]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Env_settings.php&amp;diff=1014</id>
		<title>Env settings.php</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Env_settings.php&amp;diff=1014"/>
				<updated>2008-11-14T15:12:11Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* MS4W */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
This small file contains only settings relating to the specific server environment. This is specifically for the ends of multiple sever environments.  There are three settings which you need to think about: the document root of this virtual host, the path to the pear configuration, and the path to the ARK directory.&lt;br /&gt;
&lt;br /&gt;
The env_settings.php file will look different depending on your server setup.  An example of each is shown below.&lt;br /&gt;
&lt;br /&gt;
====MS4W====&lt;br /&gt;
&lt;br /&gt;
A ms4w (mapserver for windows) is appropriate for projects holding the ARK database on a Windows system (eg. a laptop, a Windows shuttle).  The env_settings.php for an ms4w installation of ARK should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
		// The document root of this virtual host (as set up in your apache conf)&lt;br /&gt;
		$doc_root = &amp;#039;C:\ms4w\Apache\htdocs&amp;#039;;&lt;br /&gt;
		// The path to the PEAR installation (windows has ; first)&lt;br /&gt;
		$pear_path = &amp;quot;;C:\ms4w\Apache\php\PEAR&amp;quot;;&lt;br /&gt;
		// The server path to the ark directory&lt;br /&gt;
		$ark_server_path = &amp;#039;C:\ms4w\Apache\htdocs\ark&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Mac====&lt;br /&gt;
&lt;br /&gt;
A Mac setup will differ from the above.  For projects holding the ARK database on a Mac system, the env_settings.php should look like this:&lt;br /&gt;
	&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
		// The document root of this virtual host (as set up in your apache conf)&lt;br /&gt;
		$doc_root = &amp;#039;/Applications/MAMP/htdocs&amp;#039;;&lt;br /&gt;
		// The path to the PEAR installation (unix has : first)&lt;br /&gt;
		$pear_path = &amp;#039;:/Applications/MAMP/htdocs/pear/&amp;#039;;&lt;br /&gt;
		// The server path to the ark directory&lt;br /&gt;
		$ark_server_path = &amp;#039;/Users/user1/Sites/ark/&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Linux====&lt;br /&gt;
When using a linux system, users will need to use the following env_settings.php configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
		// The document root of this virtual host (as set up in your apache conf)&lt;br /&gt;
		$doc_root = &amp;#039;/srv/www/docroot/&amp;#039;;&lt;br /&gt;
		// The path to the PEAR installation (unix has : first)&lt;br /&gt;
		$pear_path = &amp;#039;:/usr/share/php5/PEAR&amp;#039;;&lt;br /&gt;
		// The server path to the ark directory&lt;br /&gt;
		$ark_server_path = &amp;#039;/srv/www/htdocs/ark&amp;#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[category:Administrator]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=525</id>
		<title>Administrator Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=525"/>
				<updated>2008-11-14T06:55:06Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* mod_settings.pnp */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
The administrator manual is aimed at people who are downloading and installing ARK. If you are struggling with installation or administration, you should consider contacting the ARK team to buy a preconfigured ARK. This would help support the project and make a contribution towards the ongoing development of the project.&lt;br /&gt;
&lt;br /&gt;
===Key Concepts===&lt;br /&gt;
&lt;br /&gt;
====[[Navigation]]====&lt;br /&gt;
&lt;br /&gt;
Information about the navigation tools used within ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Basic Navigation|Basic Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Subform Navigation|Subform Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Views]]====&lt;br /&gt;
&lt;br /&gt;
The different &amp;#039;Views&amp;#039; of ARK.&lt;br /&gt;
&lt;br /&gt;
====[[Key Administration Concepts]]====&lt;br /&gt;
&lt;br /&gt;
An overview of the key administration concepts.&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Settings Files|Settings Files]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Forms Overview|Forms Overview]]=====&lt;br /&gt;
&lt;br /&gt;
===Installation and Setup===&lt;br /&gt;
&lt;br /&gt;
====[[Basic Installation]]====&lt;br /&gt;
&lt;br /&gt;
A description of the ARK installation process.&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Dependencies|Dependencies]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Installing ARK|Installing ARK]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Initial setup]]====&lt;br /&gt;
&lt;br /&gt;
Some things to consider when completing the initial setup of your ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#A Name|ARK Name]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What do you want to record?|What to record?]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What subforms do you want?|What Subforms?]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Database Tables]]====&lt;br /&gt;
&lt;br /&gt;
A list of the standard ARK tables, with a basic explanation for each.&lt;br /&gt;
&lt;br /&gt;
===ARK Customisation===&lt;br /&gt;
&lt;br /&gt;
This chapter will help the new ARK administrator who is comfortable with editing PHP configuration files through the setup of an ARK project. For a general overview of settings please see [[Key Administration Concepts#Settings Files|Settings Files]].&lt;br /&gt;
&lt;br /&gt;
====[[env_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of the env_settings.php file for three different operating systems.&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#ms4w|Mapserver for Windows]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#mac|Mac]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#linux|Linux]]=====&lt;br /&gt;
&lt;br /&gt;
====[[field_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure the field_settings.php file.&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Common/Obligatory Attributes|Obligatory Attributes]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Class Specific Settings|Class Specific Settings]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Event Fields|Event Fields]]=====&lt;br /&gt;
&lt;br /&gt;
====[[mod_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure module specific settings files.&lt;br /&gt;
&lt;br /&gt;
====[[settings.php]]====&lt;br /&gt;
&lt;br /&gt;
The general settings for ARK.&lt;br /&gt;
&lt;br /&gt;
====[[vd_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of information found within the vd_settings.php file.&lt;br /&gt;
&lt;br /&gt;
===Subforms===&lt;br /&gt;
&lt;br /&gt;
====[[Subforms Overview]]====&lt;br /&gt;
&lt;br /&gt;
A general overview of ARK Subforms and their configuration.&lt;br /&gt;
&lt;br /&gt;
=====[[Subforms Overview#Subform Reference|Subform Reference List]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Subform Requirements]]====&lt;br /&gt;
&lt;br /&gt;
The required fields for configuration of subforms.&lt;br /&gt;
&lt;br /&gt;
====[[Subform Options]]====&lt;br /&gt;
&lt;br /&gt;
Some optional subform fields.&lt;br /&gt;
&lt;br /&gt;
===Administration===&lt;br /&gt;
&lt;br /&gt;
====[[User Administration]]====&lt;br /&gt;
&lt;br /&gt;
Some tools for administering user accounts.&lt;br /&gt;
&lt;br /&gt;
====[[Address Book Administration]]====&lt;br /&gt;
&lt;br /&gt;
How to update the Address Book module.&lt;br /&gt;
&lt;br /&gt;
====[[Exporting data]]====&lt;br /&gt;
&lt;br /&gt;
====[[Importing Data]]====&lt;br /&gt;
&lt;br /&gt;
===Custom Configuration===&lt;br /&gt;
&lt;br /&gt;
The following are examples of custom configurations and may be specific to previous installations of ARK.  Only use these for reference if you are upgrading from development code prior to the v0.6 release.&lt;br /&gt;
&lt;br /&gt;
====[[Transcluding]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring file registration]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Mapping]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Export Functionality]]====&lt;br /&gt;
&lt;br /&gt;
[[category: Administrator]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=498</id>
		<title>Administrator Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=498"/>
				<updated>2008-11-14T06:51:37Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* ARK Customisation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
The administrator manual is aimed at people who are downloading and installing ARK. If you are struggling with installation or administration, you should consider contacting the ARK team to buy a preconfigured ARK. This would help support the project and make a contribution towards the ongoing development of the project.&lt;br /&gt;
&lt;br /&gt;
===Key Concepts===&lt;br /&gt;
&lt;br /&gt;
====[[Navigation]]====&lt;br /&gt;
&lt;br /&gt;
Information about the navigation tools used within ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Basic Navigation|Basic Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Subform Navigation|Subform Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Views]]====&lt;br /&gt;
&lt;br /&gt;
The different &amp;#039;Views&amp;#039; of ARK.&lt;br /&gt;
&lt;br /&gt;
====[[Key Administration Concepts]]====&lt;br /&gt;
&lt;br /&gt;
An overview of the key administration concepts.&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Settings Files|Settings Files]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Forms Overview|Forms Overview]]=====&lt;br /&gt;
&lt;br /&gt;
===Installation and Setup===&lt;br /&gt;
&lt;br /&gt;
====[[Basic Installation]]====&lt;br /&gt;
&lt;br /&gt;
A description of the ARK installation process.&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Dependencies|Dependencies]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Installing ARK|Installing ARK]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Initial setup]]====&lt;br /&gt;
&lt;br /&gt;
Some things to consider when completing the initial setup of your ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#A Name|ARK Name]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What do you want to record?|What to record?]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What subforms do you want?|What Subforms?]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Database Tables]]====&lt;br /&gt;
&lt;br /&gt;
A list of the standard ARK tables, with a basic explanation for each.&lt;br /&gt;
&lt;br /&gt;
===ARK Customisation===&lt;br /&gt;
&lt;br /&gt;
This chapter will help the new ARK administrator who is comfortable with editing PHP configuration files through the setup of an ARK project. For a general overview of settings please see [[Key Administration Concepts#Settings Files|Settings Files]].&lt;br /&gt;
&lt;br /&gt;
====[[env_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of the env_settings.php file for three different operating systems.&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#ms4w|Mapserver for Windows]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#mac|Mac]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#linux|Linux]]=====&lt;br /&gt;
&lt;br /&gt;
====[[field_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure the field_settings.php file.&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Common/Obligatory Attributes|Obligatory Attributes]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Class Specific Settings|Class Specific Settings]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Event Fields|Event Fields]]=====&lt;br /&gt;
&lt;br /&gt;
====[[mod_settings.pnp]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure module specific settings files.&lt;br /&gt;
&lt;br /&gt;
====[[settings.php]]====&lt;br /&gt;
&lt;br /&gt;
The general settings for ARK.&lt;br /&gt;
&lt;br /&gt;
====[[vd_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of information found within the vd_settings.php file.&lt;br /&gt;
&lt;br /&gt;
===Subforms===&lt;br /&gt;
&lt;br /&gt;
====[[Subforms Overview]]====&lt;br /&gt;
&lt;br /&gt;
A general overview of ARK Subforms and their configuration.&lt;br /&gt;
&lt;br /&gt;
=====[[Subforms Overview#Subform Reference|Subform Reference List]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Subform Requirements]]====&lt;br /&gt;
&lt;br /&gt;
The required fields for configuration of subforms.&lt;br /&gt;
&lt;br /&gt;
====[[Subform Options]]====&lt;br /&gt;
&lt;br /&gt;
Some optional subform fields.&lt;br /&gt;
&lt;br /&gt;
===Administration===&lt;br /&gt;
&lt;br /&gt;
====[[User Administration]]====&lt;br /&gt;
&lt;br /&gt;
Some tools for administering user accounts.&lt;br /&gt;
&lt;br /&gt;
====[[Address Book Administration]]====&lt;br /&gt;
&lt;br /&gt;
How to update the Address Book module.&lt;br /&gt;
&lt;br /&gt;
====[[Exporting data]]====&lt;br /&gt;
&lt;br /&gt;
====[[Importing Data]]====&lt;br /&gt;
&lt;br /&gt;
===Custom Configuration===&lt;br /&gt;
&lt;br /&gt;
The following are examples of custom configurations and may be specific to previous installations of ARK.  Only use these for reference if you are upgrading from development code prior to the v0.6 release.&lt;br /&gt;
&lt;br /&gt;
====[[Transcluding]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring file registration]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Mapping]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Export Functionality]]====&lt;br /&gt;
&lt;br /&gt;
[[category: Administrator]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=497</id>
		<title>Administrator Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Administrator_Manual&amp;diff=497"/>
				<updated>2008-11-14T06:50:59Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* ARK Customisation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
The administrator manual is aimed at people who are downloading and installing ARK. If you are struggling with installation or administration, you should consider contacting the ARK team to buy a preconfigured ARK. This would help support the project and make a contribution towards the ongoing development of the project.&lt;br /&gt;
&lt;br /&gt;
===Key Concepts===&lt;br /&gt;
&lt;br /&gt;
====[[Navigation]]====&lt;br /&gt;
&lt;br /&gt;
Information about the navigation tools used within ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Basic Navigation|Basic Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Navigation#Subform Navigation|Subform Navigation]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Views]]====&lt;br /&gt;
&lt;br /&gt;
The different &amp;#039;Views&amp;#039; of ARK.&lt;br /&gt;
&lt;br /&gt;
====[[Key Administration Concepts]]====&lt;br /&gt;
&lt;br /&gt;
An overview of the key administration concepts.&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Settings Files|Settings Files]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Key Administration Concepts#Forms Overview|Forms Overview]]=====&lt;br /&gt;
&lt;br /&gt;
===Installation and Setup===&lt;br /&gt;
&lt;br /&gt;
====[[Basic Installation]]====&lt;br /&gt;
&lt;br /&gt;
A description of the ARK installation process.&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Dependencies|Dependencies]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Basic Installation#Installing ARK|Installing ARK]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Initial setup]]====&lt;br /&gt;
&lt;br /&gt;
Some things to consider when completing the initial setup of your ARK.&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#A Name|ARK Name]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What do you want to record?|What to record?]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[Initial setup#What subforms do you want?|What Subforms?]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Database Tables]]====&lt;br /&gt;
&lt;br /&gt;
A list of the standard ARK tables, with a basic explanation for each.&lt;br /&gt;
&lt;br /&gt;
===ARK Customisation===&lt;br /&gt;
&lt;br /&gt;
This chapter will help the new ARK administrator who is comfortable with editing PHP configuration files through the setup of an ARK project. &lt;br /&gt;
&lt;br /&gt;
====[[env_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of the env_settings.php file for three different operating systems.&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#ms4w|Mapserver for Windows]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#mac|Mac]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[env_settings.php#linux|Linux]]=====&lt;br /&gt;
&lt;br /&gt;
====[[field_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure the field_settings.php file.&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Common/Obligatory Attributes|Obligatory Attributes]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Class Specific Settings|Class Specific Settings]]=====&lt;br /&gt;
&lt;br /&gt;
=====[[field_settings.php#Event Fields|Event Fields]]=====&lt;br /&gt;
&lt;br /&gt;
====[[mod_settings.pnp]]====&lt;br /&gt;
&lt;br /&gt;
Instructions on how to configure module specific settings files.&lt;br /&gt;
&lt;br /&gt;
====[[settings.php]]====&lt;br /&gt;
&lt;br /&gt;
The general settings for ARK.&lt;br /&gt;
&lt;br /&gt;
====[[vd_settings.php]]====&lt;br /&gt;
&lt;br /&gt;
A description of information found within the vd_settings.php file.&lt;br /&gt;
&lt;br /&gt;
===Subforms===&lt;br /&gt;
&lt;br /&gt;
====[[Subforms Overview]]====&lt;br /&gt;
&lt;br /&gt;
A general overview of ARK Subforms and their configuration.&lt;br /&gt;
&lt;br /&gt;
=====[[Subforms Overview#Subform Reference|Subform Reference List]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Subform Requirements]]====&lt;br /&gt;
&lt;br /&gt;
The required fields for configuration of subforms.&lt;br /&gt;
&lt;br /&gt;
====[[Subform Options]]====&lt;br /&gt;
&lt;br /&gt;
Some optional subform fields.&lt;br /&gt;
&lt;br /&gt;
===Administration===&lt;br /&gt;
&lt;br /&gt;
====[[User Administration]]====&lt;br /&gt;
&lt;br /&gt;
Some tools for administering user accounts.&lt;br /&gt;
&lt;br /&gt;
====[[Address Book Administration]]====&lt;br /&gt;
&lt;br /&gt;
How to update the Address Book module.&lt;br /&gt;
&lt;br /&gt;
====[[Exporting data]]====&lt;br /&gt;
&lt;br /&gt;
====[[Importing Data]]====&lt;br /&gt;
&lt;br /&gt;
===Custom Configuration===&lt;br /&gt;
&lt;br /&gt;
The following are examples of custom configurations and may be specific to previous installations of ARK.  Only use these for reference if you are upgrading from development code prior to the v0.6 release.&lt;br /&gt;
&lt;br /&gt;
====[[Transcluding]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring file registration]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Mapping]]====&lt;br /&gt;
&lt;br /&gt;
====[[Configuring the Export Functionality]]====&lt;br /&gt;
&lt;br /&gt;
[[category: Administrator]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_View&amp;diff=873</id>
		<title>Data View</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_View&amp;diff=873"/>
				<updated>2008-11-14T06:49:36Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* View Options */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
===Main Panel===&lt;br /&gt;
&lt;br /&gt;
[[image:dataview2.jpg|left|frame|The main panel of the data view, viewed as table]]&lt;br /&gt;
&lt;br /&gt;
The main panel of the data view page holds the results of searches and is used for manipulating large collections of data.  Using the [[Data View#Search Filters|Search Filters]] a set of data can be obtained.  The main panel lists the total number of search results, and allows paging through search results using the page numbers at the bottom of the main panel.  Data is displayed in the main panel according to [[Data View#View Options|View Options]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Search Filters===&lt;br /&gt;
&lt;br /&gt;
Search filters are used to create specialised data sets in the data view.  Before searching, be sure to understand the different types of [[Data Class]] used in ARK.  It is essential to understand this terminology to make the most of the search filters.&lt;br /&gt;
&lt;br /&gt;
[[image:toolbox2.jpg|left|frame|The Data Toolbox and search functions.]]&lt;br /&gt;
&lt;br /&gt;
The main types of search are outlined below:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Free Text Search&amp;#039;&amp;#039;&amp;#039; - A search based on a text string.  The search filter looks in all text fields, and may return all types of record.  &lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Filter by Item&amp;#039;&amp;#039;&amp;#039; - A search filter for a specific type of record (egs. contexts, special finds, photos, files, etc).&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Filter by Attribute&amp;#039;&amp;#039;&amp;#039; - A search for a specific attribute of a record (egs. findtypes, period, etc).&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Filter by Site Code&amp;#039;&amp;#039;&amp;#039; - A filter for ARKs with multiple site codes, returns all records from the requested code.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Filter by Actor&amp;#039;&amp;#039;&amp;#039; - A search for a specific Actor, returns all records that are in some way attached to this actor.&lt;br /&gt;
&lt;br /&gt;
To complete a search, select the data class to be searched from the right-hand &amp;#039;Data Toolbox&amp;#039;.  Either enter the text string, or select the type or attribute from a dropdown list, and select &amp;#039;Search&amp;#039;.  You can narrow down your results by creating multiple filters until reaching the desired result.  For example, after searching for all Special Finds (Item--&amp;gt;Special Find), the search could be further refined by searching for the text &amp;#039;Gold&amp;#039; (Free Text--&amp;gt;&amp;#039;Gold&amp;#039;).  This would return a set of all Special Find records including the word &amp;#039;Gold&amp;#039;.  To save the search within your ARK profile, type in a nickname for the results set and hit &amp;#039;Save&amp;#039;.  &lt;br /&gt;
&lt;br /&gt;
The search function is likely to be restructured in future ARK releases to imrpove this process and include more complex searching options.&lt;br /&gt;
&lt;br /&gt;
===View Options===&lt;br /&gt;
&lt;br /&gt;
The data displayed in the data view main column can be shown in a number pre-configured ways.  These are shown in the left-hand panel.  &lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;View as Table:&amp;#039;&amp;#039;&amp;#039; Displays a table with basic information about each result.  The structure of the table will generally mirror the [[Data Entry#Data Entry Register|Data Entry Register]].  Please see your ARK administrator if you want to customise this view.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;View as Chat:&amp;#039;&amp;#039;&amp;#039;  Displays a short Google-style excerpt for each search result.  This generally includes the record number, a short text describing the record, and a score showing how relevant the record is to the search request.  Please see your ARK administrator if you want to customise this view.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;View as Map:&amp;#039;&amp;#039;&amp;#039;  Shows the user to a map view highlighting all the search results.  By hovering over a highlighted result on the map, the context number will appear in a dedicated window.  Clicking on this window you can link directly to a specific record.  When many results are present within a small area, they are clustered together.  By zooming in to a smaller scale, it is possible to make out individual results.&lt;br /&gt;
&lt;br /&gt;
===Export Data===&lt;br /&gt;
&lt;br /&gt;
To export a search result from the data view, simply select the &amp;#039;Export as CSV&amp;#039; option from the top of the Left-Panel.  This will prompt for you to download a CSV (Comma Separated Values) file.  This file can then be imported as a table into standard spreadsheet or database programmes (Excel, Open Office, Access, etc). &lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=323</id>
		<title>Navigation</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=323"/>
				<updated>2008-11-13T08:06:33Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
===ARK Navigation===&lt;br /&gt;
&lt;br /&gt;
[[image:nav2.jpg|left|frame|The ARK navigation]]&lt;br /&gt;
&lt;br /&gt;
All pages within ARK have the same basic navigation tools.  The basic areas are discussed below:&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Navigation Tabs:&amp;#039;&amp;#039;&amp;#039;  The navigation tabs run horizontally along the top of the page.  They are used to move through the basic pages of ARK (data entry, data view, micro view, map view).  Additional tabs are added for users with higher administrative privileges (import, export).&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Left Panel:&amp;#039;&amp;#039;&amp;#039;  The left panel holds options specific to a page.  For example, on the &amp;#039;Data Entry&amp;#039; page (selected using the &amp;#039;Navigation Tabs&amp;#039;) the left panel will contain a list of different data entry modules.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Main Panel:&amp;#039;&amp;#039;&amp;#039;  The main panel holds the main information for any given page.  This can be a series of data entry forms, a list of items, a map, etc and changes depending on the &amp;#039;Navigation Tabs&amp;#039; (as discussed above).&lt;br /&gt;
&lt;br /&gt;
Some pages, such as data entry, also have a right panel with additional navigation options.  These will be discussed in the relevant sections.&lt;br /&gt;
&lt;br /&gt;
===Subform Navigation===&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=325</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=325"/>
				<updated>2008-11-12T14:48:02Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
====[[Basic Navigation]]====&lt;br /&gt;
&lt;br /&gt;
====[[User Administration]]====&lt;br /&gt;
&lt;br /&gt;
====[[Data Entry]]====&lt;br /&gt;
&lt;br /&gt;
====[[Data View]]====&lt;br /&gt;
&lt;br /&gt;
====[[Micro View]]====&lt;br /&gt;
&lt;br /&gt;
====[[Map View]]====&lt;br /&gt;
&lt;br /&gt;
====[[Exporting data]]====&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
====Importing Data====&lt;br /&gt;
&lt;br /&gt;
====[[Transcluding]]====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Administration&amp;diff=415</id>
		<title>User Administration</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Administration&amp;diff=415"/>
				<updated>2008-11-12T14:44:08Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
===Adding Users===&lt;br /&gt;
&lt;br /&gt;
In order for team members become visible within Ark, a user account must first be created.  From the &amp;#039;Users&amp;#039; [[Basic Navigation|navigation tab]], select &amp;#039;Add User&amp;#039; from the left panel.  The system will ask for a number of bits of information.  When these have all been entered, select &amp;#039;Create User&amp;#039; to create and enable the user account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
All users are assigned a &amp;#039;&amp;#039;&amp;#039;username&amp;#039;&amp;#039;&amp;#039; according to their surname (family name) and their &lt;br /&gt;
initials in the form &amp;#039;&amp;#039;&amp;#039;&amp;#039;dufton_ad&amp;#039;&amp;#039;&amp;#039;&amp;#039;.  In cases where multiple team members share the same &lt;br /&gt;
initials an alternative set of initials will be used to avoid duplicates within the system.&lt;br /&gt;
&lt;br /&gt;
===Editing Users===&lt;br /&gt;
User information can be altered by using the &amp;#039;Edit User&amp;#039; command.  Basic information like firstname and lastname is changed by altering the text field.  To change the password, a new password must be entered and confirmed.  The username is created automatically through a combination of lastname and initials.  This cannot be changed after the user has been initially added.&lt;br /&gt;
&lt;br /&gt;
Beyond this basic information, users can also be assigned groups from the &amp;#039;Edit User&amp;#039; menu.  Users within the &amp;#039;Admin&amp;#039; group will have greater privileges within Ark such as creating or activating user accounts, checking context records, and the like.  Currently all users will be assigned to the &amp;#039;User&amp;#039; group as the &amp;#039;Admin&amp;#039; group has yet to be given special privileges.  This will be updated at a later date to allow for specific project administrators.&lt;br /&gt;
&lt;br /&gt;
Finally, accounts can be enabled/disabled from the &amp;#039;Edit User&amp;#039; menu.  Enabled accounts have full access to the Ark system.  Disabled accounts will not be able to log in or enter data.  It is important to understand that users created in the &amp;#039;Add User&amp;#039; option will not automatically be activated, and will not be able to access the system until their user account has been enabled.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=310</id>
		<title>Data Entry</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=310"/>
				<updated>2008-11-12T12:30:53Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Data Entry system of Ark is defined to mirror the paper record as closely as possible, making data entry and viewing highly intuitive. As such, users entering excavation or evaluation data should not require advanced training or user help guides to complete their task.&lt;br /&gt;
&lt;br /&gt;
Data entry for ALL modules in ARK follows a similar system.  All items must first be entered in a &amp;#039;Register&amp;#039;, this creates a basic entry for the item.  Many items (contexts, special finds, samples) will also have additional information beyond the simple register entry.  This information is entered on a specific &amp;#039;Sheet&amp;#039; for each item.  Some basic units will also require &amp;#039;Additional Custom Sheets&amp;#039; for other types of information, such as a pottery assemblage associated with a given context. &lt;br /&gt;
&lt;br /&gt;
The list of data entry pages available is found in the left-hand panel of the &amp;#039;Data Entry&amp;#039; tab.  This list is specific to each instance of ARK.&lt;br /&gt;
&lt;br /&gt;
==Data Entry Register==&lt;br /&gt;
&lt;br /&gt;
The first step of data entry is always to enter the item into the Register.  Detailed data entry sheets cannot be accessed before this step.  &amp;#039;&amp;#039;&amp;#039;Entering a record into the appropriate register is ALWAYS the first step of data entry&amp;#039;&amp;#039;&amp;#039;.  &lt;br /&gt;
&lt;br /&gt;
The entry process in the register is very straightforward.  Some of the common fields usually entered are outlined below:&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;itm_cd:&amp;#039;&amp;#039;&amp;#039;  The item code, to be entered manually.  This is usually in the form &amp;#039;SITECODE_#&amp;#039;.  The &amp;#039;Site Code&amp;#039; will be assigned above, so does not need to be entered again at this stage.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;type:&amp;#039;&amp;#039;&amp;#039;  Some items require a specific &amp;#039;type&amp;#039;, the most obvious example being different types of context (Cut, Fill, Masonry, etc)&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;definition/short description:&amp;#039;&amp;#039;&amp;#039;  Most registers will require a short sentence giving a general description of the item.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;issued to/taken by/drawn by/etc:&amp;#039;&amp;#039;&amp;#039;  Most registers have some information about who created the record in the field.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;issued on/taken on/drawn on/etc:&amp;#039;&amp;#039;&amp;#039;  The date the record was created, photo taken, plan drawn, etc.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;options:&amp;#039;&amp;#039;&amp;#039;  The [view] option links to the detailed view of the record.  The [enter] option links to the data entry sheet (see below).  The [q.ed] option allows a quick edit of the register entry.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;save:&amp;#039;&amp;#039;&amp;#039;  The save button saves all information in the register.  &lt;br /&gt;
&lt;br /&gt;
==Data Entry Sheet==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Additional Sheets==&lt;br /&gt;
&lt;br /&gt;
Additional sheets are often specific to a given project and the exact method of data entry depends on the information to be entered.  On the most basic level these sheets follow similar rules to the other data entry pages, and so a more detailed description of their functionality will not be provided.  Please see your project-specific ARK administrator for more information on the Additional Sheets for your project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=304</id>
		<title>Data Entry</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=304"/>
				<updated>2008-11-12T12:20:35Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Data Entry system of Ark is defined to mirror the paper record as closely as possible, making data entry and viewing highly intuitive. As such, users entering excavation or evaluation data should not require advanced training or user help guides to complete their task.&lt;br /&gt;
&lt;br /&gt;
Data entry for ALL modules in ARK follows a similar system.  All items must first be entered in a &amp;#039;Register&amp;#039;, this creates a basic entry for the item.  Many items (contexts, special finds, samples) will also have additional information beyond the simple register entry.  This information is entered on a specific &amp;#039;Sheet&amp;#039; for each item.  Some basic units will also require &amp;#039;Additional Custom Sheets&amp;#039; for other types of information, such as a pottery assemblage associated with a given context. &lt;br /&gt;
&lt;br /&gt;
The list of data entry pages available is found in the left-hand panel of the &amp;#039;Data Entry&amp;#039; tab.  This list is specific to each instance of ARK.&lt;br /&gt;
&lt;br /&gt;
==Data Entry Register==&lt;br /&gt;
&lt;br /&gt;
==Data Entry Sheet==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Additional Sheets==&lt;br /&gt;
&lt;br /&gt;
Additional sheets are often specific to a given project and the exact method of data entry depends on the information to be entered.  On the most basic level these sheets follow similar rules to the other data entry pages, and so a more detailed description of their functionality will not be provided.  Please see your project-specific ARK administrator for more information on the Additional Sheets for your project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=305</id>
		<title>Navigation</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=305"/>
				<updated>2008-11-12T12:17:46Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Navigation Tabs==&lt;br /&gt;
&lt;br /&gt;
==The Left Panel==&lt;br /&gt;
&lt;br /&gt;
==The Main Panel==&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=302</id>
		<title>Navigation</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Navigation&amp;diff=302"/>
				<updated>2008-11-12T12:15:43Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Navigation Tabs==&lt;br /&gt;
&lt;br /&gt;
==The Left Panel==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_View&amp;diff=340</id>
		<title>Data View</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_View&amp;diff=340"/>
				<updated>2008-11-12T12:14:54Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=312</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=312"/>
				<updated>2008-11-12T12:12:24Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
[[Basic Navigation]]&lt;br /&gt;
&lt;br /&gt;
[[User Administration]]&lt;br /&gt;
&lt;br /&gt;
[[Data Entry]]&lt;br /&gt;
&lt;br /&gt;
[[Data View]]&lt;br /&gt;
&lt;br /&gt;
[[Micro View]]&lt;br /&gt;
&lt;br /&gt;
[[Map View]]&lt;br /&gt;
&lt;br /&gt;
[[Exporting data]]&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
Importing Data&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=303</id>
		<title>Data Entry</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=303"/>
				<updated>2008-11-12T12:11:07Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Data entry for ALL modules in ARK follows a similar system.  All items must first be entered in a &amp;#039;Register&amp;#039;, this creates a basic entry for the item.  Many items (contexts, special finds, samples) will also have additional information beyond the simple register entry.  This information is entered on a specific &amp;#039;Sheet&amp;#039; for each item.  Some basic units will also require &amp;#039;Additional Custom Sheets&amp;#039; for other types of information, such as a pottery assemblage associated with a given context. &lt;br /&gt;
&lt;br /&gt;
The list of data entry pages available is found in the left-hand panel of the &amp;#039;Data Entry&amp;#039; tab.  This list is specific to each instance of ARK.&lt;br /&gt;
&lt;br /&gt;
==Data Entry Register==&lt;br /&gt;
&lt;br /&gt;
==Data Entry Sheet==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Additional Sheets==&lt;br /&gt;
&lt;br /&gt;
Additional sheets are often specific to a given project and the exact method of data entry depends on the information to be entered.  On the most basic level these sheets follow similar rules to the other data entry pages, and so a more detailed description of their functionality will not be provided.  Please see your project-specific ARK administrator for more information on the Additional Sheets for your project.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=300</id>
		<title>Data Entry</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=300"/>
				<updated>2008-11-12T12:09:52Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Data entry for ALL modules in ARK follows a similar system.  All items must first be entered in a &amp;#039;Register&amp;#039;, this creates a basic entry for the item.  Many items (contexts, special finds, samples) will also have additional information beyond the simple register entry.  This information is entered on a specific &amp;#039;Sheet&amp;#039; for each item.  Some basic units will also require &amp;#039;Additional Custom Sheets&amp;#039; for other types of information, such as a pottery assemblage associated with a given context. &lt;br /&gt;
&lt;br /&gt;
The list of data entry pages available is found in the left-hand panel of the &amp;#039;Data Entry&amp;#039; tab.  This list is specific to each instance of ARK.&lt;br /&gt;
&lt;br /&gt;
==Data Entry Register==&lt;br /&gt;
&lt;br /&gt;
==Data Entry Sheet==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Additional Sheets==&lt;br /&gt;
&lt;br /&gt;
Additional sheets are often specific to a given project and the exact method of data entry depends on the information to be entered.  On the most basic level these sheets follow similar rules to the other data entry pages, and so a more detailed description of their functionality will not be provided.  Please see your project-specific ARK administrator for more information on the Additional Sheets for your project.&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=299</id>
		<title>Data Entry</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Data_Entry&amp;diff=299"/>
				<updated>2008-11-12T11:50:19Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
==Register==&lt;br /&gt;
&lt;br /&gt;
==Sheet==&lt;br /&gt;
&lt;br /&gt;
==Additional Forms==&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=301</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=301"/>
				<updated>2008-11-12T11:44:23Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* Basic Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
[[User Administration]]&lt;br /&gt;
&lt;br /&gt;
[[Data Entry]]&lt;br /&gt;
&lt;br /&gt;
[[Data View]]&lt;br /&gt;
&lt;br /&gt;
[[Micro View]]&lt;br /&gt;
&lt;br /&gt;
[[Map View]]&lt;br /&gt;
&lt;br /&gt;
[[Exporting data]]&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
Importing Data&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=298</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=298"/>
				<updated>2008-11-12T11:24:31Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* Advanced Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
User Administration&lt;br /&gt;
&lt;br /&gt;
Data Entry&lt;br /&gt;
&lt;br /&gt;
Data View&lt;br /&gt;
&lt;br /&gt;
Micro View&lt;br /&gt;
&lt;br /&gt;
Map View&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
Importing Data&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=297</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=297"/>
				<updated>2008-11-12T11:24:17Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* Basic Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
User Administration&lt;br /&gt;
&lt;br /&gt;
Data Entry&lt;br /&gt;
&lt;br /&gt;
Data View&lt;br /&gt;
&lt;br /&gt;
Micro View&lt;br /&gt;
&lt;br /&gt;
Map View&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=296</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=296"/>
				<updated>2008-11-12T11:24:04Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: /* Basic Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
User Administration&lt;br /&gt;
&lt;br /&gt;
Data Entry&lt;br /&gt;
&lt;br /&gt;
Data View&lt;br /&gt;
&lt;br /&gt;
Micro View&lt;br /&gt;
&lt;br /&gt;
Map View&lt;br /&gt;
&lt;br /&gt;
Importing Data&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=295</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=295"/>
				<updated>2008-11-12T11:15:12Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about/overview about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
Adding data&lt;br /&gt;
&lt;br /&gt;
Editing data&lt;br /&gt;
&lt;br /&gt;
Manipulating data&lt;br /&gt;
&lt;br /&gt;
Viewing records&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=294</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=294"/>
				<updated>2008-11-12T11:14:05Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
===Basic Functions===&lt;br /&gt;
&lt;br /&gt;
Adding data&lt;br /&gt;
&lt;br /&gt;
Editing data&lt;br /&gt;
&lt;br /&gt;
Manipulating data&lt;br /&gt;
&lt;br /&gt;
Viewing records&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
===Advanced Functions===&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=Transcluding&amp;diff=471</id>
		<title>Transcluding</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=Transcluding&amp;diff=471"/>
				<updated>2008-11-12T11:11:57Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elements of ARK can be [http://en.wikipedia.org/wiki/Transclusion &amp;#039;transcluded&amp;#039;] - that is you can make a live query to your ARK and bring back the results of a [[Subform]]. &lt;br /&gt;
&lt;br /&gt;
What this means is that subforms of a particular [[item]] (e.g a context) can be included in any other webpage - for example if you are entering an online blog and you want to show the photos of the special find you recovered today - then you can just include them and they will show up just as they show up when viewing them in ARK. &lt;br /&gt;
&lt;br /&gt;
This starts getting very useful when you begin to think about a running site narrative, built within a webpage/blogging software/google documents. So when you are talking about the local matrix of a context - you can just transclude it straight into the document. Because this is running a live query against the database, you are getting the most up-to-date data and it will change as the original data is changed.&lt;br /&gt;
&lt;br /&gt;
Its very easy to transclude in ARK. All you need to do is ensure whatever application you are in (e.g. Mediawiki, Blogger, TextPattern, etc.) can read raw html and the include the following in your page:&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;pre&amp;gt;&amp;lt;object type=&amp;quot;text/html&amp;quot; data=&amp;quot;http://192.168.0.61:8080/ark/transclude_object.php?transclude=yes&lt;br /&gt;
  &amp;amp;sf_conf=conf_mcd_spat&lt;br /&gt;
  &amp;amp;sf_key=cxt_cd&lt;br /&gt;
  &amp;amp;sf_val=CH05SR_699&lt;br /&gt;
  &amp;amp;width=100%&lt;br /&gt;
  &amp;amp;height=100%&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;/object&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*The web address that you put in the data field should point at your own version of ARK.&lt;br /&gt;
*The sf_conf value is the name of the subform that you want to transclude - if you don&amp;#039;t know this then you should contact your administrator.&lt;br /&gt;
*The sf_key and sf_val are the itemkey and itemvalue of the item that you want to transclude. In this case we are transcluding the spatial subform for Context CH05SR_699.&lt;br /&gt;
&lt;br /&gt;
The results of this can be seen below:&lt;br /&gt;
&lt;br /&gt;
http://www.lparchaeology.com/prescot/journal/ark-and-the-art-of-tranclusion-mechanics&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:usermanual]][[Category:How-Tos]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	<entry>
		<id>https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=293</id>
		<title>User Manual</title>
		<link rel="alternate" type="text/html" href="https://ark.lparchaeology.com/wiki/index.php?title=User_Manual&amp;diff=293"/>
				<updated>2008-11-12T11:06:38Z</updated>
		
		<summary type="html">&lt;p&gt;92.234.27.85: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The end user documentation is intended for archaeologists who are using the system. This includes people doing data entry and project leaders who need to understand a  little bit about ARK in order to decide how to set up the fields they want.&lt;br /&gt;
&lt;br /&gt;
For a basic overview of the key ARK concepts take a look at the [[http://ark.lparchaeology.com/about about]] section of the ARK website.&lt;br /&gt;
&lt;br /&gt;
Adding data&lt;br /&gt;
&lt;br /&gt;
Editing data&lt;br /&gt;
&lt;br /&gt;
Manipulating data&lt;br /&gt;
&lt;br /&gt;
Viewing records&lt;br /&gt;
&lt;br /&gt;
Exporting data&lt;br /&gt;
&lt;br /&gt;
[[Transcluding]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category: Usermanual]]&lt;/div&gt;</summary>
		<author><name>92.234.27.85</name></author>	</entry>

	</feed>