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 )

19288 put(a) pogledan, 4 odgovor(a) 10.5.2011. 0:04:03Kreirao(la) sowens
sowens

sowens

10.5.2011. 0:04:04
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>?
Ovaj sadržaj još nije ocijenjen. 
5 Reputacija 2 Ukupno objava
khorvat

khorvat

10.5.2011. 7:56:18
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.
Ovaj sadržaj još nije ocijenjen. 
15993 Reputacija 2214 Ukupno objava
sowens

sowens

18.5.2011. 18:01:02

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) { }
Ovaj sadržaj još nije ocijenjen. 
5 Reputacija 2 Ukupno objava
khorvat

khorvat

18.5.2011. 21:09:58
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
Ovaj sadržaj još nije ocijenjen. 
15993 Reputacija 2214 Ukupno objava