|
Post by farfields on Sept 4, 2008 16:06:28 GMT 7
I've written a small and fairly simple webpage. Actually a few linked pages. Mostly it works well. Problem is that some links to full size images are not displayed. Doing some web searching for help has led me to the following link that may be relevant... www.apache.org/dist/httpd/binaries/win32/README.html#problemsI'm hoping for comment from more experienced people whether there is a real issue here. I've worked on a test page that demonstrates with two similar image files linked from the same page and stored in the same directory, that one gets displayed and the other doesn't. File sizes are 4563kB (loads) and 4462KB (not loaded). Log file shows that both images are responded to with 304 codes. I was wondering if the filename or extension made a difference. i.e. jpg versus JPG I seem to have ruled this out. I've also wondered if there was something with read privilege but the simple test above makes me doubt this. I hope the explanation is simple. If the help link provided is the answer, then where abouts in the httpd.conf file should these lines go? I don't see the obvious comparison between the Thecus file and that described in the link. thanks.
|
|
|
Post by dbridges on Sept 12, 2008 5:13:23 GMT 7
This is not unusual behaviour. I have experienced it a lot. Usually closing your browser and reopening it will allow the other images to load. Once they're all cached in your browser they all display fine.
I put it down to the fact that this is a very small CPU and a limited amount of ram trying to do the job of a big web server. The n2100 just doesn't have the grunt.
Upping the ram to 512 helped me a bit.
So did this change...
<IfModule prefork.c> # StartServers 5 # MinSpareServers 5 # MaxSpareServers 10 # MaxClients 150 # MaxRequestsPerChild 0 StartServers 8 MinSpareServers 5 MaxSpareServers 20 MaxClients 250 MaxRequestsPerChild 0 </IfModule>
It didn't eliminate it though just reduced it.
I could be wrong though.
|
|