<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Linglom.com</title> <atom:link href="http://www.linglom.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.linglom.com</link> <description>Source of IT knowledge</description> <lastBuildDate>Wed, 07 Dec 2011 14:03:35 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>How to Install Sample Databases (Northwind and Pubs) in SQL Server 2008 Express</title><link>http://www.linglom.com/2011/12/07/how-to-install-sample-databases-northwind-and-pubs-in-sql-server-2008-express/</link> <comments>http://www.linglom.com/2011/12/07/how-to-install-sample-databases-northwind-and-pubs-in-sql-server-2008-express/#comments</comments> <pubDate>Wed, 07 Dec 2011 14:03:35 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[MS SQL Server]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Sample Database]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1381</guid> <description><![CDATA[The databases, such Northwind and Pubs, are sample databases which are used for testing and developing on SQL Server. They are widely used in many sample source code and referenced by many tutorials. So if you are a developer or want to learn about SQL on SQL Server, these databases are needed to be installed [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2009/03/28/enable-remote-connection-on-sql-server-2008-express/' rel='bookmark' title='Enable Remote Connection on SQL Server 2008 Express'>Enable Remote Connection on SQL Server 2008 Express</a> <small>Introduction Last time, I wrote an article show how to...</small></li><li><a
href='http://www.linglom.com/2009/08/14/restore-database-from-sql-server-2008-to-sql-server-2005-part-2-generate-sql-server-scripts-wizard/' rel='bookmark' title='Restore Database From SQL Server 2008 to SQL Server 2005, Part 2: Generate SQL Server Scripts Wizard'>Restore Database From SQL Server 2008 to SQL Server 2005, Part 2: Generate SQL Server Scripts Wizard</a> <small>Generate SQL Server Scripts Wizard On Part 1: Introduction, I...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>The databases, such <strong>Northwind</strong> and <strong>Pubs</strong>, are sample databases which are used for testing and developing on SQL Server. They are widely used in many sample source code and referenced by many tutorials. So if you are a developer or want to learn about SQL on SQL Server, these databases are needed to be installed on your development PC.</p><p><span
id="more-1381"></span></p><p>This article shows how to install Northwind and Pubs databases on Microsoft SQL Server 2008 Express.<br
/></p><h3>Step-by-step</h3><ol><li>Browse to <a
href="http://archive.msdn.microsoft.com/northwind/Release/ProjectReleases.aspx?ReleaseId=1401" target="_blank" rel=nofollow">SQL Server 2000 Sample Databases</a> and click on <strong>SQL2000.Sample.Databases.(Northwind,pubs).zip</strong> to download the Northwind and Pubs databases. Once you clicked the file, there will be a pop-up displays license of this file. Click <strong>I Agree</strong> to download the file.<br
/> <em><strong>Note:</strong></em> This file contains sample databases that can be used on SQL Server 2000/2005/2008.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/1.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_1.png" width="200" height="162" alt="Download SQL Server 2000 Sample Databases" title="Download SQL Server 2000 Sample Databases"  /></a></li><li>Extract the zipped file, you will see files as the figure below. There are two methods to install these sample databases on SQL Server. The first method, run query on the SQL Server using <strong>instnwnd.sql</strong> and <strong>instpubs.sql</strong> for Northwind and Pubs databases respectively. The second method, attach database on SQL Server using <strong>NORTHWND.LDF</strong> and <strong>NORTHWND.MDF</strong> for Northwind database and <strong>PUBS.MDF</strong> and <strong>PUBS_LOG.MDF</strong> for Pubs database. On this article, I will show how to install Northwind and Pubs databases using the second method.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/2.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_2.png" width="200" height="141" alt="Sample Database Files" title="Sample Database Files"  /></a></li><li>Open Microsoft SQL Server Management Studio and connect to your SQL Server.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/3.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_3.png" width="200" height="152" alt="Connect to SQL Server" title="Connect to SQL Server"  /></a></li><li>Once the connection has been established, right-click on <strong>Databases</strong> and select <strong>Attach</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/4.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_4.png" width="200" height="191" alt="Attach Databases" title="Attach Databases"  /></a></li><li>On <strong>Attach Databases</strong>, click <strong>Add</strong> in Databases to attach section.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/5.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_5.png" width="200" height="180" alt="Add Databases to Attach" title="Add Databases to Attach"  /></a></li><li>On <strong>Locate Database File</strong>, browse to the folder where you extracted the downloaded file in step 2. Select a database file that you want to attach. I select <strong>NORTHWND.MDF</strong> which refers to Northwind database and click <strong>OK</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/6.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_6.png" width="200" height="280" alt="Locate Database File" title="Locate Database File"  /></a></li><li>You will see detail of Northwind database. The <strong>NORTHWND.LDF</strong> is automatically added in the details on section below (&#8220;Northwind&#8221; database details).<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/7.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_7.png" width="200" height="180" alt="Select Northwind database to attach" title="Select Northwind database to attach"  /></a></li><li>Repeat step 5 and 6 for Pubs database by attach <strong>PUBS.MDF</strong> file if you want to attach more than one database at the time. After you finish selecting databases that you want to attach, click <strong>OK</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/8.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_8.png" width="200" height="180" alt="Select Pubs database to attach" title="Select Pubs database to attach"  /></a></li><li>If there is no error, you will see the sample databases (Northwind and Pubs) list on the SQL Server as the figure below. Now you can use these sample databases as you want.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/9.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/Install-Sample-Databases/_9.png" width="200" height="169" alt="Attached Sample Database" title="Attached Sample Database"  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2009/03/28/enable-remote-connection-on-sql-server-2008-express/' rel='bookmark' title='Enable Remote Connection on SQL Server 2008 Express'>Enable Remote Connection on SQL Server 2008 Express</a> <small>Introduction Last time, I wrote an article show how to...</small></li><li><a
href='http://www.linglom.com/2009/08/14/restore-database-from-sql-server-2008-to-sql-server-2005-part-2-generate-sql-server-scripts-wizard/' rel='bookmark' title='Restore Database From SQL Server 2008 to SQL Server 2005, Part 2: Generate SQL Server Scripts Wizard'>Restore Database From SQL Server 2008 to SQL Server 2005, Part 2: Generate SQL Server Scripts Wizard</a> <small>Generate SQL Server Scripts Wizard On Part 1: Introduction, I...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/12/07/how-to-install-sample-databases-northwind-and-pubs-in-sql-server-2008-express/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>[Solved] Error 29506 when installing Microsoft SQL Server Manament Studio Express on Windows Vista or Windows Seven</title><link>http://www.linglom.com/2011/12/03/solved-error-29506-when-installing-microsoft-sql-server-manament-studio-express-on-windows-vista-or-windows-seven/</link> <comments>http://www.linglom.com/2011/12/03/solved-error-29506-when-installing-microsoft-sql-server-manament-studio-express-on-windows-vista-or-windows-seven/#comments</comments> <pubDate>Sat, 03 Dec 2011 14:54:47 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[MS SQL Server]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[SQL Server 2005]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1368</guid> <description><![CDATA[Note: This article is applied on installing Microsoft SQL Server Management Studio Express which is used for manage Microsoft SQL Server 2005 Express only. When you are installing Microsoft SQL Server Management Studio Express on Windows Vista or Windows 7, you may receive this error message: The installer has encountered an unexpected error installing this [...]
No related posts.]]></description> <content:encoded><![CDATA[<p><em><strong>Note: </strong></em>This article is applied on installing Microsoft SQL Server Management Studio Express which is used for manage Microsoft SQL Server 2005 Express only.</p><p><span
id="more-1368"></span></p><p>When you are installing <a
href="http://www.microsoft.com/download/en/details.aspx?id=8961" target="_blank" rel="nofollow">Microsoft SQL Server Management Studio Express</a> on Windows Vista or Windows 7, you may receive this error message:</p><p><em><strong>The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 29506.</strong></em><br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/1.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_1.png" width="200" height="152" alt="Error 29506" title="Error 29506"  /></a></p><p>This error message relates with permission issue (UAC) on Windows Vista and Windows 7. To solve this problem, you have to re-run the installer again using elevated command prompt by run the command prompt as administrator and execute the installer in there. If you are using 64-bit Windows, you should use the command prompt at C:\Windows\SysWOW64\cmd.exe instead. Otherwise, you can use the command prompt at C:\Windows\System32\cmd.exe. You will see the step-by-step guide to use elevated command prompt to execute the installer file on the section below.</p><p>The other solution, you can disable UAC on Windows but I don&#8217;t recommend it since it will lower your security system.</p><p></p><h3>Step-by-step</h3><ol><li>Run elevated command prompt by right-click on Command Prompt in <strong>Start</strong> -> <strong>All Programs</strong> -> <strong>Accessories</strong> -> <strong>Command Prompt</strong> and select <strong>Run as administrator</strong>.<br
/> <em><strong>Note:</strong></em> This step is for 32-bit Windows. If you are using 64-bit Windows, see the next step.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/2.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_2.png" width="200" height="167" alt="Open Command Prompt as Administrator" title="Open Command Prompt as Administrator"  /></a></li><li>If you are using 64-bit Windows, you have to run the command prompt in C:\Windows\SysWOW64. Right-click on cmd.exe and select <strong>Run as administrator</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/3.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_3.png" width="200" height="150" alt="Open Command Prompt as Administrator For 64-bit Windows" title="Open Command Prompt as Administrator For 64-bit Windows"  /></a></li><li>On <strong>User Account Control</strong>, click <strong>Yes</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/4.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_4.png" width="200" height="106" alt="User Account Control" title="User Account Control"  /></a></li><li>On Command Prompt (both 32-bit and 64-bit Windows), change path to directory where the installer file is and execute the file. By default, the file name for 32-bit version is <strong>SQLServer2005_SSMSEE.msi</strong> and 64-bit version is <strong>SQLServer2005_SSMSEE_x64.msi</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/5.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_5.png" width="200" height="101" alt="Execute the installer file" title="Execute the installer file"  /></a></li><li>On Setup Wizard, follow the instruction as usual. There won&#8217;t be the error message this time.<br
/> <a
href="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/6.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/SQL-Server/SQL-Server-Management-Studio-Express/Error-29506/_6.png" width="200" height="152" alt="Microsoft SQL Server Management Studio Express Setup" title="Microsoft SQL Server Management Studio Express Setup"  /></a></li></ol><p>No related posts.</p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/12/03/solved-error-29506-when-installing-microsoft-sql-server-manament-studio-express-on-windows-vista-or-windows-seven/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Backup and Restore database on MySQL using phpMyAdmin</title><link>http://www.linglom.com/2011/09/27/backup-and-restore-database-on-mysql-using-phpmyadmin/</link> <comments>http://www.linglom.com/2011/09/27/backup-and-restore-database-on-mysql-using-phpmyadmin/#comments</comments> <pubDate>Tue, 27 Sep 2011 02:44:54 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[Administration]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[phpMyAdmin]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1364</guid> <description><![CDATA[MySQL is one of the most popular DBMS and widely used by many websites as back-end database for storing content. And many people use phpMyAdmin to manage their databases on MySQL because of its friendly user interface, perform many tasks easily, etc. But one of the important thing that most people forgot to do is [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2008/01/12/how-to-backup-and-restore-database-on-microsoft-sql-server-2005/' rel='bookmark' title='How to backup and restore database on Microsoft SQL Server 2005'>How to backup and restore database on Microsoft SQL Server 2005</a> <small>Introduction This post will give you a brief introduction of...</small></li><li><a
href='http://www.linglom.com/2009/07/08/solved-system-data-sqlclient-sqlerror-the-backup-set-holds-a-backup-of-a-database-other-than-the-existing-dbname-database/' rel='bookmark' title='[Solved] System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing &#8216;dbName&#8217; database'>[Solved] System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing &#8216;dbName&#8217; database</a> <small>Problem You have backup a database on SQL Server 2005....</small></li></ol>]]></description> <content:encoded><![CDATA[<p>MySQL is one of the most popular DBMS and widely used by many websites as back-end database for storing content. And many people use phpMyAdmin to manage their databases on MySQL because of its friendly user interface, perform many tasks easily, etc. But one of the important thing that most people forgot to do is to backup databases. I heard many people have lost their content on websites because they didn&#8217;t backup their databases. When some incident happens to the server (for instance, power failure, hard disk broke, malicious attack, etc.), there may be a chance that your data is damaged. So it is wisely to backup your databases regularly and keep it in a secure place.</p><p><span
id="more-1364"></span></p><p>This article shows you how to backup and restore database on MySQL using phpMyAdmin. You can choose to backup/restore tables in a database or databases so I have separate steps into different sections as below.</p><p></p><p><a
name="top"></a></p><h3>Section</h3><ol><li><a
href="#1">Sample Database</a><br
/> If you want to learn by follow this article, you can download sample database from this section and follow article in restoration section first.</li><li><a
href="#2">Backup tables in a database</a></li><li><a
href="#3">Backup entire database(s)</a></li><li><a
href="#4">Restore tables to a database</a></li><li><a
href="#5">Restore entire database(s)</a></li></ol><h3>Step-by-step</h3><p><a
name="1"></a></p><h4>Sample Database</h4><ol><li>You can download sample database for MySQL at <a
rel="nofollow" href="http://dev.mysql.com/doc/index-other.html" target="_blank">http://dev.mysql.com/doc/index-other.html</a>. In this example, I use <strong>&#8220;world&#8221;</strong> database.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/1.png" target="_blank"><img
title="Download Sample Database for MySQL" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_1.png" alt="Download Sample Database for MySQL" width="200" height="142" /></a></li><li>There are 3 tables in world database as you see in the figure below.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/2.png" target="_blank"><img
title="MySQL's Sample Database - World" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_2.png" alt="MySQL's Sample Database - World" width="200" height="98" /></a></li></ol><p><a
href="#top">Back to top</a></p><p><a
name="2"></a></p><h4>Backup tables in a database</h4><p>This section shows how to backup tables in a database. You can select which tables that you want to backup or all of them.</p><ol><li>Select the database that you want to backup and click on <strong>Export</strong>. Notice I have selected <strong>&#8220;world&#8221;</strong> database on top (localhost -&gt; world).<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/3.png" target="_blank"><img
title="Export tables in the database" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_3.png" alt="Export tables in the database" width="200" height="97" /></a></li><li>On <strong>Export</strong> page, there are many configurations that you can customize for export. By default, all tables in the database are selected for export which you can see that they are all highlighted in export section (city, country, countrylanguage). Also, you can select which file type that you want, for example, SQL, CSV, Excel, etc. In this example, I use default configuration and scroll down to the bottom of the page. Next, click <strong>Go</strong> button on the right. This will export all tables in <strong>&#8220;world&#8221;</strong> database including its records (data).<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/4.png" target="_blank"><img
title="Configure option to export tables" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_4.png" alt="Configure option to export tables" width="200" height="214" /></a></li><li>The popup window appears. Select <strong>Save File</strong> and click <strong>OK</strong> and the exported file will be saved to your computer.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/5.png" target="_blank"><img
title="Save the exported file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_5.png" alt="Save the exported file" width="200" height="139" /></a></li><li>Now you have backup the selected tables in <strong>&#8220;world&#8221;</strong> database. Here is sample content of the exported file in SQL format.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/6.png" target="_blank"><img
title="Exported file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_6.png" alt="Exported file" width="200" height="200" /></a></li></ol><p><a
href="#top">Back to top</a></p><p><a
name="3"></a></p><h4>Backup entire database(s)</h4><p>The previous section backup only tables in a database. This section will shows how to backup entire database. You can select one or more databases for backup.</p><ol><li>On phpMyAdmin main&#8217;s page, click on <strong>Export</strong>. Notice that I haven&#8217;t select any database yet on top (localhost).<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/7.png" target="_blank"><img
title="Export databases" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_7.png" alt="Export databases" width="200" height="127" /></a></li><li>On <strong>Export</strong> page, there are many configurations that you can customize for export as similar to the previous section. In this example, select the database that you want to backup, <strong>&#8220;world&#8221;</strong> database. Next, scroll down to the bottom of the page and click <strong>Go</strong> button on the right.<br
/> <em><strong>Note: </strong></em>You can select more than one databases.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/8.png" target="_blank"><img
title="Export a database" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_8.png" alt="Export a database" width="200" height="230" /></a></li><li>The popup window appears. Select <strong>Save File</strong> and click <strong>OK</strong> and the exported file will be saved to your computer.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/9.png" target="_blank"><img
title="Save the exported file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_9.png" alt="Save the exported file" width="200" height="144" /></a></li><li>Now you have backup the selected database. Here is sample content of the exported file in SQL format.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/10.png" target="_blank"><img
title="Exported file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_10.png" alt="Exported file" width="200" height="200" /></a></li></ol><p><a
href="#top">Back to top</a></p><p><a
name="4"></a></p><h4>Restore tables to a database</h4><p>This section shows how to restore (import) tables from a backup file into a database. If you have an exported file which derived from section <a
href="#2">backup tables in a database</a>, you will have to create a database manually and select that database before follow steps below.</p><ol><li>Select the database that you want to restore tables to. In this example, I have a <strong>&#8220;world&#8221;</strong> database which is an empty database (no tables). Click on <strong>Import</strong>.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/11.png" target="_blank"><img
title="Blank Database" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_11.png" alt="Blank Database" width="200" height="69" /></a></li><li>On <strong>Import</strong> page, click <strong>Browse</strong> button and browse to the location where you keep the backup file. Then, click <strong>Go</strong> on the bottom right.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/12.png" target="_blank"><img
title="Select a backup file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_12.png" alt="Select a backup file" width="200" height="115" /></a></li><li>If there is no error while importing tables, you will see the green section display as figure below. Notice that the tables have been imported to the database on the left side.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/13.png" target="_blank"><img
title="Finished Import tables" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_13.png" alt="Finished Import tables" width="200" height="82" /></a></li></ol><p><a
href="#top">Back to top</a></p><p><a
name="5"></a></p><h4>Restore entire database(s)</h4><p>This section shows how to restore (import) database(s) from a backup file.</p><ol><li>On phpMyAdmin main&#8217;s page, click on <strong>Import</strong>. Notice that I haven&#8217;t select any database yet on top (localhost).<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/14.png" target="_blank"><img
title="Import database(s)" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_14.png" alt="Import database(s)" width="200" height="127" /></a></li><li>On <strong>Import</strong> page, click <strong>Browse</strong> button and browse to the location where you keep the backup file. Then, click <strong>Go</strong> on the bottom right.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/15.png" target="_blank"><img
title="Select a backup file" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_15.png" alt="Select a backup file" width="200" height="122" /></a></li><li>If there is no error while importing database(s), you will see the green section display as figure below. Notice that the database(s) have been imported to MySQL on the left side.<br
/> <a
href="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/16.png" target="_blank"><img
title="Finished Import database(s)" src="http://www.linglom.com/images/Administration/MySQL/Backup-Restore-Databases-using-phpMyAdmin/_16.png" alt="Finished Import database(s)" width="200" height="94" /></a></li></ol><p><a
href="#top">Back to top</a></p><p>Related posts:<ol><li><a
href='http://www.linglom.com/2008/01/12/how-to-backup-and-restore-database-on-microsoft-sql-server-2005/' rel='bookmark' title='How to backup and restore database on Microsoft SQL Server 2005'>How to backup and restore database on Microsoft SQL Server 2005</a> <small>Introduction This post will give you a brief introduction of...</small></li><li><a
href='http://www.linglom.com/2009/07/08/solved-system-data-sqlclient-sqlerror-the-backup-set-holds-a-backup-of-a-database-other-than-the-existing-dbname-database/' rel='bookmark' title='[Solved] System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing &#8216;dbName&#8217; database'>[Solved] System.Data.SqlClient.SqlError: The backup set holds a backup of a database other than the existing &#8216;dbName&#8217; database</a> <small>Problem You have backup a database on SQL Server 2005....</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/09/27/backup-and-restore-database-on-mysql-using-phpmyadmin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>An Issue of APC PowerChute Business and VMWare</title><link>http://www.linglom.com/2011/09/22/an-issue-of-apc-powerchute-business-and-vmware/</link> <comments>http://www.linglom.com/2011/09/22/an-issue-of-apc-powerchute-business-and-vmware/#comments</comments> <pubDate>Thu, 22 Sep 2011 08:51:46 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[Virtualization]]></category> <category><![CDATA[VMWare]]></category> <category><![CDATA[APC PowerChute]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1292</guid> <description><![CDATA[If you try to install the latest version of APC PowerChute Business Edition agent on the computer that has VMWare product installed (VMWare Server, VMWare Workstation), you will receive the following error message similar to this one: VMWare Server has been detected on this system. This version of PowerChute Business Edition does not support VMWare [...]
No related posts.]]></description> <content:encoded><![CDATA[<p>If you try to install the latest version of APC PowerChute Business Edition agent on the computer that has VMWare product installed (VMWare Server, VMWare Workstation), you will receive the following error message similar to this one:<br
/> <em><strong>VMWare Server has been detected on this system.<br
/> This version of PowerChute Business Edition does not support VMWare Server.</strong></em><br
/> <a
href="http:///www.linglom.com/images/virtualization/VMWare/APC-PowerChute-Business/1.png" target="_blank"><img
src="http:///www.linglom.com/images/virtualization/VMWare/APC-PowerChute-Business/_1.png" width="200" height="136" alt="This version of PowerChute Business Edition does not support VMWare Server" title="This version of PowerChute Business Edition does not support VMWare Server"  /></a></p><p><span
id="more-1292"></span></p><p>The workaround is to use to older version of APC PowerChute (8.0.0 or below). You can download APC PowerChute Business Edition version 8.0.0 at <a
href="http://www.linglom.com/downloads/pcbesetup.exe">here</a>. Or you can try to download from <a
href="ftp://restrict:Kop$74!@ftp.apcc.com/restricted/software/pcbe/800/windows/">ftp</a> at apcc.com .</p><p>No related posts.</p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/09/22/an-issue-of-apc-powerchute-business-and-vmware/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Enable cURL on XAMPP</title><link>http://www.linglom.com/2011/09/01/enable-curl-on-xampp/</link> <comments>http://www.linglom.com/2011/09/01/enable-curl-on-xampp/#comments</comments> <pubDate>Thu, 01 Sep 2011 08:53:15 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[cURL]]></category> <category><![CDATA[XAMPP]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1352</guid> <description><![CDATA[cURL is client-side URL transfer library which allows you to connect and communicate to many different types of servers with many different types of protocols. It supports http, https, ftp, gopher, telnet, dict, file, and ldap protocols. This article shows you how to enable cURL on XAMPP on Windows 7. Step-by-step Locate php.ini in xampp [...]
No related posts.]]></description> <content:encoded><![CDATA[<p>cURL is client-side URL transfer library which allows you to connect and communicate to many different types of servers with many different types of protocols. It supports http, https, ftp, gopher, telnet, dict, file, and ldap protocols.</p><p><span
id="more-1352"></span></p><p>This article shows you how to enable cURL on XAMPP on Windows 7.</p><p></p><h3>Step-by-step</h3><ol><li>Locate php.ini in xampp directory. By default, it locates in <strong>&#8220;xampp/php/php.ini&#8221;</strong>. Then, open the file with any text editor.<br
/> <a
href="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/1.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/_1.png" width="200" height="150" alt="Locate PHP.INI" title="Locate PHP.INI"  /></a></li><li>Uncomment the line below by remove the semi-colon at beginning of the line and save the file.<div
class="wp_syntax"><div
class="code"><pre class="text" style="font-family:monospace;">;extension=php_curl.dll</pre></div></div><p>to</p><div
class="wp_syntax"><div
class="code"><pre class="text" style="font-family:monospace;">extension=php_curl.dll</pre></div></div><p><a
href="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/2.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/_2.png" width="200" height="182" alt="Uncomment php_curl.dll" title="Uncomment php_curl.dll"  /></a></li><li>Next, restart apache service. You can do this through Windows services or using XAMPP Control Panel. Open <strong>XAMPP Control Panel</strong>, click on <strong>Stop</strong> button of the Apache service. Once it stops, click <strong>Start</strong> button.<br
/> <a
href="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/3.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/_3.png" width="200" height="160" alt="Restart Apache service" title="Restart Apache service"  /></a></li><li>Now cURL is enabled on XAMPP, you can test by create a PHP file with the code below and save to htdocs folder.<pre class="brush: php; title: ; notranslate">
 &lt;?php
  phpinfo();
?&gt;
</pre><p><a
href="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/4.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/_4.png" width="200" height="150" alt="phpinfo()" title="phpinfo()"  /></a></li><li>Open the browser and navigate to http://localhost/phpinfo.php. Scroll down to find curl section, you will see that it is already enabled. If you can&#8217;t find curl section, it means that cURL isn&#8217;t enable on the server.<br
/> <a
href="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/5.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Enable-cURL-on-XAMPP/_5.png" width="200" height="144" alt="cURL is enabled" title="cURL is enabled"  /></a></li></ol><p>No related posts.</p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/09/01/enable-curl-on-xampp/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to setup Apache web server using XAMPP on Windows</title><link>http://www.linglom.com/2011/08/16/how-to-setup-apache-web-server-using-xampp-on-windows/</link> <comments>http://www.linglom.com/2011/08/16/how-to-setup-apache-web-server-using-xampp-on-windows/#comments</comments> <pubDate>Tue, 16 Aug 2011 04:43:52 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Apache]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[XAMPP]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1336</guid> <description><![CDATA[If you are a PHP/MySQL developer or administrator who need to test configuration of Apache web server, you may want to setup local Apache web server to test your developed script or configuration before deploy to production environment. You can manually install and configure Apache, PHP and MySQL on your local computer. But it takes [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2007/02/01/how-to-set-up-apache-web-server-using-appserv/' rel='bookmark' title='How to set up Apache web server using AppServ'>How to set up Apache web server using AppServ</a> <small>What is web server? A web server is service that...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>If you are a PHP/MySQL developer or administrator who need to test configuration of Apache web server, you may want to setup local Apache web server to test your developed script or configuration before deploy to production environment. You can manually install and configure Apache, PHP and MySQL on your local computer. But it takes time and requires some skill to configure these applications. If you are looking for an easier solution, you may be interested in this article.</p><p><span
id="more-1336"></span></p><p>Few years ago, I wrote an article about how to setup Apache web server using AppServ. Now there are many software similar to AppServ so I decide to write a new fresh one. But instead of using the same software as the previous article, I will use <strong>XAMPP</strong> this time. XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. At the moment there are four XAMPP distributions: Windows, Linux, Mac OS and Solaris. See <a
href="http://www.apachefriends.org/en/xampp.html" target="_blank" rel="nofollow">XAMPP</a> for more information.</p><p>XAMPP is not meant for production use but only for developers in a development environment. XAMPP is configured is to be as open as possible and to allow the web developer anything he/she wants. For development environments this is great but in a production environment it could be fatal.<br
/> <em><strong>Reference:</strong></em> <a
href="http://www.apachefriends.org/en/xampp-windows.html#1221" target="_blank" rel="nofollow">XAMPP security console</a></p><p></p><p>This article will show you how to setup Apache web server with PHP/MySQL using XAMPP on Windows 7 (x64). The current version of XAMPP is 1.7.4. It comes with PHP 5.3.5 so if you don&#8217;t plan to use this PHP version, you should download the older version of XAMPP instead.</p><h3>Step-by-step</h3><ol><li>Download XAMPP for Windows. Browse to <a
href="http://www.apachefriends.org/en/xampp.html" target="_blank" rel="nofollow">www.apachefriends.org/en/xampp.html</a> and click <strong>XAMPP for Windows</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/1.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_1.png" width="200" height="142" alt="XAMPP for Windows" title="XAMPP for Windows"  /></a></li><li>Scroll down to Download section, there are 3 formats which you can choose to download. In this example, I select <strong>ZIP</strong> format.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/2.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_2.png" width="200" height="144" alt="Download XAMPP" title="Download XAMPP"  /></a></li><li>Unzip the file into the folder of your choice. If you extract XAMPP in a top level folder like &#8220;C:\&#8221; or &#8220;D:\&#8221;, you can skip to step 5. Otherwise, you have to run &#8220;setup_xampp.bat&#8221; in \xampp folder. In this example, I extract to C:\ so I can skip to step 5.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/3.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_3.png" width="200" height="150" alt="Unzip XAMPP" title="Unzip XAMPP"  /></a></li><li>Here is the screenshot of the execution of file <strong>setup_xampp.bat</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/4.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_4.png" width="200" height="101" alt="setup_xampp.bat" title="setup_xampp.bat"  /></a></li><li>Open XAMPP Control Panel by right-click on <strong>xampp-control.exe</strong> and select <strong>Run as administrator</strong>.<br
/> <strong><em>Note:</em></strong> If you&#8217;re using Windows XP, you just double-click on the file.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/5.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_5.png" width="200" height="150" alt="Open XAMPP Control Panel" title="Open XAMPP Control Panel"  /></a></li><li>On <strong>XAMPP Control Panel Application</strong>, select <strong>Svc</strong> checkbox of Apache and click <strong>OK</strong>. This will install Apache as a service on this computer.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/6.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_6.png" width="200" height="160" alt="Install Apache as service" title="Install Apache as service"  /></a></li><li>Click <strong>Start</strong> to start Apache web server.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/7.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_7.png" width="200" height="160" alt="Start Apache" title="Start Apache"  /></a></li><li>Repeat step 6-7 on MySQL. Now Apache and MySQL are installed as Windows services and already started.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/8.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_8.png" width="200" height="160" alt="Apache and MySQL services started" title="Apache and MySQL services started"  /></a></li><li>You can check if the services are really installed on the computer by click <strong>SCM</strong>.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/9.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_9.png" width="200" height="160" alt="Open Windows Services" title="Open Windows Services"  /></a></li><li>On <strong>Services</strong>, you will see Apache and MySQL services are started and startup type are set to <strong>Automatic</strong> which means that services will be started automatically when the computer starts.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/10.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_10.png" width="200" height="152" alt="Windows Services" title="Windows Services"  /></a></li><li>Now it&#8217;s time to test, browse to &#8220;http://localhost&#8221; or &#8220;http://127.0.0.1&#8243;. You will see the screen as below. This is XAMPP&#8217;s splash screen, select <strong>English</strong> language.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/11.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_11.png" width="200" height="144" alt="XAMPP Splash Screen" title="XAMPP Splash Screen"  /></a></li><li>Here is the XAMPP&#8217;s main page. You can view other pages using navigation menu on the left side. For example, XAMPP&#8217;s status to see which components are running, security page to view current security configuration of the XAMPP installation, etc.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/12.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_12.png" width="200" height="144" alt="XAMPP's Main Page" title="XAMPP's Main Page"  /></a></li><li>The main directory for all WWW documents is \xampp\htdocs. If you put a file &#8220;test.html&#8221; in this directory, you can access it with the URI &#8220;http://localhost/test.html&#8221;.<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/13.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_13.png" width="200" height="150" alt="" title=""  /></a></li><li>You can manage MySQL using phpMyAdmin by browse to &#8220;http://localhost/phpmyadmin&#8221; or you can select phpMyAdmin link on the XAMPP&#8217;s main page (in Tools section).<br
/> <em><strong>Note:</strong></em> By default, the root&#8217;s password is empty (blank password).<br
/> <a
href="http://www.linglom.com/images/Windows/Setup-XAMPP/14.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/Setup-XAMPP/_14.png" width="200" height="144" alt="" title=""  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2007/02/01/how-to-set-up-apache-web-server-using-appserv/' rel='bookmark' title='How to set up Apache web server using AppServ'>How to set up Apache web server using AppServ</a> <small>What is web server? A web server is service that...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/08/16/how-to-setup-apache-web-server-using-xampp-on-windows/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to Create Watermark Action in Photoshop</title><link>http://www.linglom.com/2011/06/07/how-to-create-watermark-action-in-photoshop/</link> <comments>http://www.linglom.com/2011/06/07/how-to-create-watermark-action-in-photoshop/#comments</comments> <pubDate>Tue, 07 Jun 2011 03:20:32 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[action]]></category> <category><![CDATA[watermark]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1325</guid> <description><![CDATA[If you want to protect your photos from copying without giving credit to you, the easiest way is to use watermark on photos by add some text or logo of yours to photos. But normally, you have many photos so watermarking each photo manually won&#8217;t be efficient. So what is the best way to add [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2007/03/25/create-watermark-on-photos-using-photoshop/' rel='bookmark' title='Create Watermark on photos using Photoshop'>Create Watermark on photos using Photoshop</a> <small>Introduction I&#8217;ve recently added Recent photo&#8217;s section on the sidebar...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>If you want to protect your photos from copying without giving credit to you, the easiest way is to use watermark on photos by add some text or logo of yours to photos. But normally, you have many photos so watermarking each photo manually won&#8217;t be efficient. So what is the best way to add watermark to photos? Record a watermark action is the answered. Once you have recorded an action which do watermark, you can replay it on many images as you want with a single click.</p><p><span
id="more-1325"></span></p><p>On this example, I show how to record an Photoshop action which will add a simple text and align it at bottom right on an image as watermark. I use Adobe Photoshop CS5.</p><p></p><h3>Step-by-step</h3><ol><li>Open an image that you want to add a watermark on Photoshop. This image will be used as an example image to create a watermark action.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/1.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_1.jpg" width="200" height="147" alt="Sample Image" title="Sample Image"  /></a></li><li>Open Actions Window by select <strong>Window</strong> -> <strong>Actions</strong> on the menu bar or you can press Alt + F9.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/2.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_2.jpg" width="200" height="89" alt="Open Action Palette" title="Open Action Palette"  /></a></li><li>On Action window, click on <strong>Create new Action</strong> icon. This will open New Action dialog box, enter the name for an action as <em>&#8220;watermark&#8221;</em> and you can also add a shortcut key for this action by change the value in <strong>Function Key</strong> as you want. Next, click <strong>Record</strong>.<br
/> <em><strong>Note:</strong></em> You can toggle hide/show the Action window by press ALT + F9.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/3.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_3.jpg" width="200" height="147" alt="Create New Action" title="Create New Action"  /></a></li><li>Next, add a watermark text on the image. On <strong>Tools</strong> menu, select <strong>Horizontal Type Tool (T)</strong> and click on anywhere on the image. Type the text as a watermark, usually something like <em>&#8220;? Yourcompany&#8221;</em> and set font family, size and style as you want. On this example, I use the text <em>&#8220;? Linglom.com&#8221;</em> with font family Tahoma, bold and size is 36 pixel as a sample. Then, click on <strong>Commit any current edits</strong> to apply changes.<br
/> <em><strong>Note:</strong></em> The copyright symbol (?) can be typed by hold ALT + 0169. Then, release the ALT button.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/4.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_4.jpg" width="200" height="147" alt="Add Copyright Text" title="Add Copyright Text"  /></a></li><li>Next, set align of the watermark text to bottom right of the image. On <strong>Tools</strong> menu, select <strong>Move Tool</strong> and select both layers, watermark text and image layer, by click on the first layer, hold CTRL and click on the second layer. Then, click on <strong>Align bottom edges</strong> and <strong>Align right edges</strong> icons. The watermark text will move to bottom right of image.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/5.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_5.jpg" width="200" height="147" alt="Align Watermark Text" title="Align Watermark Text"  /></a></li><li>You notice that the watermark text is too attached to edges of image. It would be nicer if you keep a little distance from edges. So use <strong>Zoom Tool</strong> to zoom to the watermark text, and select <strong>Move Tool</strong>. Click on the watermark layer and move it away from the edges as you want.<br
/> <em><strong>Note: </strong></em> To move the watermark text layer more precisely, you can use the directional arrow keys.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/6.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_6.jpg" width="200" height="147" alt="Adjust Watermark Text Position" title="Adjust Watermark Text Position"  /></a></li><li>Make watermark text more transparent by set opacity on the watermark text layer. Select the watermark text layer and set opacity to 30%. You can adjust this value as you want.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/7.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_7.jpg" width="200" height="79" alt="Set Opacity for Watermark Text" title="Set Opacity for Watermark Text"  /></a></li><li>(Optional) You can set blending option of the watermark text to make it looks better. Double-click on the watermark text layer. This will open Layer Style dialog box, check <strong>Stroke</strong>, set size to 1 pixel and change color to whilte (#FFFFFF). Click <strong>OK</strong>.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/8.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_8.jpg" width="200" height="147" alt="Add Blending Option - Stroke to Text" title="Add Blending Option - Stroke to Text"  /></a></li><li>On Action window, click <strong>Stop playing/recording</strong> icon to stop record this action.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/9.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_9.jpg" width="200" height="147" alt="Stop Record Action" title="Stop Record Action"  /></a></li><li>Now you have finished create an action that add a watermark on image. Let&#8217;s try to run the watermark action on another image. Open a new image, select on <em>&#8220;watermark&#8221;</em> action and click on <strong>Play</strong> button. If there isn&#8217;t any error, you should see the watermark at the bottom right of this image.<br
/> <a
href="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/10.jpg" target="_blank"><img
src="http://www.linglom.com/images/Photoshop/Create-Watermark-Action/_10.jpg" width="200" height="147" alt="Test Watermark Action" title="Test Watermark Action"  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2007/03/25/create-watermark-on-photos-using-photoshop/' rel='bookmark' title='Create Watermark on photos using Photoshop'>Create Watermark on photos using Photoshop</a> <small>Introduction I&#8217;ve recently added Recent photo&#8217;s section on the sidebar...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/06/07/how-to-create-watermark-action-in-photoshop/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>How to Install Windows 7 from USB Flash Drive</title><link>http://www.linglom.com/2011/03/21/how-to-install-windows-7-from-usb-flash-drive/</link> <comments>http://www.linglom.com/2011/03/21/how-to-install-windows-7-from-usb-flash-drive/#comments</comments> <pubDate>Mon, 21 Mar 2011 06:40:27 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[Windows]]></category> <category><![CDATA[USB]]></category> <category><![CDATA[Windows 7]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1311</guid> <description><![CDATA[On this article, you will see how to install Windows 7 from an USB Flash Drive. The benefit of using USB Flash Drive to install Windows 7 are: Faster than using DVD. It takes less time to install Windows 7. An USB Flash Drive is smaller than DVD. Hence, easier to carry and maintain. Can [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2011/03/15/how-to-boot-from-usb-flash-drive-on-vmware-workstation/' rel='bookmark' title='How to Boot from USB Flash Drive on VMWare Workstation'>How to Boot from USB Flash Drive on VMWare Workstation</a> <small>If you are using VMWare Workstation, you will notice that...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>On this article, you will see how to install Windows 7 from an USB Flash Drive. The benefit of using USB Flash Drive to install Windows 7 are:<span
id="more-1311"></span></p><ol><li>Faster than using DVD. It takes less time to install Windows 7.</li><li>An USB Flash Drive is smaller than DVD. Hence, easier to carry and maintain.</li><li>Can be installed on computer or laptop that doesn&#8217;t has DVD-ROM but has an USB port.</li></ol><p>To install Windows 7 from an USB Flash Drive, you need a Windows 7 installation DVD or image file (.iso). Next, make a bootable USB Flash Drive by using the Windows 7 image file and <strong>UNetbootin</strong>, which is a free software that allows you to create bootable Live USB drives. Then, you will get a bootable USB Flash Drive which you can use to install Windows 7.</p><h3>Requirement</h3><ul><li>Microsoft Windows 7 installation DVD disc or image file (.iso)</li><li>UNetbootin</li><li>An USB Flash Drive.</li><li>The computer or laptop which will be installed Windows 7 must support boot from USB storage device. Most computer and laptop in these days support this feature already.</li></ul><p><em><strong>Note:</strong></em> This article demonstrates only for Windows 7 but you can apply to other operating system, such as Windows XP, Windows Vista, Linux, etc.</p><p></p><h3>Step-by-step</h3><ol><li>Prepare an image file. You can use free software, such as <a
href="http://www.imgburn.com/" target="_blank">ImgBurn</a>, to create an ISO image file from Windows 7 installation DVD. You can skip this step if you already have Windows as an image file (.iso).<ul><li>Insert Windows 7 installation DVD in your DVD-ROM Drive.</li><li>Run ImgBurn and click <strong>Create image file from disc</strong>.</li><li>Select destination for image file by click on <strong>File</strong> -> <strong>Browse for a destination file</strong> and click <strong>Save</strong>.</li><li>Start create image file by click <strong>File</strong> -> <strong>Read</strong> or click on the Read&#8217;s icon.</li></ul><p><a
href="http://www.linglom.com/images/Windows/USB-Installation/2.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_2.png" width="200" height="137" alt="Create ISO Image File Using ImgBurn" title="Create ISO Image File Using ImgBurn"  /></a></li><li>Download <a
href="http://unetbootin.sourceforge.net/" target="_blank">UNetbootin</a> from http://unetbootin.sourceforge.net. You can run it after download, no installation need.<br
/> <a
href="http://www.linglom.com/images/Windows/USB-Installation/3.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_3.png" width="200" height="130" alt="Download UNetbootin" title="Download UNetbootin"  /></a></li><li>Insert your USB Flash Drive and run UNetbootin.<br
/> <a
href="http://www.linglom.com/images/Windows/USB-Installation/4.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_4.png" width="200" height="147" alt="Run UNetbootin" title="Run UNetbootin"  /></a></li><li>Select <strong>Diskimage (ISO)</strong> and browse to your Windows 7 image file. On the bottom, select drive of the USB Flash Drive as destination. On this example, the target drive is &#8220;<em>H:\</em>&#8220;. Click <strong>OK</strong> to start create a bootable USB Flash Drive.<br
/> <a
href="http://www.linglom.com/images/Windows/USB-Installation/5.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_5.png" width="200" height="147" alt="Select Image File on UNetbootin" title="Select Image File on UNetbootin"  /></a></li><li>The process could takes times a little while.<br
/> <a
href="http://www.linglom.com/images/Windows/USB-Installation/6.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_6.png" width="200" height="147" alt="Creating a Bootable USB Flash Drive" title="Creating a Bootable USB Flash Drive"  /></a></li><li>When the process finishes, you have an option to reboot your system or exit the program. Now you can use this USB Flash Drive to boot on any computer or laptop.<br
/> <em><strong>Note:</strong></em> You may need to change boot order in BIOS on a computer or laptop, which you want to boot using the USB Flash Drive, to boot from USB storage device first.<br
/> <a
href="http://www.linglom.com/images/Windows/USB-Installation/7.png" target="_blank"><img
src="http://www.linglom.com/images/Windows/USB-Installation/_7.png" width="200" height="147" alt="Finishes Create a Bootable USB Flash Drive" title="Finishes Create a Bootable USB Flash Drive"  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2011/03/15/how-to-boot-from-usb-flash-drive-on-vmware-workstation/' rel='bookmark' title='How to Boot from USB Flash Drive on VMWare Workstation'>How to Boot from USB Flash Drive on VMWare Workstation</a> <small>If you are using VMWare Workstation, you will notice that...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/03/21/how-to-install-windows-7-from-usb-flash-drive/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to Boot from USB Flash Drive on VMWare Workstation</title><link>http://www.linglom.com/2011/03/15/how-to-boot-from-usb-flash-drive-on-vmware-workstation/</link> <comments>http://www.linglom.com/2011/03/15/how-to-boot-from-usb-flash-drive-on-vmware-workstation/#comments</comments> <pubDate>Tue, 15 Mar 2011 04:15:47 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[Virtualization]]></category> <category><![CDATA[VMWare]]></category> <category><![CDATA[USB]]></category> <category><![CDATA[VMWare Workstation]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1295</guid> <description><![CDATA[If you are using VMWare Workstation, you will notice that you can&#8217;t boot from USB Flash Drive. There isn&#8217;t any USB option in BIOS boot menu. But sometimes, you need to boot from USB Flash Drive, such as to test installation of pre-configured system, to boot your favorite operating system which comes in USB edition, [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2011/03/21/how-to-install-windows-7-from-usb-flash-drive/' rel='bookmark' title='How to Install Windows 7 from USB Flash Drive'>How to Install Windows 7 from USB Flash Drive</a> <small>On this article, you will see how to install Windows...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>If you are using VMWare Workstation, you will notice that you can&#8217;t boot from USB Flash Drive. There isn&#8217;t any USB option in BIOS boot menu. But sometimes, you need to boot from USB Flash Drive, such as to test installation of pre-configured system, to boot your favorite operating system which comes in USB edition, etc. At this time, VMWare Workstation 7 isn&#8217;t officially support booting from USB Flash Drive yet, but there is a workaround which can help you boot from USB Flash Drive by using Plop Boot Manager.</p><p><span
id="more-1295"></span></p><h3>Requirement</h3><ul><li>Plop Boot Manager</li><li>An USB Flash Drive with a bootable system</li><li>VMWare Workstation</li></ul><p></p><h3>Step-by-step</h3><ol><li>Download Plop Boot Manager from <a
href="http://www.plop.at/en/home.html" target="_blank">Plop &#8211; Boot Manager</a>. Navigate to <strong>Downloads</strong> -> <strong>Boot Manager downloads</strong> -> click on Plop Boot Manager to download. At this time, the latest version is 5.0.11-2 (stable) as the figure below.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/1.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_1.png" width="200" height="74" alt="Download Plop Boot Manager" title="Download Plop Boot Manager"  /></a></li><li>Once the download is finished, extract the downloaded file. You see the image file, <strong>plpbt.iso</strong>, which will be used in next few steps. This is the image file that will allow us to boot from USB Falsh Drive.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/2.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_2.png" width="200" height="102" alt="Image file of Plop Boot Manager" title="Image file of Plop Boot Manager"  /></a></li><li>Next, edit your virtual machine&#8217;s settings on VMWare Workstation. Add an <strong>USB Controller</strong> if it doesn&#8217;t have one and ensure that the checkbox <strong>Automatically connect new USB devices</strong> is checked.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/3.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_3.png" width="200" height="175" alt="Add USB Controller on Virtual Machine" title="Add USB Controller on Virtual Machine"  /></a></li><li>Attach the Plop boot manager image (plpbt.iso) as CD image.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/4.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_4.png" width="200" height="175" alt="Attach the Plop boot manager image" title="Attach the Plop boot manager image"  /></a></li><li>Attach your USB device and power on your virtual machine, you will see Plop boot manager screen.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/5.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_5.png" width="200" height="150" alt="Boot from USB" title="Boot from USB"  /></a><br
/> <em><strong>Note:</strong></em> If you doesn&#8217;t see Plop boot manager screen, you have to check boot order in BIOS of your virtual machine. To configure boot order in BIOS, press <strong>F2</strong> when the virtual machine starts and select <strong>Boot</strong> tab. Next, move cursor to highlight on <strong>CD-ROM Drive</strong> and press &#8216;<strong>+</strong>&#8216; (plus sign) to move it up. Then, save settings and exit.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/6.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_6.png" width="200" height="148" alt="Boot Order in BIOS" title="Boot Order in BIOS"  /></a></li><li>Now you can boot a virtual machine from your USB Flash Drive on VMWare Workstation.<br
/> <a
href="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/7.png" target="_blank"><img
src="http://www.linglom.com/images/virtualization/VMWare/USB-Boot-On-VMWare-Workstation/_7.png" width="200" height="150" alt="Boot Windows 7 Installation from USB Flash Drive" title="Boot Windows 7 Installation from USB Flash Drive"  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2011/03/21/how-to-install-windows-7-from-usb-flash-drive/' rel='bookmark' title='How to Install Windows 7 from USB Flash Drive'>How to Install Windows 7 from USB Flash Drive</a> <small>On this article, you will see how to install Windows...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/03/15/how-to-boot-from-usb-flash-drive-on-vmware-workstation/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Configure Schedule on ISA Server 2006</title><link>http://www.linglom.com/2011/03/08/configure-schedule-on-isa-server-2006/</link> <comments>http://www.linglom.com/2011/03/08/configure-schedule-on-isa-server-2006/#comments</comments> <pubDate>Tue, 08 Mar 2011 03:36:01 +0000</pubDate> <dc:creator>linglom</dc:creator> <category><![CDATA[ISA]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[ISA Server 2006]]></category> <category><![CDATA[Schedule]]></category> <guid
isPermaLink="false">http://www.linglom.com/?p=1284</guid> <description><![CDATA[If you work in a company, you may want to customize time period for users to access the Internet, such as allow access only in business hours on weekdays. On ISA Server 2006, you can configure schedule time on each access rule active or inactive at specific day/hour as you want. For example, you configure [...]
Related posts:<ol><li><a
href='http://www.linglom.com/2009/10/27/getting-started-with-microsoft-isa-server-2006-part-6-configure-network-layout/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part 6: Configure Network Layout'>Getting started with Microsoft ISA Server 2006, Part 6: Configure Network Layout</a> <small>This article is one of the series of Getting started...</small></li><li><a
href='http://www.linglom.com/2007/12/30/getting-started-with-microsoft-isa-server-2006-part-ii-configure-network-topology/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part II: Configure Network Topology'>Getting started with Microsoft ISA Server 2006, Part II: Configure Network Topology</a> <small>Network Topology From Part I, you have finished install ISA...</small></li><li><a
href='http://www.linglom.com/2008/01/27/getting-started-with-microsoft-isa-server-2006-part-iv-configure-client-type/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part IV: Configure Client Type'>Getting started with Microsoft ISA Server 2006, Part IV: Configure Client Type</a> <small>Introduction After completed part III, you have done basic configurations...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>If you work in a company, you may want to customize time period for users to access the Internet, such as allow access only in business hours on weekdays. On ISA Server 2006, you can configure schedule time on each access rule active or inactive at specific day/hour as you want. For example, you configure schedule time for an access rule which allow user access the Internet only to business hours on weekdays 9:00 &#8211; 17:00 (Monday &#8211; Friday). Now users can access the Internet only in this scheduled time. Outside the time period, this access rule is inactive.</p><p><span
id="more-1284"></span></p><p><strong>Note</strong>: The schedule will be applied only to new connections. If users has connected before the schedule expires, the user&#8217;s connection will not be dropped.</p><p></p><p>You may notice that this scheduling option isn&#8217;t appear when you use New Access Rule Wizard, the schedule will be set to <strong>Always</strong> (24/7) by default. There are also two other pre-configured schedules: <strong>Weekends</strong>, 00:00-24:00 (Sat,Sun) and <strong>Work hours</strong>, 9:00 &#8211; 17:00 (M-F). You can also create your custom schedule time if you don&#8217;t like these pre-configured schedules.</p><p>Next, I show an example of how to configure schedule on an access rule, that allow access to the Internet, to active only in 8:00 &#8211; 18:00 (M-F). There isn&#8217;t any pre-configured schedule for this time period so I will create a new one.</p><h3>Step-by-step</h3><ol><li>Currently, I have two access rules on this example: Allow Internet access and Default rule. I&#8217;m going to configure schedule for the upper rule. Right-click on the access rule and select <strong>Properties</strong>.<br
/> <em><strong>Note:</strong></em> You can&#8217;t change configuration on the default rule.<br
/> <a
href="http://www.linglom.com/images/security/ISA/Configure-Schedule/1.png" target="_blank"><img
src="http://www.linglom.com/images/security/ISA/Configure-Schedule/_1.png" width="200" height="66" alt="Access Rules" title="Access Rules"  /></a></li><li>Click on <strong>Schedule</strong> tab. You see the current schedule is set to <strong>Always</strong> (default value). I want to create a new one so click <strong>New</strong> button.<br
/> <em><strong>Note:</strong></em> You can set schedule to others if you have ones by click on the drop down list on Schedule.<br
/> <a
href="http://www.linglom.com/images/security/ISA/Configure-Schedule/2.png" target="_blank"><img
src="http://www.linglom.com/images/security/ISA/Configure-Schedule/_2.png" width="200" height="231" alt="Schedule on Access Rule" title="Schedule on Access Rule"  /></a></li><li>On New Schedule, type name and description of the schedule that you want and set activation time for this schedule. To change the activation time between active or inactive, select range that you want to change and click on the radio buttons at the bottom (Active or Inactive), color on the range that you&#8217;ve selected will change accordingly. On this example, I named it &#8216;<strong>Customized work hours</strong>&#8216; and set the activation times as 8:00 &#8211; 16:00 (Monday &#8211; Friday). Then, click <strong>OK</strong>.<br
/> <a
href="http://www.linglom.com/images/security/ISA/Configure-Schedule/3.png" target="_blank"><img
src="http://www.linglom.com/images/security/ISA/Configure-Schedule/_3.png" width="200" height="216" alt="Create New Schedule" title="Create New Schedule"  /></a></li><li>You see that condition on the access rule has been changed. The &#8216;<strong>Customized work hours</strong>&#8216; has been added to the rule.<br
/> <a
href="http://www.linglom.com/images/security/ISA/Configure-Schedule/4.png" target="_blank"><img
src="http://www.linglom.com/images/security/ISA/Configure-Schedule/_4.png" width="200" height="75" alt="Access Rules" title="Access Rules"  /></a></li><li>Apply the configuration.<br
/> <a
href="http://www.linglom.com/images/security/ISA/Configure-Schedule/5.png" target="_blank"><img
src="http://www.linglom.com/images/security/ISA/Configure-Schedule/_5.png" width="200" height="86" alt="Apply the configuration" title="Apply the configuration"  /></a></li></ol><p>Related posts:<ol><li><a
href='http://www.linglom.com/2009/10/27/getting-started-with-microsoft-isa-server-2006-part-6-configure-network-layout/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part 6: Configure Network Layout'>Getting started with Microsoft ISA Server 2006, Part 6: Configure Network Layout</a> <small>This article is one of the series of Getting started...</small></li><li><a
href='http://www.linglom.com/2007/12/30/getting-started-with-microsoft-isa-server-2006-part-ii-configure-network-topology/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part II: Configure Network Topology'>Getting started with Microsoft ISA Server 2006, Part II: Configure Network Topology</a> <small>Network Topology From Part I, you have finished install ISA...</small></li><li><a
href='http://www.linglom.com/2008/01/27/getting-started-with-microsoft-isa-server-2006-part-iv-configure-client-type/' rel='bookmark' title='Getting started with Microsoft ISA Server 2006, Part IV: Configure Client Type'>Getting started with Microsoft ISA Server 2006, Part IV: Configure Client Type</a> <small>Introduction After completed part III, you have done basic configurations...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.linglom.com/2011/03/08/configure-schedule-on-isa-server-2006/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 10/75 queries in 0.031 seconds using disk: basic
Content Delivery Network via cdn.linglom.com/linglom

Served from: www.linglom.com @ 2012-02-05 03:33:19 -->
