You may get this error after installing MOSS 2007 in windows 2008. For the similar error in window server 2003, a hot fix is available from Microsoft for iis6
The hot fix can be downloaded from http://support.microsoft.com/Default.aspx?id=946517
For 2008 change the set the default impersonation level to identify
To do this, go to
1 Start
2 Administrative Tools
3 Component Services
>>Component Services>> Computers >>My Computer
4 Right Click on My computer > Default Properties
5 Change the default impersonation level to identify
Tuesday, August 17, 2010
Wednesday, August 11, 2010
Moving the default Mail store location in POP3
Using the Windows interface
1.Open POP3 service.
2.In the console tree, right-click the computer_name node, and then click Properties.
POP3 Service/computer_name
3.In Root Mail Directory, type the path to the mail store; for example, C:\mailstore. The maximum value is 260 characters.
4.restart pop3 and iis
Note: After doing this I found the users are not able to login to the mailboxes hence I did it from the command line
Also move (don’t copy) the existing mailboxes from the default location (normally system_drive:\Inetpub\mailroot\Mailbox) to the new directory
Using the Commandline interface
1.Open Command Prompt.
2.Type:
winpop set mailroot path_to_mail_store
3.restart pop3 and iis
1.Open POP3 service.
2.In the console tree, right-click the computer_name node, and then click Properties.
POP3 Service/computer_name
3.In Root Mail Directory, type the path to the mail store; for example, C:\mailstore. The maximum value is 260 characters.
4.restart pop3 and iis
Note: After doing this I found the users are not able to login to the mailboxes hence I did it from the command line
Also move (don’t copy) the existing mailboxes from the default location (normally system_drive:\Inetpub\mailroot\Mailbox) to the new directory
Using the Commandline interface
1.Open Command Prompt.
2.Type:
winpop set mailroot path_to_mail_store
3.restart pop3 and iis
Thursday, August 5, 2010
403 error when you use an ASP request to upload a large (>200kb) file in IIS
Make sure the IIS web server is not restricting the size of ASP uploads. IIS 6 /IIS 7 have a limit of 200 KB for ASP requests in general and file uploads in particular.
- Go to IIS and right click the server, select properties, and check the box "Allow changes to MetaBase configuration while IIS is running"
- if after this step the metabase file is still locked, try turning off IIS or even restarting the machine in safe mode; open the file in an editor; the variable AspMaxRequestEntityAllowed limits the number of bytes in the page request (by default 200KB); change the value to 1073741824 (unlimited) or to a limit of your choice
- Check whether the same variable shows up in other places in the file.
- do issreset
Or from the command prompt
- At a command prompt, type the following command, and then press ENTER:
- cd drive:\inetpub\adminscripts
- Note In this command to change folders, drive is a placeholder for the hard disk where IIS is installed.
- At a command prompt, type the following command, and then press ENTER:
- cscript adsutil.vbs set w3svc/ASPMaxRequestEntityAllowed size
- Note In this command, size is a placeholder for the largest file size upload that you want to allow. The maximum value is 1,073,741,824 bytes. At a command prompt, type the following command, and then press ENTER:
- iisreset
Follow these steps in IIS 7
- Open IIS Manager (inetmgr)
- Open "ASP"
- Go to Limit properties
- Edit maximum equesting Entity Body Limit - (say for eq 1073741824)
- do issreset
Or from the command prompt
Labels:
iis6,
iis7,
MOSS,
Share Point,
Windows 2003,
Windows 2008
Subscribe to:
Posts (Atom)