Overriding IIS6 wildcard maps on individual directories - iis-6

When Im publishing a MVC4 application on IIS6 i need to add the isapi.dll go get my application to work, but it enables wildcardmapping to all staticcontent to so Im trying to override wildcardsettings on a subfolder (content-folder) in my application with this guide Overriding IIS6 wildcard maps on individual directories but it doesnt work out for me.
I get the error message:
C:\Inetpub\AdminScripts>adsutil.vbs SET /W3SVC/1/root/Content/ScriptMaps "" The path requested could not be found. ErrNumber: -2147024893 (0x80070003) Error Trying To Get the Object: W3SVC/1/root/Content
Does anyone knows what the error is? and what to do to fix it?
Im quite sure that my identifier is 1 on the default website
My structure on IIS is as follows
Web Sites/Default Web Site/"folder"/"application"/content

pls look at link > This is link i think will help you, it is from blog, credits to Steven Anderson.

Related

Publish .NET Code application to Arvixe Host

I have a ASP.NET Core with Blazor website and I want to deploy it to Arvixe host. The website is very simple and contains only UI elements no database required. I published the website to a local file system and uploaded it using FTP to the Plesk.
When I am visiting the website, I receive this error:
500 - Internal server error. There is a problem with the resource you
are looking for, and it cannot be displayed.
I have tried to run it on the IIS and I received more details:
Configuration The configuration file cannot be read due to
insufficient permissions.
I tried to add IIS_IUSRS to the group and users for web.config but I am not able to find it because I am using a windows 10 connected to active directory.
Besides, I still don't know how to solve this problem at Arvixe. Does anyone know tips might help?
500 internal error is generic issue. Please kindly check the error message on the server and paste it here. Make sure that your provider has installed .net core bundled on their server and here are tutorial about publsih .net core using plesk https://windowswebhostingreview.com/how-to-publish-using-web-deploy-with-plesk-control-panel/. It should be working fine.
You need to give Full Trust permission (Read-Write-Execute) to your application folder and also to Application Pool and also check if the Runtime version supported by Arvixe matches with your Asp.net Core version.
Also enable the logs in web.config file by setting stdoutLogEnabled="true" to get detailed error so that you can investigate more about the error.

Iphone push notification in Joomla

I m Doing Iphone/Android push notification in joomla using Zend library it is working properly in Core php but it shows error in joomla when submitting a form LIKE :
**
An error has occurred while processing your request. You may not be
able to visit this page because of: an out-of-date bookmark/favourite
a mistyped address a search engine that has an out-of-date listing for
this site you have no access to this page Home Page If difficulties
persist, please contact the System Administrator of this site and
report the error below.
0 "Zend_Uri_Http" not found Powered by Joomla!®
**
If there is any way to resolve this error plz. let me khow the help will be appriciated...
Thanks in advance.
Amit Raval
NOT FOUND error occurs when your include file is not loaded. try to include ZEND LIBRARY FILE which loads "ZEND_URI_HTTP" file...
require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Uri_Http');
You need to set path as per your current location of directory
suppose if you are in component/controllers direcotory
use like:
require_once JPATH_COMPONENT.'controllers/Zend/Loader.php';
Zend_Loader::loadClass('Zend_Uri_Http');
It must be done throughout all zend files to solve this issue.
Regards

MapServer as a CGI in IIS alongside QGIS (WinServer 2008)

Has anyone got some experience with MapServer as a CGI running on IIS7 (WinServer2008)?
I get the CGI running fine with a MSSQL2008 plugin. This however doesn't allow me to use a BBOX filter. I install QGIS in order to get the OGR tools and can no long access my PROJ_LIB thereafter.
I get thereafter the following error response from any WFS requests to the MapServer CGI module:
This page contains the following errors:
error on line 1 at column 1: Document is empty
Below is a rendering of the page up to the first error.
Removing my PROJ_LIB CONFIG reference causes following error excpetion:
msProcessProjection(): Projection library error. Permission denied
I got around this problem for now by using the default Apache setup for MS4W. However this requires me to a use a proxy in order to use the WFS in an IIS hosted OpenLayers site.
I hope someone else has a few ideas in this regard.
Cheers,
Dennis

IIS 6.0 preventing "PUT" & "DELETE" method types on WCF 4.0 web service calls (403 Forbidden)

I am a developer trying to assist my server admin in figuring out how to get this issue corrected.
But I have an app that is using WCF 4.0 configure-less setup to make RESTful webservices calls. Everything works fine locally but when pushed to my server all PUT and DELETE requests return a 403 forbidden error.
After searching around I've been unable to find anything that seems to work, and I'm not sure if there is some logs that would help figure this out, I'm not a server guy and apparently neither is my "server guy". So any tips on where to point him or what might be causing this would be greatly appreciated.
You would need to add the verbs to the appropriate handler on IIS 6. The below links explain on how to achieve it.
Steps as below:
1. Right click the Virtual Directory in IIS
Select 'Properties'
Click 'Configuration...'
Search for .svc in the 'Application Extensions' list
Select '.svc' (if this is not present, then you need to add it by clicking Add and using the same path for the executable as is used for the .aspx extension)
Click 'Edit ...'
In the 'Verbs' list select 'All Verbs'
Links:
MSDN Forums
Setting Application mapping on IIS 6

Magento Soap Interface, Invalid WSDL

I am having a problem where the soap interface to Magento (http://172.16.0.119/index.php/api/v2_soap?wsdl) is generating invalid wsdl. When I try to generate a proxy using visual studio I get an error that there are several elements declared more than once in the document for example
Source: Line: 44 Column: 4 Validation Error: The global element
'http://schemas.xmlsoap.org/soap/encoding/:Array' has already been
declared
I thought that perhaps I had something corrupted in my magento install as I have several plugins and such running, so I done a fresh install of magneto 1.6.1 with no plugins or anything. I still receive this error. Has anybody else had this problem? How did you resolve it?
Thanks in advance.
There is a setting within the admin module that allows you to set the WS-I (http://en.wikipedia.org/wiki/Web_Services_Interoperability) Compliance flag to True. I was receiving a number of issues with VS2010 and the Magento API until I changed this flag.
It can be found in System -> Configuration -> Services -> Magento Core API
Hope this helps.