web-deployment

Can I deploy .net 4.0 web application on IIS6?

佐手、 提交于 2019-11-28 11:24:07
I've recently upgraded VS 2008 to VS 2010. On our server we have IIS6 installed and we can not change that in near future. Even though we will develop new applications to be deployed on IIS7 but if situation demands we may need to develop an application using .net 4.0 and to be deployed on IIS6, then in this case I wanted to know whether IIS6 supports .net 4.0 application or not? If I can deploy, then do I need to take care of any configuration or any other setting I should change before deploying it? Aristos My very complicate sites now are on iis6 running asp.net 4.0 My only issue moving

bundle exec rake assets:precompile fails with `unexpected token`

若如初见. 提交于 2019-11-28 11:10:10
I'm ready to deploy my Rails 3.1 app into production, and since I'm using the asset pipeline, I need to precompile my assets . However, when I try this, I get an error apparently related to compiling jQuery: $ bundle exec rake --trace assets:precompile ** Invoke assets:precompile (first_time) ** Execute assets:precompile /home/adam/.rvm/rubies/ruby-1.9.3-p0/bin/ruby /home/adam/.rvm/gems/ruby-1.9.3-p0@rails-3.1/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets --trace ** Invoke assets:precompile:all (first_time) ** Execute assets:precompile:all ** Invoke assets:precompile

Deployment-Error: Java-Webproject from netbeans to glassfish 4.0

与世无争的帅哥 提交于 2019-11-28 09:56:52
问题 Setup I'm using Netbeans 7.4 on Mac OSX Mavericks and Glassfish 4.0 (build 89) on my dedicated server and JDK 1.7 . To use the server locally I setup and ssh-tunnel. The following way: ssh -L 4848:127.0.0.1:4848 -p 6122 glassfish@XXXXXXXXXX This is working perfectly fine, I can access the server via localhost without any problems. To use this server I added a server in Netbeans, see prinscreen: Problem Now I'd like to deploy the project to the server (Right-Click Project -> Deploy) but I get

pass parameters to batch file in msdeploy runcommand

那年仲夏 提交于 2019-11-28 08:13:12
问题 I am not able to get this to work call "%MSDeployPath%msdeploy" -verb:sync -source:runCommand='backup.bat param1' -dest:auto,computername=10.xx.xx.xx,username=xxx,password=yyy It gives me: Warning: 'backup.bat' is not recognized as an internal or external command, operable program or batch file. Warning: The process 'C:\Windows\system32\cmd.exe' (command line '') exited with code '0x1'. Total changes: 1 (0 added, 0 deleted, 1 updated, 0 parameters changed, 0 bytes copied) If I remove the

Error CS1705: “which has a higher version than referenced assembly”

浪子不回头ぞ 提交于 2019-11-28 05:36:00
I've been looking into this for a bit now and haven't gotten it resolved. I get the following error message: Compiler Error Message: CS1705: Assembly 'My.Model, Version=1.1.4422.23773, Culture=neutral, PublicKeyToken=bfde95ba233094b2' uses 'Common, Version=3.3.4273.24368, Culture=neutral, PublicKeyToken=bfde95ba233094b2' which has a higher version than referenced assembly 'Common, Version=3.3.4269.17112, Culture=neutral, PublicKeyToken=bfde95ba233094b2' c:\WINDOWS\assembly\GAC_MSIL\Common\3.3.4269.17112__bfde95ba233094b2\Common.dll: (Location of symbol related to previous error) The web server

How to package & deploy Node.js + express web application?

我是研究僧i 提交于 2019-11-28 02:58:50
I am new to Node.js programming and I have recently created a sample working web application using (express, backbone & other complimentary view technologies, with mongoDB). Now i am at a point where I want to deploy the same on a staging environment and I am not sure how to package this application and distribute the same. [I can take care of mongoDb and setting it up seperately] I am from Java world and in there we create jars for reusable libs and war/ear packages for web applications which is deployed in a servlet container. Now in this case since node.js itself acts as a web container as

Is it possible to use multiple ehcache.xml (in different projects, same war)?

↘锁芯ラ 提交于 2019-11-28 02:34:58
问题 I have a services project and a web project. I need to have eh-cache in both projects. The idea is that if the service project is updated, it's cache-related changes (like keys and invalidation rules) will also be available, while no changes are made to the web project. Being so independent, the service project can also be used with another projects without them even knowing of eh-cache. At this point, my web project also uses eh-cache for its own purposes. I am not much experienced with eh

Enable authentication for IIS app in Powershell

江枫思渺然 提交于 2019-11-27 23:22:23
问题 I know how you set this for IIS web site by following command: Set-WebConfigurationProperty -filter "/system.webServer/security/authentication/windowsAuthentication" -name enabled -value true -PSPath "IIS:\" -location $siteName But I want to set it for the applications inside that website. For example, I have IIS website named "MySite" and inside that, there are two applications. I want to enable Windows authentication for one and not for the other. So enabling at site level will be enabled

How can I deploy Symfony in a subdirectory?

喜夏-厌秋 提交于 2019-11-27 23:20:27
My website is ready to be deployed and I am trying to set it up online. Some informations: The host is OVH. It doesn't allow SSH, I have to send my files with FTP. No command line either. I want to be able to set up the website in a subdirectory: /www/test for now (my current website is still in /www ). The problem: When I open the URL my-website.com/test , a Symfony exception tells me No route found for "GET /test/" , which clearly means that Symfony doesn't know it is in a sub-directory. How can I tell it? EDIT: I just realized it worked when I access my-website.com/test/web . Here I wrote

How can I AutoSave my Visual Studio 2015 files when it loses focus?

徘徊边缘 提交于 2019-11-27 20:58:24
问题 I'm working with CSS, HTML, and JavaScript in my classes, and I've recently started working with Visual Studio 2015. In Notepad++, there's an add-on that allowed me to automatically save all my opened documents as soon as it lost focus. This saved me a lot of time, as I go back and forth frequently between the page I'm working on and the coding for it. I'm hoping there is a similar add-on for Visual Studio 2015, so I can stop forgetting to save before checking my work on its web page! Anyone