Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsLanguage PacksLanguage PacksCore Localization File Not Found in 3.2.xCore Localization File Not Found in 3.2.x
Previous
 
Next
New Post
12/8/2005 1:19 PM
 

Hi,

Since I've upgrade my test sight to version 3.2.0 (and also to 3.2.1) I get Admin Alerts in the eventlog, and get the following error.

Core Localization File Not Found: : /DesktopModules/UsersOnline/App_LocalResources/UsersOnline.ascx.en-gb.resx
Server Name: RSV2K3

This didn't happen before. The only reason I change to en-GB is to get the date format changes. And the Locales.xml is set to fallback to en-US. 

So not really sure why I am getting all the errors. Do I need to create copies of all the resx files to get over this error? Even though they will be exactly the same as the orginals?

Any help would be appreciated.

Thanks
Roger


DNN MVP
Events - Get the latest version - Upgrade now!!
Feedback 6.4.2 - Now available - Give it a go!
Find us on Codeplex - DNN Events, DNN Feedback
Requirements/Bugs - Please submit them on Codeplex
 
New Post
12/31/2005 12:18 AM
 

This has been a really big error for me and a couple of other people also that have posted on the core asp.net forums.  It's so horribly bad that it took down the Database before I shut all logging off.  Everyone is getting it on different modules also.  Mine is coming from Gallery on one site and Text/Html on another.  Removing and deleting all the active language in 3.2.2 seems to have helped a bit.  I get the errors on one site now and not the other but it's still causing a problem.

 

Cheers,

Paul


Paul Davis
 
New Post
1/24/2006 1:26 AM
 
Waiting for a patch, I altered this sp:


ALTER PROCEDURE dbo.AddEventLog
@LogGUID varchar(36),
@LogTypeKey nvarchar(35),
@LogUserID int,
@LogUserName nvarchar(50),
@LogPortalID int,
@LogPortalName nvarchar(100),
@LogCreateDate datetime,
@LogServerName nvarchar(50),
@LogProperties ntext,
@LogConfigID int
AS


IF @LogProperties not like '%Core Localization File Not Found%'
BEGIN



INSERT INTO dbo.EventLog
(LogGUID,
LogTypeKey,
LogUserID,
LogUserName,
LogPortalID,
LogPortalName,
LogCreateDate,
LogServerName,
LogProperties,
LogConfigID)
VALUES
(@LogGUID,
@LogTypeKey,
@LogUserID,
@LogUserName,
@LogPortalID,
@LogPortalName,
@LogCreateDate,
@LogServerName,
@LogProperties,
@LogConfigID)

DECLARE @NotificationActive bit
DECLARE @NotificationThreshold bit
DECLARE @ThresholdQueue int
DECLARE @NotificationThresholdTime int
DECLARE @NotificationThresholdTimeType int
DECLARE @MinDateTime smalldatetime
DECLARE @CurrentDateTime smalldatetime

SET @CurrentDateTime = getDate()


SELECT TOP 1 @NotificationActive = EmailNotificationIsActive,
@NotificationThreshold = NotificationThreshold,
@NotificationThresholdTime = NotificationThresholdTime,
@NotificationThresholdTimeType = @NotificationThresholdTimeType,
@MinDateTime =
CASE
--seconds
WHEN NotificationThresholdTimeType=1 THEN DateAdd(second, NotificationThresholdTime * -1, @CurrentDateTime)
--minutes
WHEN NotificationThresholdTimeType=2 THEN DateAdd(minute, NotificationThresholdTime * -1, @CurrentDateTime)
--hours
WHEN NotificationThresholdTimeType=3 THEN DateAdd(Hour, NotificationThresholdTime * -1, @CurrentDateTime)
--days
WHEN NotificationThresholdTimeType=4 THEN DateAdd(Day, NotificationThresholdTime * -1, @CurrentDateTime)
END
FROM dbo.EventLogConfig
WHERE ID = @LogConfigID

IF @NotificationActive=1
BEGIN

SELECT @ThresholdQueue = COUNT(*)
FROM dbo.EventLog
INNER JOIN dbo.EventLogConfig
ON dbo.EventLog.LogConfigID = dbo.EventLogConfig.ID
WHERE LogCreateDate > @MinDateTime

PRINT 'MinDateTime=' + convert(varchar(20), @MinDateTime)
PRINT 'ThresholdQueue=' + convert(varchar(20), @ThresholdQueue)
PRINT 'NotificationThreshold=' + convert(varchar(20), @NotificationThreshold)

IF @ThresholdQueue > @NotificationThreshold
BEGIN
UPDATE dbo.EventLog
SET LogNotificationPending = 1
WHERE LogConfigID = @LogConfigID
AND LogNotificationPending IS NULL
AND LogCreateDate > @MinDateTime
END
END
END
GO
 
New Post
1/24/2006 4:05 PM
 
After discussing this we've decided to remove that call on the next version. It does not offer any extra benefit and as you noted, and can produce significant overload on a busy system without any real need.


Vicenç Masanas
Banyoles, Girona - Spain

Disgrafic.com    PSD to DNN
 
New Post
2/16/2006 8:04 PM
 

Just for the record, I am getting this error in 4.0.2. Is there a simple fix or do I need to wait. I applied the change to the stored procedure and the log no longer has these.

Mike

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsLanguage PacksLanguage PacksCore Localization File Not Found in 3.2.xCore Localization File Not Found in 3.2.x


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out