Resolved ~ Why do I have all these errors in my log?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
Why do I have all these errors in my log?  There are 65 errors, all indicating "Resource string is not found"

CommonError  
Severity:  11  
Message:  Resource string is not found  
Exception:  System.Exception: Resource string (a dog's life) is not found. Language ID =7  
IP address:  65.35.136.169  
Customer:  [email protected]  
Page URL:  http://michelesmuttmunchies.com/Products/3-squirrel-nut-vitamins.aspx  
Created on:  2/25/2010 1:21:55 AM  

Chad
14 years ago
<li><a href="<%=Page.ResolveUrl("http://michelesmuttmunchies.com/Topic/11-nutritional.aspx")%>">
            <%=GetLocaleResourceString("Nutritional")%></a> </li>
        <li><a href="<%=Page.ResolveUrl("http://michelesmuttmunchies.com/Topic/13-a-dogs-life.aspx")%>">
            <%=GetLocaleResourceString("A Dog's Life")%></a> </li>
        <li><a href="<%=Page.ResolveUrl("http://michelesmuttmunchies.com/Topic/12-loved-ones.aspx")%>">
            <%=GetLocaleResourceString("Loved Ones")%></a> </li>


you are calling for resource strings that do not exist - the proper thing to do is to create new resource strings and give them a value

the wrong way (but it will work perfectly well) is simply to replace the resource string

<%=GetLocaleResourceString("A Dog's Life")%>

with the text you want to appear ie

A Dog's Life

cheers, hayden
14 years ago
Thank you for your reply,

I changed the headerMenu.ascx back to it's default state as you requested.  I also made another change by moving the search.ascx string to the infoBlock.ascx, but I didn't change it back.

I am all ears,
Chad
14 years ago
chad, i posted a reply to your post about how to edit / create resource strings

https://www.nopcommerce.com/Boards/Topic.aspx?TopicID=3117

let me know if you need any assistance

cheers, hayden
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.