• 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!

AAC The unusual problem of the gesior 2012

Daniel Kopeć

Member
Joined
Dec 8, 2018
Messages
125
Solutions
4
Reaction score
12
Location
Poland
I have an unusual problem on my website in the download tab.

The problem is that the text at the bottom of the page, Footer, acts as the last link to download Elfbot.
downloads problem.png

My download.php script:
PHP:
<?PHP
$main_content .= '<font face="Comic Sans MS">
<center><h1><font size="5" color="red"><br>Wszystko co pobierasz z tej strony jest w 100% czyste i prosto z naszego serwisu!</font></h1>
<br>
<a href="http://25.122.182.50/download/tibia860.exe"/><span style="font-size: medium">Tibia 8.6 :: Pobierz</span><br>
<br/>
<a href="http://25.122.182.50/download/Loader.rar"/><span style="font-size: medium">IP Changer :: Pobierz</span><br>
<br/>
<a href="http://25.122.182.50/download/ElfBotNG 8.6.rar"/><span style="font-size: medium">ElfBotNG 8.6 [CRACK] :: Pobierz</span><br>
</font>
';
?>

Piece of layout.php script:

PHP:
PHP:
<?PHP
$time_end = microtime_float();
$time = $time_end - $time_start;
?>
            Account Maker made by Gesior. Layout by CipSoft GmbH.<br/>Page has been viewed <?PHP echo $page_views; ?> times. Load time: <?PHP echo round($time, 4); ?> seconds, queries: <?PHP echo $SQL->queriesCount; ?>
          </div>
        </div>

How to Fix It?
 
Solution
PHP:
<?PHP
$main_content .= '<font face="Comic Sans MS">
<center><h1><font size="5" color="red"><br>Wszystko co pobierasz z tej strony jest w 100% czyste i prosto z naszego serwisu!</font></h1>
<br>
<a href="http://25.122.182.50/download/tibia860.exe"><span style="font-size: medium">Tibia 8.6 :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/Loader.rar"><span style="font-size: medium">IP Changer :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/ElfBotNG 8.6.rar"><span style="font-size: medium">ElfBotNG 8.6 [CRACK] :: Pobierz</span></a><br>
</font>
';
?>
PHP:
<?PHP
$main_content .= '<font face="Comic Sans MS">
<center><h1><font size="5" color="red"><br>Wszystko co pobierasz z tej strony jest w 100% czyste i prosto z naszego serwisu!</font></h1>
<br>
<a href="http://25.122.182.50/download/tibia860.exe"><span style="font-size: medium">Tibia 8.6 :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/Loader.rar"><span style="font-size: medium">IP Changer :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/ElfBotNG 8.6.rar"><span style="font-size: medium">ElfBotNG 8.6 [CRACK] :: Pobierz</span></a><br>
</font>
';
?>
 
Solution
PHP:
<?PHP
$main_content .= '<font face="Comic Sans MS">
<center><h1><font size="5" color="red"><br>Wszystko co pobierasz z tej strony jest w 100% czyste i prosto z naszego serwisu!</font></h1>
<br>
<a href="http://25.122.182.50/download/tibia860.exe"><span style="font-size: medium">Tibia 8.6 :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/Loader.rar"><span style="font-size: medium">IP Changer :: Pobierz</span></a><br>
<br/>
<a href="http://25.122.182.50/download/ElfBotNG 8.6.rar"><span style="font-size: medium">ElfBotNG 8.6 [CRACK] :: Pobierz</span></a><br>
</font>
';
?>
Ah yes. I forgot to anchor the hyperlink with </a> :)
Thank you very much for your help :) REP ++
 
Back
Top