LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   [SOLVED] ruTorrent won't display properly (https://www.linuxquestions.org/questions/linux-software-2/%5Bsolved%5D-rutorrent-wont-display-properly-882307/)

Frohike 05-23-2011 12:57 PM

[SOLVED] ruTorrent won't display properly
 
1 Attachment(s)
See attached image for example. It looks like no css is applied, but the accesslog for lighttpd say they are downloaded. However, no files from the images dir are fetched.

Anyone have an idea what the problem might be?

Solution:
I added a few mime types to my lighttpd.conf file:
Code:

mimetype.assign = (
  ".gif"          =>      "image/gif",
  ".jpg"          =>      "image/jpeg",
  ".jpeg"        =>      "image/jpeg",
  ".png"          =>      "image/png",
  ".css"          =>      "text/css",
  ".html"        =>      "text/html",
  ".htm"          =>      "text/html",
  ".js"          =>      "text/javascript",
  ".txt"          =>      "text/plain",
  ".xml"          =>      "text/xml",
 
# make the default mime type application/octet-stream.
  ""              =>      "application/octet-stream"
)

Not sure which one did the trick, but now it's working :)

EricTRA 05-24-2011 12:57 AM

Hello,

Glad you've got it solved and thank you for sharing the solution that worked for you. I'm sure others in similar situation will appreciate it. Have fun with Linux. Off the Zero Reply List.

Kind regards,

Eric


All times are GMT -5. The time now is 10:20 AM.