NEXT DESIGN

What’s going on at Next Design?

Archive for May, 2009

CoRD: Remote Desktop for Mac OS X

Posted by admin On May - 28 - 2009ADD COMMENTS

Macs interact well with Windows, and with CoRD the experience is a bit smoother. Great for working on the office terminal server, administrating servers or any other time you’d like your PC to be a bit closer without leaving your Mac.
smallserver2003screencapture

Popularity: 91% [?]

Applies To:
Microsoft Windows Server 2003
Background:
To edit the IIS metabase file without stopping IIS, you must enable Edit-While-Running.
Procedure:
To enable metabase edit-while-running using IIS Manager

1. In IIS Manager, right-click the local computer, and then click Properties.
2. Select the Enable Direct Metabase Edit check box.

Popularity: 57% [?]

IIS upload limit

Posted by admin On May - 23 - 2009ADD COMMENTS

When Windows Server 2003 was released was that when our clients attempted to upload media to our product, it was a bit hit and miss at times. What we discovered was a security precaution in IIS 6 limited the maximum file size that was up-loadable to 240Kb.
To resolve this issue, we increased the Maximum ASP upload by running the following from the command line:

cscript C:\inetpub\adminscripts\adsutil.vbs set w3svc/ASPMaxRequestEntityAllowed 10484880

Finding the ASPMaxRequestEntityAllowed node, and changing the value.

With Windows Vista and Windows Server 2008, the way to set this changed again! To achieve the same setting, it can now be done via the IIS Administrative tool. To change do the following:

  • imageOpen IIS Manager from the Administrative Tools
  • Select the Server from the tree structure on the left hand side
  • Double click on ASP in the right pane.
  • You will see a list of properties, Expand the Limits Properties and you will see Maximum Request Entity Body Limit. Set the value here in bytes to the upload limit you wish to set. Click Apply.
  • image

There is a similar limit imposed in all flavours of ASP.net. This can be configured in the machine.config file of the machine or in the web.config for the application. Adding the following under the <system.web> tag in the will increase the ASP.net maximum upload to 10Mb in this example.

<system.web>
      <httpRuntime maxRequestLength="102400" />
</system.web>

As you can see, it isn’t too difficult to resolve this issue, although the way to change the setting can be difficult at first to find.
I hope this guide makes it a little easier for you.

Popularity: 100% [?]

What’s going on at Next Design?

Posted by admin On May - 21 - 2009ADD COMMENTS

We have lots of client with NDA.

Popularity: 66% [?]