Carousel slider can't load image

My website URL is: http://iuenglishclub.epizy.com/

What I’m seeing is: The carousel slider can’t show the image, and when i checks the source file the image file don’t show up.

I wonder because of the size of the img effect the outcome or not, I am a free user anyway.

<div class="col">
        <div id="IPTphoto" class="carousel slide" data-ride="carousel">
            <div class="carousel-inner" role="listbox">
                <div class="carousel-item active">
                  <img src="Web pic/01.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                  <img src="Web pic/02.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                  <img src="Web pic/03.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                    <img src="Web pic/04.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                    <img src="Web pic/05.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                    <img src="Web pic/06.jpg" heigh="300" width="300">
                </div>
                <div class="carousel-item">
                    <img src="Web pic/07.jpg" heigh="300" width="300">
                  </div>
            </div>
            </div>

And I know the blank between Web pic, I try to put %20 but no change.

I’m using this software: If i run this as a local host( visual studio) it run fine.

Additional information: I wonder because of the size of the img (they quiet large > 2mb) effect the outcome or not, I am a free user anyway.

1 Like

Change .jpg to .JPG or rename your files.
Web pic/01.jpg should be Web pic/01.JPG

1 Like

unix based systems are case sensitive
.JPG is not same file as .jpg ( that’s why it works on the local host - windows OS)

Rename extensions to lowercase :slight_smile:

1 Like

Thank you for your help :>

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.