Missing file error

Rho Delta

Well-known member
I just noticed I am constantly getting this error
[Wed Nov 14 10:14:39 2012] [error] [client 12.51.7.26] File does not exist: /home/public_html/styles/default/xenforo/widgets/read.png

I do have this file though and see it all the times on my forum
http://bit.ly/SVAh6k
 
Weird. It isn't a default XenForo file. It's certainly not in the XenForo full package.

I can only assume it's referenced in one of your templates, maybe do a search in Admin CP > Appearance > Search Templates > Text: read.png

In a default XenForo installation you shouldn't get any results.
 
The original thread for this template modification is locked so I have no where to ask for support. If I can't get this fixed I need to remove the modification as it is causing lots of server errors. Can someone either help me resolve this or help me uninstall this?
 
You can see that image referenced in the CSS in the first post of that thread:

http://xenforo.com/community/threads/tutorial-sub-forum-grid-listing.10978/

Code:
.subForumsGrid { padding-right: 4px; }
.subForumsGrid .blockLinksGrid { width: 100%; display: inline-block; padding: 5px; }
.subForumsGrid .fullWidth { width: 100% !important; padding-bottom: 4px; }
.subForumsGrid .node { width: 20%; float: left; }
.subForumsGrid .node ol { padding-left: 10px; }
.subForumsGrid .node  a { padding: 5px 10px 5px 18px; }
.subForumsGrid .node .node a { padding: 0px 10px 1px 18px; }
.subForumsGrid .node .nodeTitle { font-size: 11px; white-space: nowrap; overflow: hidden; }
.subForumsGrid .node div,
.subForumsGrid .node div a:hover
{
background-image: url('@imagePath/xenforo/widgets/read.png');
background-repeat: no-repeat;
background-position: 0px 50%;
}
.subForumsGrid .node div.unread,
.subForumsGrid .node div.unread a:hover
{
background-image: url('@imagePath/xenforo/widgets/unread.png');
background-repeat: no-repeat;
background-position: 0px 50%;
}

That image doesn't exist in the default software. Is the missing image causing layout problems on your forum? If not then probably just remove it from the CSS so it is not called.
 
You can see that image referenced in the CSS in the first post of that thread:

http://xenforo.com/community/threads/tutorial-sub-forum-grid-listing.10978/

Code:
.subForumsGrid { padding-right: 4px; }
.subForumsGrid .blockLinksGrid { width: 100%; display: inline-block; padding: 5px; }
.subForumsGrid .fullWidth { width: 100% !important; padding-bottom: 4px; }
.subForumsGrid .node { width: 20%; float: left; }
.subForumsGrid .node ol { padding-left: 10px; }
.subForumsGrid .node  a { padding: 5px 10px 5px 18px; }
.subForumsGrid .node .node a { padding: 0px 10px 1px 18px; }
.subForumsGrid .node .nodeTitle { font-size: 11px; white-space: nowrap; overflow: hidden; }
.subForumsGrid .node div,
.subForumsGrid .node div a:hover
{
background-image: url('@imagePath/xenforo/widgets/read.png');
background-repeat: no-repeat;
background-position: 0px 50%;
}
.subForumsGrid .node div.unread,
.subForumsGrid .node div.unread a:hover
{
background-image: url('@imagePath/xenforo/widgets/unread.png');
background-repeat: no-repeat;
background-position: 0px 50%;
}

That image doesn't exist in the default software. Is the missing image causing layout problems on your forum? If not then probably just remove it from the CSS so it is not called.

It's just logging server errors, the layout is fine. Is this something I should worry about? Would I take out that one line or that section?
 
Top Bottom