I upgraded our web server to WSS 3.0 yesterday. The server runs other
applications also. We are getting the following issues
Now the root site eg http://localhost just shows HTTP 404 errors due to
the lines:
<httpHandlers>
<remove verb="GET,HEAD,POST" path="*" />
<add verb="GET,HEAD,POST" path="*"
type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler,
Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c" />
<add
verb="OPTIONS,PROPFIND,PUT,LOCK,UNLOCK,MOVE,COPY,GETLIB,PROPPATCH,MKCOL,DELETE,(GETSOURCE),(HEADSOURCE),(POSTSOURCE)"
path="*" type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler,
Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c" />
</httpHandlers>
We want all our sharepoint sites under http://localhost/sharepoint so
if i change * to /sharepoint/* in the above example this appears to be
fixed! Is this the correct method to use here?
Secondly I notice the exclude a path option in admin no longer exists I
used this before!
Finally, we also have microsoft class server installed on the server
and for some reason even with the above changes the images dont load
and if you try and view them you get a:
[HttpException (0x80004005): No http handler was found for request type
'GET']
Any ideas about this?