2

From time to time my websites does not show images. When you look at their URL it looks like this:

http://1.1.1.4/bmi/www.domain.com/path/to/image.png

The www.domain.com/path/to/image.png is a valid path.

What is the problem? I use Apache, WSGI and Django.

Kara
  • 6,115
  • 16
  • 50
  • 57
Etam
  • 4,553
  • 10
  • 40
  • 60

3 Answers3

1

It looks like the page source is being mangled by Vodafone. This answer may be related:

Stop mobile network proxy from injecting JavaScript

Community
  • 1
  • 1
Jean Jordaan
  • 626
  • 8
  • 24
1

try to send the header

 header("Cache-Control: no-transform");

(works with german 1&1 provider)

CoffeJunky
  • 1,087
  • 1
  • 12
  • 15
0

How can we know what is the problem ?

Your path may be valid but are you sure the images are located in the proper folder ?

By the way, your website doesn't show the whole website or only images ?

Try to locate your images in another folder (for example the same as your webpages) and then give it a try.

Hope this helps.

Hal
  • 591
  • 4
  • 10
  • 28
  • I think it's common. It occures when Django application works on domain sub.domain.com and is moved to domain.com. – Etam Nov 05 '10 at 08:51