Overview
Below MSDN post shows the steps to grant sufficient privileges to a new Team Foundation Server Administrator.
Reference
How to: Set Team Foundation Server Administrator Permissions
這是一場無盡的戰鬥...
Overview
Below MSDN post shows the steps to grant sufficient privileges to a new Team Foundation Server Administrator.
Reference
How to: Set Team Foundation Server Administrator Permissions
Overview
Installing VSTS Team Foundation Server (TFS) 2008 is way more than just run "setup.exe" and keep clicking "Next". Actually if you have all the prerequisites ready then the installation is simple, but usually you have to prepare all the prerequisites by yourselves.
I found two post by Grant Holliday and William Bartholomew talking about how to automate Installation process of TFS 2005 & 2008. I have never tried it (cos by the time I see these post I was already finishing the installation...), but I think it is good for understanding the process of TFS installation, and it may come in handy someday!
Notes: The guides is for Windows Server 2003, and when I installed TFS 2008 on Windows Server 2008, WSS 3.0 installation cannot be included as part of TFS installation. I must install and configure WSS 3.0 first before I start TFS installation (You may use existing SharePoint sites on other computer for TFS)
Reference
Overview
Sometimes you have to rename a Server, it can easily be done in "System properties". However, if the Server host a SharePoint Services/Server, then renaming will cause SharePoint sites to stop functioning. Eventually I found a Blog showing the steps to rename a SharePoint 2007 / WSS 3.0 Server, and I have repost the steps below.
Reference
Renaming a SharePoint 2007 / WSS 3.0 Server (I copy the steps from here)
Rename a stand-alone server (Office SharePoint Server)
Steps
Change each alternate access mapping for your MOSS/WSS deployment in Central Administration
Use stsadm.exe to invoke the "renameserver" command option
Rename your Server via Change Name Operation in Windows Server 2003
Use stsadm.exe to invoke the "updatefarmcredentials" command option
Overview
I come across a situation that I was installing WSS 3.0 but the "SharePoint Products and Technologies Configuration Wizard" failed at half-way and it keep crashing even after I uninstall and reinstall WSS. The result is the broken "MICROSOFT##SSEE" Database which is the configuration database created by WSS. After I followed instructions of the below link, I successfully uninstalled the database and the WSS 3.0 configuration wizard run again!
Reference
Overview
When I install SQL Server 2005 Enterprise on Windows Server 2008 with IIS 7, I was warned that "Microsoft Internet Information Services (IIS) is either not installed or is disabled". Actually this misleading warning means some features of IIS 7 are not installed, and SQL Server 2005 installation needs those features.
Reference
Overview
FastCGI can greatly improve the performance of CGI applications. I will share my experience of installing and configuring PHP 5.2.6 with FastCGI in Windows Server 2008 environment (the main difference is between IIS 7 and IIS 6).
Reference
Steps
Install & Configure PHP
Install & Configure IIS 7
Overview
It is convenient to group same type of Form Inputs with an ArrayList (or other types of List). For checkbox this is easily done in Struts Framework, but how about "File" or other types of input?
Reference
Uploading Multiple Files using Struts FormFile
Code Snippet
I copy the code from the reference link above and do some change on it in order to get the uploaded files in the order shown in the User's Form.
In JSP File
<form name="fileupload" enctype="multipart/form-data" method="post" action="/photos/fileuploadresult">
<tr>
<td>Photo 1</td>
<td><input type="file" name="uploads[0]" /></td>
</tr>
<tr>
<td>Photo 2</td>
<td><input type="file" name="uploads[1]" /></td>
</tr>
<tr>
<td><input type='submit' name="submit" value="Submit"></td>
<tr>
</form>
In struts-config.xml
<action path="/photos/fileuploadresult" type="com.uploads.actions.FileUploadAction" name="PhotoUpload" scope="request" >
<forward name="success" path="/photos/fileuploadresult.jsp" />
</action>
<form-bean name="PhotoUpload" type="com.uploads.forms.FileUploadForm">
</form-bean>
In FileUploadForm.java
public class FileUploadForm extends ActionForm { |
Overview
You can prevent others from using IE to surf the Internet by using its built-in "Content Advisor". A Supervisor password can be set to control the usage of IE.
Reference
Yahoo! Answers: Block other users from accessing the Internet Explorer
Steps (For IE 7)