W3vina.COM Free Wordpress Themes Joomla Templates Best Wordpress Themes Premium Wordpress Themes Top Best Wordpress Themes 2012

Revision 5692 is a pre-publication revision. (Viewing current revision instead.)

Delete function is not working!

To fix this issue is straightforward and it requires you to configure the IIS (Internet Information Services). Please follow the below steps to do the same:
  1. Open applicationhost.config file from C:\Windows\System32\inetsrv\config
  2. Change this line (do this by copying the below line into Find (Ctrl + F) and press enter to go to this line):
<add name="ExtensionlessUrl-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> to <add name="ExtensionlessUrl-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> 3. Make these lines into comment statements. Similar to earlier step where you copy and find these lines and then replace them with the one provided. Before ------------------------- <add name="WebDAVModule" image="%windir%\System32\inetsrv\webdav.dll" /> <add name="WebDAVModule" /> <add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK" modules="WebDAVModule" resourceType="Unspecified" requireAccess="None" /> After ------------------------- !--<add name="WebDAVModule" image="%windir%\System32\inetsrv\webdav.dll" />--> !--<add name="WebDAVModule" /> --> !--<add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK" modules="WebDAVModule" resourceType="Unspecified" requireAccess="None" />--> 4. Remove webDAV from IIS Handler Mappings by: ------------------------------------------- Open IIS Manager>> Double click Handler Mappings >> Find WebDAV in the list and remove. After doing these steps correctly, deleting function will work.

Contents

Revisions

Revision Differences

December 2, 2015 @ 13:14:27Current Revision
Content
Deleted: Open applicationhost.config file from 
 Added: To fix this issue is straightforward and it requires you to configure the IIS (Internet Information Services). Please follow the below steps to do the same:
 Added: <ol>
 Added: <li>Open applicationhost.config file from <strong>C:\Windows\System32\inetsrv\config< /strong></li>
 Added: <li>Change this line (do this by copying the below line into Find (<strong>Ctrl + F</strong>) and press enter to go to this line):</li>
 Added: </ol>
 Added: <span style="color: #000000;">&lt;add name="ExtensionlessUrl-<wbr />Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.<wbr />TransferRequestHandler" preCondition= "integratedMode,<wbr />runtimeVersionv4.0" /&gt;</span>
Deleted: C:\Windows\System32\inetsrv\<wbr />configAdded: <strong>to</strong>
Deleted: Change this line: 
Deleted: &lt;add name="ExtensionlessUrl-<wbr />Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.<wbr />TransferRequestHandler" preCondition= "integratedMode,<wbr />runtimeVersionv4.0" /&gt;  
Deleted: to 
Deleted: &lt;add name="ExtensionlessUrl-<wbr />Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,<wbr />DELETE" type="System.Web.Handlers.<wbr />TransferRequestHandler" preCondition= "integratedMode,<wbr />runtimeVersionv4.0" /&gt; Added: <span style="color: #008000;">&lt;add name="ExtensionlessUrl-<wbr />Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,<wbr />DELETE" type="System.Web.Handlers.<wbr />TransferRequestHandler" preCondition= "integratedMode,<wbr />runtimeVersionv4.0" /&gt;</span>
Deleted: comment all three below 
 Added: 3. Make these lines into comment statements. Similar to earlier step where you copy and find these lines and then replace them with the one provided.
Deleted: Before Commenting Added: Before
 Added: ------------- ------------
 Added: <span style="color: #000000;">&lt;add name="WebDAVModule" image="%windir%\System32\<wbr />inetsrv\webdav.dll" /&gt;</span>
 Added: <span style="color: #000000;"> &lt;add name="WebDAVModule" /&gt;</span>
 Added: <span style="color: #000000;"> &lt;add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,<wbr />MKCOL,PUT,COPY,DELETE,MOVE,<wbr />LOCK,UNLOCK" modules="WebDAVModule" resourceType= "Unspecified" requireAccess="None" /&gt;</span>
 Added: After
Deleted: ------------------------ Added: ------------- ------------
Deleted: &lt;add name="WebDAVModule" image="%windir%\System32\<wbr />inetsrv\webdav.dll" /&gt;  
Deleted: &lt;add name="WebDAVModule" /&gt; 
Deleted: &lt;add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,<wbr />MKCOL,PUT,COPY,DELETE,MOVE,<wbr />LOCK,UNLOCK" modules="WebDAVModule" resourceType= "Unspecified" requireAccess="None" /&gt;  
Deleted: After Commenting  
Deleted: -------------------- 
Deleted: !--&lt;add name="WebDAVModule" image="%windir%\System32\<wbr />inetsrv\webdav.dll" /&gt;--&gt; Added: <span style="color: #008000;">!--&lt;add name="WebDAVModule" image="%windir%\System32\<wbr />inetsrv\webdav.dll" /&gt;--&gt;</span>
Deleted: !--&lt;add name="WebDAVModule" /&gt; --&gt; 
 Added: <span style="color: #008000;"> !--&lt;add name="WebDAVModule" /&gt; --&gt;</span>
Deleted: !--&lt;add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,<wbr />MKCOL,PUT,COPY,DELETE,MOVE,<wbr />LOCK,UNLOCK" modules="WebDAVModule" resourceType= "Unspecified" requireAccess="None" /&gt;--&gt; Added: <span style="color: #008000;"> !--&lt;add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,<wbr />MKCOL,PUT,COPY,DELETE,MOVE,<wbr />LOCK,UNLOCK" modules="WebDAVModule" resourceType= "Unspecified" requireAccess="None" /&gt;--&gt;</span>
Deleted: remove webdav from IIS Handler Mappings 
 Added: 4. Remove <strong>webDAV</strong> from IIS Handler Mappings by:
Unchanged: ------------- -----------------<wbr />-------------Unchanged: ------------- -----------------<wbr />-------------
Deleted: Open IIS Manager&gt;&gt; Double click Handler Mappings &gt;&gt; Find WebDAV in the list and remove. Added: <strong>Open IIS Manager&gt;&gt; Double click Handler Mappings &gt;&gt; Find WebDAV in the list and remove.</strong>
 Added: After doing these steps correctly, deleting function will work.

Note: Spaces may be added to comparison text to allow better line wrapping.

Translate »