Posts

Showing posts from January, 2008

FireFox 加速

1. 在 Firefox URL欄內輸入「about:config」 2. 在「Filter」欄內輸入「pipelining」將找到以下三個設定 3. 將 「network.http.pipelining」調為 true 4. 將 「network.http.proxy.pipelining」調為 true 5. 將 「network.http.pipelining.maxrequests」調為 30 6. 最後一步就是在Firefox任何一個地方點右鍵,選擇「新建」—「整數」在彈出的對話框中輸入「nglayout.initialpaint.delay」並將其值改為「0」,表示當瀏覽器收到網站回復的信息後能夠快速的反應。 7. 重新開啟 Firefox 便完成設定

Install IIS 6 + PHP5.2.5 + MySQL in WIN 2003 (PART2)

Today let's lean how to set MySQL. 1. Download MySQL5.0.51a from http://dev.mysql.com/downloads/mysql/5.0.html 2. Unzip it to your C: drive. Then click setup.exe 3. Select "typical" installation.-->standard configuration-->install as windows service-->set new root password (write it down somewhere, otherwise....) 4. Now you can see Mysql in C:\Program Files\MySQL 5. Want access the database? Go to start-->all programs-->MYSQL-->MySQL server 5.0-->MYSQL command line client. 6. Read MYSQL tutorial from this link http://webhelp.ucs.ed.ac.uk/services/mysql/example1-cli.php 7. Add C:\PHP to your path. From the Start menu, right click My Computer and select Properties. From the Advanced tab click the Environment Variables button. Under System Variable find Path and click Edit. At the end of what is already present in Variable Value add a semicolon (;) and then C:\PHP. 8. If you can see it, Then your are success set up MYSQL, simple ! C:\mysql\bin\mysql.exe

Install IIS 6 + PHP5.2.5 + MySQL in WIN 2003 (PART1)

Don't know why after I install sharepoint 3, the default web site can not see php file, always ask my password. so I reinstall PHP again. It works for me.... INSTALL PHP 1. Download PHP from http://www.php.net/downloads.php 2. Unzip it to c:\PHP 3. Copy php5ts.dll from c:\PHP to C:\WINDOWS\system32 4. Copy php.ini-dist from c:\PHP to C:\WINDOWS then change the it's name to php.ini 5. Open C:\WINDOWS\php.ini in notepad Change extension_dir = "./" to extension_dir = "C:\PHP\ext" Change ;extension=php_mysql.dll to extension=php_mysql.dll (just delete ";") 6. Open the Internet Information Services (IIS) Manager from start-->Administrative Tools-->local computer-->web sites-->default web site-->right click then select properties-->home directory-->select configration-->under Cache ISAPI extensions click add-->Enter C:\PHP\php5isapi.dll as Executable and .PHP as Extension. Leave the rest as default and click Ok. 7. go to

Two steps to change Sharepoint Port other than 80

