The problematic page is located at:
Code:
http://www.kemklean.co.za/files/systems/what-can-we-do-for-you.html
While inside it, your message array looks like so:
Code:
messages[0] = new Array('images/stories/kemklean_images/what_we_can_do/preferential.png','',"");
messages[1] = new Array('images/stories/kemklean_images/what_we_can_do/peace.png','',"");
messages[2] = new Array('images/stories/kemklean_images/what_we_can_do/microbiology.png','',"");
messages[3] = new Array('images/stories/kemklean_images/what_we_can_do/cleaning.png','',"");
messages[4] = new Array('images/stories/kemklean_images/what_we_can_do/coded.png','',"");
messages[5] = new Array('images/stories/kemklean_images/what_we_can_do/budget.png','',"");
messages[6] = new Array('images/stories/kemklean_images/what_we_can_do/hygiene.png','',"");
messages[7] = new Array('images/stories/kemklean_images/what_we_can_do/msds.png','',"");
messages[8] = new Array('images/stories/kemklean_images/what_we_can_do/operations.png','',"");
Since the above image paths are relative, it means the browser will look for them starting in the systems/ directory, or the directory the problem page is located at, such as:
Code:
http://www.kemklean.co.za/files/systems/images/stories/kemklean_images/what_we_can_do/preferential.png
That's why the images are not appearing. To fix this, you can simply specify absolute URLs to the images in your messages array so they point to the correct location on your server.
Bookmarks