Mono Support Editing Content 

Viewed 19314 time(s), 4 post(s), 5/10/2011 12:04:03 AM - by sowens
5/10/2011 12:04:04 AM
5 Reputation 2 Total posts

I installed MonoX a few times and I think I may be doing something wrong, either with the install or with permissions. My problem is after the install, everything looks great. However, when I login as the admin and try to edit content, all I get is an empty box with no content. The Rich text editor is also missing. Anyone have any suggestions on what to look for>?

1
5/10/2011 7:56:18 AM
15993 Reputation 2214 Total posts

Hi,

can you please check if you get any Javascript errors while trying to edit the content, and can you attach a screenshot of the issue so we can investigate further.

Regards.

2
5/18/2011 6:01:02 PM
5 Reputation 2 Total posts


I am getting SYS is not defined at the place listed below and on 2 other areas...and a lot of warnings. When I hit edit, I get a big white box with nothing in it and not controls.

http://test.com.scarlet.arvixe.com/Default.aspx


/*
* MonoX watermatk text utility for textbox and textarea fields.
* NOTE: This script requires jQuery to work. Download jQuery at www.jquery.com
*
*/

$(document).ready(function() {
SwapValues();
var prm = Sys.WebForms.PageRequestManager.getInstance();
if (prm != null) {
prm.add_endRequest(function(s, e) {
SwapValues();
});
}
});

function SwapValues() {
swapValues = [];
$(".jq_swap_value").each(
function(i) {
swapValues[i] = $(this).val();
$(this).focus(function() {
if ($(this).val() == swapValues[i]) {
$(this).val("")
}
}
).blur(function() {
if ($.trim($(this).val()) == "") {
$(this).val(swapValues[i])
}
}
)
}
)
}

//DO NOT REMOVE - Note: Call the notifyScriptLoaded method in all file-based scripts (.js files) to indicate to the ScriptManager object that a referenced script has finished loading. - http://msdn.microsoft.com/en-us/library/bb310952(VS.90).aspx
try { if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded(); } catch (ex) { }

3
5/18/2011 9:09:58 PM
15993 Reputation 2214 Total posts

Hi,

if you take a look at the Fiddler2 results for the link you have provided us with you will notice that all the MS AJAX scripts are not loading and basically all handlers are disabled. 

If you try to load the following URL you will get the 404 Not Found
http://test.com.scarlet.arvixe.com/MonoX/ModuleGallery/ProfileModule/MonoSoftware.MonoX.GetImage.axd?git=UserAvatar&entityid=a117436d-0970-4396-bf02-93da7bff6522&CacheDuration=0&18446744073453345046

Can you please check a few things before we go further:
1. Check what version of MonoX are you running for .NET 3.5 or 4.0 and adjust the Application Pool accordingly
2. Check the Application Pool mode and get that back to us (is it Integrated or Classic)

At the moment I think this caused by some misconfiguration, can you check the above and we will go from there.

Regards

4
This is a demo site for MonoX. Please visit Mono Software for more info.