Resource string (2013) is not found. Language ID = 1

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
Wondering what this error was in my Admin Log and how to get rid of it. This same error is logged over 430 times.

Resource string (2013) is not found. Language ID = 1
11 years ago
Any leads on how to deal with this would be appreciated.
11 years ago
hi - sounds like you have either added a resource string to the code but not added it to the database or deleted it from the database
( configuration-->languages-->view string resources )


which pages does the error occur on  ? i have a suspicion that it happens on every page and that the problem lies in


views/common/footer.cshtml

and that the problem lies with the resource string:


Content.CopyrightNotice

originally in the footer as

    <div class="footer-disclaimer">
        @T("Content.CopyrightNotice", DateTime.Now.Year.ToString(), Model.StoreName)
    </div>
11 years ago
Yeah, it's happening on every page load... I am going to investigate the footer now and post back my findings.
11 years ago
Fixed, Thank you!
10 years ago
Hi Dan,

How you fixe it. I have the same problem with 4 ressource strings and that driving me nuts ..

Mine are :

Resource string (terms of use) is not found. Language ID = 1
Resource string (customer points) is not found. Language ID = 1
Resource string (order history) is not found. Language ID = 1
Resource string (forum) is not found. Language ID = 1

and have almost 10,000 entrees in the log each day. I had to do a Schedule task to delete the log .. if not the site was going down

best regards

yves
10 years ago
Admin > Configuration > Languages >> View string resources

You can add new resources.  However...

Did you have custom programming done, or are you using some 3rd party plugin?
Those are odd Resource Names - they have spaces in them (e.g. "terms of use").  Words in resource names are separated by periods.
(If using some 3rd party plugin, they should have auto-inserted the strings, or provided a SQL script)
10 years ago
New York wrote:
Admin > Configuration > Languages >> View string resources

You can add new resources.  However...

Did you have custom programming done, or are you using some 3rd party plugin?
Those are odd Resource Names - they have spaces in them (e.g. "terms of use").  Words in resource names are separated by periods.
(If using some 3rd party plugin, they should have auto-inserted the strings, or provided a SQL script)


Hi, ive been looking for table that stores this language string, and found this table [LocaleStringResource], but I couldn't find the newest language string which was inserted at administration page. did I open correct table?
10 years ago
Yes, that's the right table
10 years ago
New York wrote:
Yes, that's the right table


thanks, i've found it, my database was linked with another site, that's why i didn't find it in my web
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.