deployment

How do I configure a .net core API to work in IIS?

落花浮王杯 提交于 2020-03-30 02:01:35
问题 I've got a .net core API created in Visual Studio 2017 that's working fine. When I go to deploy it I get error message HTTP Error 500.19 with error code 0x8007000d. I've found multiple solutions online such as making sure windows features are installed, removing the .net CLR version, changing the application pool identity, changes to web.config and applicationHost.config, but nothing has worked. Is there a way to definitively find what the problem is or am I stuck doing trial and error with

Cannot find file on trying to deploy to heroku (works locally)

耗尽温柔 提交于 2020-03-22 07:47:04
问题 I am trying to deploy my app to Heroku, it works in local but no luck online. I deleted and reinstalled node modules. I had another error quite related to this (file not found same names etc) I changed the relative paths thinking that would fix the issue but I am getting nothing to come out of it The error is: Cannot find file './Components/SearchBar/SearchBar' import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; import SearchBar from './Components

Cannot find file on trying to deploy to heroku (works locally)

萝らか妹 提交于 2020-03-22 07:44:05
问题 I am trying to deploy my app to Heroku, it works in local but no luck online. I deleted and reinstalled node modules. I had another error quite related to this (file not found same names etc) I changed the relative paths thinking that would fix the issue but I am getting nothing to come out of it The error is: Cannot find file './Components/SearchBar/SearchBar' import React, { Component } from 'react'; import logo from './logo.svg'; import './App.css'; import SearchBar from './Components

Publish is not transforming web.config?

℡╲_俬逩灬. 提交于 2020-03-18 10:35:38
问题 I made a web.config ( full file , it doesn't show XML errors) <?xml version="1.0"?> <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <configSections> ... <location path="." inheritInChildApplications="false"> <connectionStrings> <add name="ElmahLog" connectionString="data source=~/App_Data/Error.db" /> <add name="database" connectionString="w" providerName="System.Data.EntityClient"/> </connectionStrings> </location> ... with a transform file ( web.Staging.config )

error: This is probably not a problem with npm. There is likely additional logging output above

和自甴很熟 提交于 2020-03-18 06:24:08
问题 In my project, I'm using Angular6 for the frontend. Now what I'm trying to do is deploy my project which is in remote server into the actual server. I'm using npm run build -prod command to build the frontend first. But I can't build my project since the following error occurs again and again, npm ERR! code ELIFECYCLE npm ERR! errno 134 npm ERR! Trackit-Revamp@6.0.0 build: `ng build --prod --build-optimizer --aot` npm ERR! Exit status 134 npm ERR! npm ERR! Failed at the Trackit-Revamp@6.0.0

error: This is probably not a problem with npm. There is likely additional logging output above

好久不见. 提交于 2020-03-18 06:22:13
问题 In my project, I'm using Angular6 for the frontend. Now what I'm trying to do is deploy my project which is in remote server into the actual server. I'm using npm run build -prod command to build the frontend first. But I can't build my project since the following error occurs again and again, npm ERR! code ELIFECYCLE npm ERR! errno 134 npm ERR! Trackit-Revamp@6.0.0 build: `ng build --prod --build-optimizer --aot` npm ERR! Exit status 134 npm ERR! npm ERR! Failed at the Trackit-Revamp@6.0.0

How to make index.html not to cache when the site contents are changes in AngularJS website?

為{幸葍}努か 提交于 2020-03-17 04:11:10
问题 Normally for .js and .css file we will append a version during build like xx.js?v=123 , and then after website deploy, we can get the new version of js and CSS. But I don't see a place talking about how to make the index.html file upgrade when website deployment happen. And we do see in IE that the HTML content should have been changed but it still use the old HTML content. One solution I find from google is to <meta http-equiv="Cache-control" content="no-cache"> However, I am not sure

Changing to llvm compiler when deploying iPhone app

拜拜、爱过 提交于 2020-03-16 09:16:33
问题 I found this: Changing Compiler to llvm-clang on existing iPhone Project But that does not help. I am still getting the error. Setting the BaseSDK to the iPhoneSimulator 3.1 seems to work. But I don't think this is the right thing to do... 回答1: If you read the answer and comments on that question, you'll see that there is not yet a version of LLVM that will target the iPhone device. You can target the iPhone Simulator using LLVM GCC, with some fiddling, because that is running on a Mac. Even

Changing to llvm compiler when deploying iPhone app

隐身守侯 提交于 2020-03-16 09:14:14
问题 I found this: Changing Compiler to llvm-clang on existing iPhone Project But that does not help. I am still getting the error. Setting the BaseSDK to the iPhoneSimulator 3.1 seems to work. But I don't think this is the right thing to do... 回答1: If you read the answer and comments on that question, you'll see that there is not yet a version of LLVM that will target the iPhone device. You can target the iPhone Simulator using LLVM GCC, with some fiddling, because that is running on a Mac. Even

Changing to llvm compiler when deploying iPhone app

我是研究僧i 提交于 2020-03-16 09:14:00
问题 I found this: Changing Compiler to llvm-clang on existing iPhone Project But that does not help. I am still getting the error. Setting the BaseSDK to the iPhoneSimulator 3.1 seems to work. But I don't think this is the right thing to do... 回答1: If you read the answer and comments on that question, you'll see that there is not yet a version of LLVM that will target the iPhone device. You can target the iPhone Simulator using LLVM GCC, with some fiddling, because that is running on a Mac. Even