MyBB Community Forums

Full Version: [F] Missing image file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

My servererrorlog is telling me, he is missing an image file:
Quote:[Sun Jun 29 14:47:56 2008] [error] [client 127.0.0.1] File does not exist: D:/*/workspace/mybbbeta/admin/styles/default/images/tsubhead_bg.gif,
referer: http://localhost/*/workspace/mybbbeta/ad...t/main.css

I'm using beta 1.

Greez Garlant
correct, it's in main.css
in line 300
table.general th {
	background: #ADCBE6 url(images/tsubhead_bg.gif) repeat-x;
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.
Change

background: #ADCBE6 url(images/tsubhead_bg.gif) repeat-x;

to

background: #ADCBE6;

and you'll be fine. The image isn't supposed to be there.
(2008-06-30, 01:08 AM)Justin S. Wrote: [ -> ]Change

background: #ADCBE6 url(images/tsubhead_bg.gif) repeat-x;

to

background: #ADCBE6;

and you'll be fine. The image isn't supposed to be there.

That worked for me, thanks!