mvc4 app, hide iis application name? - asp.net-mvc-4

I have a mvc4 application deployed to IIS7.5.
The Website is mapletest, the application is Budget2013,
so users access the site, mapletest/Budget2013.
What do i need to do to allow users to access this by just using mapletest?
Also, mapletest/Budget2013/ShoppingCenter should become mapletest/ShoppingCenter.
Basically I want to hide the application name in the url.

You should deploy directly your application to the root website and not using a virtual directory. So for example if your mapletest WebSite physical directory is c:\inetpub\wwwroot\mapletest that's where you should deploy your application.

Related

deploy ABP framwork angular into iis

I want to deploy ABP angular Application into IIS I don't know how.
I created a folder contain the backEnd Folder And The FrntEnd Folder then i build the frontend into the frontend Folder and in the visual studio, I publish the backend into the backEnd Folder
in IIS I created a website with the backEnd with HTTPS and inside the Website I created a App contain the frantEnd
the App works and the data appears in the list
but in create and update method not function
I look inside the log
It looks like you haven't changed the application settings.
https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.DbMigrator/appsettings.json
https://github.com/abpframework/abp/blob/dev/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/appsettings.json
You need to change application ports, URL. etc

Copy web-builder created website to new hosting

I have a website created in a web-building online app (link to the app: http://www.webnode.com). The app doesn't allow me to actually view the folder structure of my web, it's something more like creating a blog using blogspot by google or similar web apps.
The problem is that I want to quit using that web builder and map the whole website to my private hosting. In order to do it I need to get somehow my web created in this app into the folder structure (or any other uploadable structure).
I'll be very grateful for any kind of advice
It can be easily done using winhttrack application, which downloads entire website to your computer.

Windows Phone - Uploading Files to OneDrive Application Registration

I am able to upload files to OneDrive using the API
http://developer.nokia.com/community/wiki/SkyDrive_-_How_to_upload_content_on_Windows_Phone
I would like to register my Windows Phone App but the application management site does not seem to work
https://manage.dev.live.com/
Is there there any other way I can register my app for OneDrive?
Try this:
First of all go to One Drive Dev Center and do login then go do Dashboard, You would be redirected to Register app Wizard that is Register Application

How to upload file directly to MVC4 web application

I have this MVC4 web application that does CRUD actions for my database. Now I need to upload log files from native mobile application to database. Since it upload log file directly from mobile application code, it does not use RAZOR web page. I'm not sure how to set controller parameter to accept log file. Please give me some hint!

Publishing to facebook from different websites using one APP ID

I'm building a custom CMS for my clients and i've implemented the Facebook API for posting on Page Walls as admin. All works well but I do have one question. Let's say the FB app name is 'CMS FB APP'.
The CMS will reside on my clients' servers, is it possible to use 'CMS FB APP' for all of my clients? Or do I have to create an application for each CMS that I install on every different server?
In the app settings I have to set a Site URL and Site Domain but this is for each client different, I don't seem to find a solution for this problem.
If you are using authentication, you have to create a separate app for each url where your app will be hosted. You will receive an error when the user tries to log in with facebook. Facebook requires that your 'next' and 'cancel' urls in the authentication return urls be on the same domain as your app's Site Url. One solution would be to setup an app with a base url such as example.com and have each client on their own subdomain like client1.example.com, client2.example.com, etc. Short of that, you are stuck making separate apps.
It worked for me when using App domains options in facebook app settings.You can enter multiple domains as App domains
The redirect_uri you use in your code must have the same base domain as that specified in the App Domains.