1.start-->administrative tools-->IIS manager-->local computer-->website-->sharepoint 80-->right click-->property-->website-->change TCP port to 808 2.start-->administrative tools-->IIS manager-->local computer-->website-->sharepoint central administrator v3-->right click-->brows-->operations-->alternate access mappings-->click internal URL(http://yourcomputer_name/)-->change that to http://yourcomputer_name:808/ Done

Error Event 5586

After you apply Windows SharePoint Services 3.0 SP1, an event is logged in the Application log on the server: "User, group, or role 'WSS_Content_Application_Pools' already exists in the current database" RESOLUTION You can safely ignore the event that is mentioned in the "Symptoms" section. STATUS Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section. link : http://support.microsoft.com/kb/942619

The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID

If you got error in Win 2003 The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID {61738644-F196-11D0-9953-00C04FD919C1} to the user NT AUTHORITY\NETWORK SERVICE SID (S-1-5-20). This security permission can be modified using the Component Services administrative tool. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Just fellow the step by step below to fix it 1.Copy the GUID following the CLSID above : {61738644-F196-11D0-9953-00C04FD919C1} 2.Start-->Run-->regedit 3.Right click HKEY_CLASSES_ROOT, select find then past the CLSID in 4.Then you can see the (default) value data is "IIS WAMREG admin Service" 5.Open Component Services : Start-->Administrative Tools-->Component Services-->Computers-->My Computer-->DCOM Config Scroll down and find the application (IIS WAMREG admin Service in this case). 6.Right-Click-->Properties

How to switch PASV and PORT model in FLAHSGET

所有FTP服务器软件都支持PORT方式。大部分FTP服务器软件PORT方式和PASV方式都支持。Serv-U默认配置下两种方式都支持。如果使用 PASV方式,请打开Serv-U,进入 Domains -> (你的域名) -> Settings -> Advanced -> 把“Allow passive mode data transfers”前面的钩选中。 IE: 工具 -> Internet选项 -> 高级 -> “使用被动FTP”(需要IE6.0以上才支持)。 CuteFTP: Edit -> Setting -> Connection -> Firewall -> “PASV Mode” 或 File -> Site Manager,在左边选中站点 -> Edit -> “Use PASV mode” FlashGet: 工具 -> 选项 -> 代理服务器 -> 直接连接 -> 编辑 -> “PASV模式” FlashFXP: 选项 -> 参数选择 -> 代理/防火墙/标识 -> “使用被动模式” 或 站点管理 -> 对应站点 -> 选项 -> “使用被动模式” 或 快速连接 -> 切换 -> “使用被动模式” LeapFTP: Option ->Preferences -> General->Proxy->Use Pasv Mode

Set up FTP site in WIN 2003

Install Internet Information Services and the FTP Service Because FTP depends on Microsoft Internet Information Services (IIS), IIS and the FTP Service must be installed on the computer. To install IIS and the FTP Service, follow these steps. NOTE: In Windows Server 2003, the FTP Service is not installed by default when you install IIS. If you already installed IIS on the computer, you must use the Add or Remove Programs tool in Control Panel to install the FTP Service. 1. Click Start, point to Control Panel, and then click Add or Remove Programs. 2. Click Add/Remove Windows Components. 3. In the Components list, click Application Server, click Internet Information Services (IIS) (but do not select or clear the check box), and then click Details. 4. Click to select the following check boxes (if they are not already selected): Common Files File Transfer Protocol (FTP) Service Internet Information Services Manager 5. Click to select the check boxes next to any other IIS-related service o

Alt + F4 = close every thing

How to install and configure PHP5 with IIS6 on Windows Server 2003 in five easy steps.

I thought installing PHP would be as easy as just using the install program. Well it wasn't... But by learning from my mistakes it can be almost that easy. Just follow these five easy steps on how to install and configure PHP 5 on a Windows Server 2003 running IIS - after trying the manual and several guides and tutorials found on the net (of which some were very long and very complicated and some were short and easy but partially incorrect) this is what it all came down to. Enjoy. This is tested on PHP 5.0.4, IIS6 on Windows Server 2003 SP1. Be aware that IIS is not automatically installed with all editions of Windows Server 2003, this guide assumes that IIS 6 and Windows Server 2003 is already up and running on your server. 1. Download PHP at http://www.php.net/downloads.php. Make sure you dowload the "zip package", the installer package won't work. 2. Extract the downloaded zip file to a directory of choice on your harddrive. The rest of this guide will assume you

redirect solution of windows 2003 server

solution 1: creat new site, set redirect to http://192.168.1.200:800/ solution 2: 1. Create one html page, name it redirectssl.htm and save it into your virtual directory folder. Here is the redirectssl.htm content: [script language=javascript> self.location = "https://www.website.com/virtual_directory.com " [/script> [noscript> [META HTTP-EQUIV=Refresh CONTENT="1; URL=https://www.website.com/virtual_directory.com "> [/noscript> note: change [ to < 2. Open your IIS, right click on your virtual directory site, click Properties. 3. Switch to Custom Error Tab 4. Edit properties of 403;4. 5. Set message type to FILE 6. Click browse button and point it into your redirectssl.htm 7. Click OK button twice. Now try to put http://www.website.com/virtual_directory.com (without s). HTH. solution 3: 1. Open your IIS, right click on your virtual directory site, click Properties. 2. Switch to Custom Error Tab 3. Edit properties of 403;4. 4. Set message typ

RAID CARD ISSUE

Request:- 4th January 2008 at 13:47 I intsall Fasttrak in p5b-vm DO mainboard. I have 5 hard disk installed, 2 of them I use onboard (Intel(R) Matrix Storage Manager )raid controller to creat Raid 1, the other 3 I connect to Fasttrak and creat raid 5. the problem is: if I skip fasttrak raid set up by pree then I can see my onboard raid 1. but I can't see the fasttrak raid 5. If I not skip fasttrak setup. then I can only see the fasttrak raid 5. How can I let them (onboard raid 1 and fasttrak raid 5) work together? Response:- 7th January 2008 at 13:0 Hi Jim Thank you for using our solutions for your storage needs. On some of the newer motherboards it might allow you to use two or more RAID controllers in a single system but sometime by running two or more RAID controllers there is chance you will encounter bios or driver conflict and boot issue. This is due to the motherboard system bios how it assign memory resources to each promise controller. Some controller mig

Some thing for config new windows 2003 server

1. remote connection if you can't access your wind 2003 by using remote desktop, then you need check your 2003 firewall. start->control panel->firewall check the exceptions add remote desktop there done!