Showing posts with label WEB Server. Show all posts
Showing posts with label WEB Server. Show all posts

Tuesday, September 27, 2011

Overcomming File Upload/download filesize limit in IIS6

1) Before you edit, make enable direct edit checkbox is on at IIS webserver properties





2) Find the metabase.xml file located in C:\windows\sytem32\inetserv and open the file in Notepad.


3) Search for AspMaxRequestEntityAllowed and increase the value. The default value is 204800 (200K). Setting the value to 1000000 will allow 1 MB file uploads.

You may now wish to uncheck the IIS property called "Enable Direct Metabase Edit".

To increase the file download size limit, repeat all steps above but in Step 3 find the parameter called AspBufferingLimit. The default download limit is 4MB.

Wednesday, August 25, 2010

The service did not respond to the start or control request in a timely fashion

1.Click Start Run Open Type "CMD"

2.Copy and Paste this command:

* CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs SET W3SVC/IIs5IsolationModeEnabled 0

* NET STOP HttpFilter /y

* NET START W3SVC

If W3SVC cannot be started, reboot the server.

Tuesday, December 15, 2009

Hidden Source Code Problem

I'm not familiar with Software too much. How dull I m ? I don't know how to hide my test source from providing webserver link.
















1) I setup one html webpage on my Linux Apache Server. I want to hide my soure from avoiding from seeing view-->source. I m using http://www.iwebtool.com/html_encrypter as my friend suggests.

2) Why I did set up that link webpage from other webserver is hehehehe I don't know how to bind that webpage with limited ips Hosts only. That's why I setup new webserver and control from firewall by allowing 80 to destination hosts only. hahehehehe That's why I need to hide my source. Otherwise ... hehehe

Monday, November 30, 2009

Application pop-up: w3wp.exe

If you are using Network Service to run your sight you might get this error " Application pop-up: w3wp.exe - Application Error : The instruction at "0x73585d55" referenced memory at "0x00000018". The memory could not be "read"."
or an error similar to it. This is caused when the .NET\Framework\\webengine.dll crashes. This is do to the fact that The Network Service does not have special permissions to .net registry settings. Please do the following steps to fix the problem:
Navagate to
1.HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ASP.NET_2.0.50727\Names (or whatever version of .NEt framework you have.
2.Start Regedit and navigate to that key.
Right-click "Names" and select Permissions on the context menu.
Click Add and enter NETWORK SERVICE, click "Check Names" and click "Ok".
With NETWORK SERVICE highlighed in the "Groups or User Names" list click "Advanced"
On the "Advanced Security Settings for Names" dialogue highlight NETWORK SERVICE and click "Edit"
In the "Permission entry for Names" dialogue check the "Name" box is showing "NETWORK SERVICE" and put check marks against "Query Value", "Set Value", "Create Subkey", "Enumerate Subkeys", "Notify" and "Read Control".
Click Ok on all the dialogues and close regedit.

Ensure your application pools are reconfigured to run as NETWORK SERVICE (or at least all the ones you want to be) and restart them

On subsequent restarts the w3wp.exe crash should not occur.