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

How make a direct download for znote? not redirect link pls

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
2,035
Solutions
9
Reaction score
361
Location
Chile
i want a direct download of my file not use mediafre os whatever pls help me





<?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?>

<h1>Downloads</h1>
<p>In order to play, you need download the custom client</p>


<h2>How to connect and play:</h2>
<ol>
<li>
<a href="http://www.mediafire.com/download/8rv70161jruy7it/Relicaria_setup.exe<?php echo ($config['client']); ?>.exe">Download</a>, install and start the tibia client if you havent already.
</li>
<li>
<a href="http://www.mediafire.com/download/8rv70161jruy7it/Relicaria_setup.exe">Download</a> or download here.
</ol>

<?php
include 'layout/overall/footer.php'; ?>
 
I'm not sure what you mean, but hopefully this will help you.

Option 1:
Code:
<a href="http://www.mediafire.com/download/8rv70161jruy7it/Relicaria_setup.exe">Download</a>, install and start the tibia client if you havent already.

Option 2 (place the file in the same location as the webpages. www or htdocs):
Code:
<a href="Relicaria_setup.exe">Download</a>, install and start the tibia client if you havent already.
 
i chose the option two and its says setup.exe does not exist.

i want when people click in the link to downlaod its directly downlaod from the website
and have no need of put a link of mediafire or something

im using znote
this is the script :
...---------------------------------------
<?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?>

<h1>Downloads</h1>
<p>In order to play, you need download the custom client</p>


<h2>How to connect and play:</h2>
<ol>
<li>
<a href="setup.exe">Download</a>, install and start the tibia client if you havent already.
</li>
<li>
<a href="http://www.mediafire.com/download/4a2q7e2tb2wz2u3/setup.exe">Download</a> or download here.
</ol>

<?php
include 'layout/overall/footer.php'; ?>
 
Only do this:
Instead:
Code:
<a href="Relicaria_setup.exe">Download</a>, install and start the tibia client if you havent already.
Put:
Code:
<a href="files/Relicaria_setup.exe">Download</a>, install and start the tibia client if you havent already.
You only have to create in htdocs or in www a new folder with name: files, put there your executable or any file and done.
 
Back
Top