MonoX support board

Start the conversation, ask questions and share tips and solutions with fellow developers.

Non-registered users can only browse through our support boards. Please register now if you want to post your questions. It takes a second and it is completely free. Alternatively, you can log in without registration using your credentials at major sites such as Google, Microsoft Live, OpenId, Facebook, LinkedIn or Yahoo.

Editing Content  (Mono Support )

Viewed 18454 time(s), 4 post(s) 5/10/2011 12:04:03 AMby sowens
sowens

sowens

5/10/2011 12:04:04 AM
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>?
This content has not been rated yet. 
5 Reputation 2 Total posts
khorvat

khorvat

5/10/2011 7:56:18 AM
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.
This content has not been rated yet. 
15993 Reputation 2214 Total posts
sowens

sowens

5/18/2011 6:01:02 PM

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) { }
This content has not been rated yet. 
5 Reputation 2 Total posts
khorvat

khorvat

5/18/2011 9:09:58 PM
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
This content has not been rated yet. 
15993 Reputation 2214 Total posts