• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

gallery stopped working -oldschool znoteacc

Jeyci

Banned User
Joined
May 6, 2023
Messages
289
Solutions
3
Reaction score
36
Hi

I have changed my database and few things stopped working in my database, in this case the gallery. Which used to be working, but now it does not work don't know the reason there are no errors on the website.

This is the code related to the gallery, the images are not being displayed in there don't know the reason the only thing that i did was change the database

Lua:
<div class="right_box">
                    <div class="corner_lt"></div><div class="corner_rt"></div><div class="corner_lb"></div><div class="corner_rb"></div>
                    <div class="title"><img src="layout/img/gallery.gif"><span style="background-image: url(layout/widget_texts/gallery.png);"></span></div>
                    <div class="content">
                        <div class="rise-up-content">
                            <div class="slider">
                                <div class="sbox">
                                    <div id="slides">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="border_bottom"></div>
                </div>

this is the whole footer.php
please help

thank in advance
 
layout/img/gallery.gif
Check your folder, this address directory, if it is correct or if you have changed it elsewhere or changed the name. Did you just change the layout or the entire structure? If it was just the layout, you need to make sure the right folders are in the directory to display the images normally.
 
yes everything is okey. i haven't changed anything else than the database, that's the weirdest part. it was working before it
there's the icon location which is working. i mean the entire vhat is being displayed, but no the pictures
Lua:
C:\xampp\htdocs\layout\img

here the code related to the gallery

Code:
</div>
                <div class="right_box">
                    <div class="corner_lt"></div><div class="corner_rt"></div><div class="corner_lb"></div><div class="corner_rb"></div>
                    <div class="title"><img src="layout/img/gallery.gif"><span style="background-image: url(layout/widget_texts/gallery.png);"></span></div>
                    <div class="content">
                        <div class="rise-up-content">
                            <div class="slider">
                                <div class="sbox">
                                    <div id="slides">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                        <img src="layout/slides/1.png">
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="border_bottom"></div>
                </div>

here's the pictures location
Code:
C:\xampp\htdocs\layout\slides
if i go to that folder i have the images, haven't changed anything
 
Back
Top