Greetings:
I've searched the forum and couldn't find an answer to this so if it has already been addressed, please accept my apologies. I'm having a problem installing courier in my local VS environment. I can load the package and the process nearly completes, all the way to the point when the Umbraco back office tries to reload. Then I see a blank screen in the web browser (because an asynchronous JS call is 500'ing). Checking the logs, I see that it's failing at Umbraco.Core.UmbracoApplicationBase. The error message is:
2015-07-15 14:48:34,437 [47] ERROR Umbraco.Core.UmbracoApplicationBase - [P6096/T36/D10] An unhandled exception occurred
System.ArgumentException: The relative virtual path 'function ShowTransferItemModal(){
var nodeId = UmbClientMgr.mainTree().getActionNode().nodeId;
var nodeType = UmbClientMgr.mainTree().getActionNode().nodeType;
var nodeName = UmbClientMgr.mainTree().getActionNode().nodeName;
/could also use some failure alerts, just in case
var providerguid = 'temp';
var itemid = 'temp';
jQuery.ajax({
type: "POST",
url: "/umbraco/plugins/courier/webservices/Courier.asmx/GetProviderId",
data: "{treeType: '" + nodeType + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
providerguid = ...' is not allowed here.
I get the same error using asp dev server, iis express, and regular IIS. I can't imagine what is going on because I just installed it about two weeks ago on another instance in my local environment and it worked fine.
UPDATE: this problem isn't isolated to Courier, I just tried installing another package (CMS Import) and I'm receiving the exact same exception happening at the same point in the install process (when the back office attempts to re-load).
2015-07-15 16:25:58,409 [6] INFO Umbraco.Core.UmbracoApplicationBase - [P7364/T1/D2] Application shutdown. Reason: BinDirChangeOrDirectoryRename
2015-07-15 16:26:06,946 [16] ERROR Umbraco.Core.UmbracoApplicationBase - [P7364/T1/D8] An unhandled exception occurred
System.ArgumentException: The relative virtual path 'function ExecuteTask(){ UmbClientMgr.contentFrame('/umbraco/plugins/CMSImport/Pages/wizard.aspx?executetask=true&importid=' + UmbClientMgr.mainTree().getActionNode().nodeId);UmbClientMgr.closeModalWindow(); }' is not allowed here.
UPDATE2: when I point the Umbraco install at a SQL ce database, I don't get the error, however this isn't an acceptable solution since I need to duplicate our server environment as much as possible and certain packages aren't compatible with SQL ce.
I've encounter the same issue while upgrading Umbraco from v7.1.2 to v7.2.7.
I've followed the steps described in the documentation, copy /bin; /Umbraco; /Umbraco_Client folders.
Error is received when Umbraco finishes installing and when reloading the white screen is displayed. I've checked the requests and saw that the following are failing with error 500:
[ArgumentException: The relative virtual path 'function ShowTransferItemModal(){
var nodeId = UmbClientMgr.mainTree().getActionNode().nodeId;
var nodeType = UmbClientMgr.mainTree().getActionNode().nodeType;
var nodeName = UmbClientMgr.mainTree().getActionNode().nodeName;
/could also use some failure alerts, just in case
var providerguid = 'temp';
var itemid = 'temp';
jQuery.ajax({
type: "POST",
url: "/umbraco/plugins/courier/webservices/Courier.asmx/GetProviderId",
data: "{treeType: '" + nodeType + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
providerguid = ...' is not allowed here.]
Thanks, Stanislav! I finally resolved this. I think the database I was using was corrupted (even though I was deleting it and re-creating it every time). When I created a new database with a different name, uoolah! It worked!
Hi,
today I saw that there is a new version from umbraco 7.2.8. With this version the upgrade process completed without error. I guess that there was some bug in v7.2.7.
Problem installing Courrier
Greetings: I've searched the forum and couldn't find an answer to this so if it has already been addressed, please accept my apologies. I'm having a problem installing courier in my local VS environment. I can load the package and the process nearly completes, all the way to the point when the Umbraco back office tries to reload. Then I see a blank screen in the web browser (because an asynchronous JS call is 500'ing). Checking the logs, I see that it's failing at Umbraco.Core.UmbracoApplicationBase. The error message is:
I get the same error using asp dev server, iis express, and regular IIS. I can't imagine what is going on because I just installed it about two weeks ago on another instance in my local environment and it worked fine.
You're help is greatly appreciated!
UPDATE: this problem isn't isolated to Courier, I just tried installing another package (CMS Import) and I'm receiving the exact same exception happening at the same point in the install process (when the back office attempts to re-load).
UPDATE2: when I point the Umbraco install at a SQL ce database, I don't get the error, however this isn't an acceptable solution since I need to duplicate our server environment as much as possible and certain packages aren't compatible with SQL ce.
I've encounter the same issue while upgrading Umbraco from v7.1.2 to v7.2.7. I've followed the steps described in the documentation, copy /bin; /Umbraco; /Umbraco_Client folders.
Error is received when Umbraco finishes installing and when reloading the white screen is displayed. I've checked the requests and saw that the following are failing with error 500:
Thanks, Stanislav! I finally resolved this. I think the database I was using was corrupted (even though I was deleting it and re-creating it every time). When I created a new database with a different name, uoolah! It worked!
Hi, today I saw that there is a new version from umbraco 7.2.8. With this version the upgrade process completed without error. I guess that there was some bug in v7.2.7.
Hmmmm... that's the version I installed when this mysteriously fixed itself... I wonder.
@John
Indeed, was an issue that came up with an update in 7.2.7, but addressed in 7.2.8
http://issues.umbraco.org/issue/U4-6843
Hi Paul, thanks for the confirmation!
is working on a reply...