While i was installing, i found this problem. If you deploy your app with 'Publish Web Site', it don´t copy App_GlobalResources.
So you have your app working fine in your machine, and failing in server with strange things happening as:
1. <> Item in Lists
2. System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +2753251
System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +102
DotNetNuke.Modules.Admin.PortalManagement.SiteSettings.cmdUpdate_Click(Object sender, EventArgs e)
3. Value cannot be null. Parameter name: format
That´s why App_GlobalResources are not loaded in "Localization.Localization.GetString("ModuleUnavailable")", in
Localization.vb, "GetResource(ResourceFileRoot"
If you try to copy by hand it doesn´t owrk, because the app is precompiled.
You have to copy all the app.
Which it the right way to deploy the app ?
Thanks in advance,
Eric