DOWNLOAD Dropbox to Downloader apk

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,950
Awards
4
Offline
what a lovelly little app :) someone has actually thought about what could be usefull
ok most of us know how to do this ourselves but this is totally worth a download fair play to the dev +1 for this :)
 

Havic2u

Active member
Joined
Apr 15, 2021
Messages
305
Awards
3
Offline
Here is alternative that can be hosted.
On your hosting create a php file in it do the following.

<?php
// Initialize variables
$originalUrl = '';
$convertedUrl = '';

// Check if the form was submitted
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Get the URL from the form
$originalUrl = $_POST['url'];

// Check if the URL contains "https://www.dropbox.com"
if (strpos($originalUrl, 'https://www.dropbox.com') !== false) {
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
$convertedUrl = str_replace('https://www.dropbox.com', 'https://dl.dropboxusercontent.com', $originalUrl);
} else {
echo 'The URL does not match the expected pattern. Code might be already converted';
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Download code URL converter</title>
<script>
function copyToClipboard() {
// Get the text from the converted URL text box
var copyText = document.getElementById("convertedUrl");

// Select the text
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices

// Copy the text to the clipboard
document.execCommand("copy");

// Deselect the text
copyText.blur();

// Display a confirmation message
alert("Copied to clipboard: " + copyText.value);
}
</script>
</head>
<body>
<h1>Download code URL converter</h1>
<form method="post">
<label for="url">Enter URL:</label>
<input type="text" id="url" name="url" required value="<?php echo $originalUrl; ?>">
<button type="submit">Submit</button>
</form>
<br>
<?php if (!empty($convertedUrl)) : ?>
<label for="convertedUrl">Converted URL:</label>
<input type="text" id="convertedUrl" value="<?php echo $convertedUrl; ?>" readonly>
<button onclick="copyToClipboard()">Copy to Clipboard</button>
<?php endif; ?>
</body>
</html>
 

Poncho

Owner
Staff member
Admin
Joined
Apr 5, 2021
Messages
1,735
Awards
5
Offline
Here is alternative that can be hosted.
On your hosting create a php file in it do the following.

<?php
// Initialize variables
$originalUrl = '';
$convertedUrl = '';

// Check if the form was submitted
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Get the URL from the form
$originalUrl = $_POST['url'];

// Check if the URL contains "https://www.dropbox.com"
if (strpos($originalUrl, 'https://www.dropbox.com') !== false) {
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
$convertedUrl = str_replace('https://www.dropbox.com', 'https://dl.dropboxusercontent.com', $originalUrl);
} else {
echo 'The URL does not match the expected pattern. Code might be already converted';
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Download code URL converter</title>
<script>
function copyToClipboard() {
// Get the text from the converted URL text box
var copyText = document.getElementById("convertedUrl");

// Select the text
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices

// Copy the text to the clipboard
document.execCommand("copy");

// Deselect the text
copyText.blur();

// Display a confirmation message
alert("Copied to clipboard: " + copyText.value);
}
</script>
</head>
<body>
<h1>Download code URL converter</h1>
<form method="post">
<label for="url">Enter URL:</label>
<input type="text" id="url" name="url" required value="<?php echo $originalUrl; ?>">
<button type="submit">Submit</button>
</form>
<br>
<?php if (!empty($convertedUrl)) : ?>
<label for="convertedUrl">Converted URL:</label>
<input type="text" id="convertedUrl" value="<?php echo $convertedUrl; ?>" readonly>
<button onclick="copyToClipboard()">Copy to Clipboard</button>
<?php endif; ?>
</body>
</html>
Similar to what I use
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,950
Awards
4
Offline
i just do it manually but nice app all the same not to sure about ticking images with bridges or road signs in though :) that would be nice to remove :)
 

Megan1976

New member
Joined
Nov 17, 2021
Messages
2
Offline
any reason why i get https error on downloader, it seems its just one particular file that seems to give this error for about 80% of people who have tried to use it. the usual clear cache etc, doesnt work.
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,950
Awards
4
Offline
any reason why i get https error on downloader, it seems its just one particular file that seems to give this error for about 80% of people who have tried to use it. the usual clear cache etc, doesnt work.
not come across any m8 , you sure its an apk ?
 

zepobinhox

Member
Joined
Oct 8, 2021
Messages
42
Awards
2
Offline
Here is alternative that can be hosted.
On your hosting create a php file in it do the following.

<?php
// Initialize variables
$originalUrl = '';
$convertedUrl = '';

// Check if the form was submitted
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Get the URL from the form
$originalUrl = $_POST['url'];

// Check if the URL contains "https://www.dropbox.com"
if (strpos($originalUrl, 'https://www.dropbox.com') !== false) {
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
$convertedUrl = str_replace('https://www.dropbox.com', 'https://dl.dropboxusercontent.com', $originalUrl);
} else {
echo 'The URL does not match the expected pattern. Code might be already converted';
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Download code URL converter</title>
<script>
function copyToClipboard() {
// Get the text from the converted URL text box
var copyText = document.getElementById("convertedUrl");

// Select the text
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices

// Copy the text to the clipboard
document.execCommand("copy");

// Deselect the text
copyText.blur();

// Display a confirmation message
alert("Copied to clipboard: " + copyText.value);
}
</script>
</head>
<body>
<h1>Download code URL converter</h1>
<form method="post">
<label for="url">Enter URL:</label>
<input type="text" id="url" name="url" required value="<?php echo $originalUrl; ?>">
<button type="submit">Submit</button>
</form>
<br>
<?php if (!empty($convertedUrl)) : ?>
<label for="convertedUrl">Converted URL:</label>
<input type="text" id="convertedUrl" value="<?php echo $convertedUrl; ?>" readonly>
<button onclick="copyToClipboard()">Copy to Clipboard</button>
<?php endif; ?>
</body>
</html>
Code:
<?php
// Initialize variables
$originalUrl = '';
$convertedUrl = '';

// Check if the form was submitted
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Get the URL from the form
$originalUrl = $_POST['url'];

// Check if the URL contains "https://www.dropbox.com"
if (strpos($originalUrl, 'https://www.dropbox.com') !== false) {
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
$convertedUrl = str_replace('https://www.dropbox.com', 'https://dl.dropboxusercontent.com', $originalUrl);
} else {
echo 'The URL does not match the expected pattern. Code might be already converted';
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Download code URL converter</title>
<script>
function copyToClipboard() {
// Get the text from the converted URL text box
var copyText = document.getElementById("convertedUrl");

// Select the text
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices

// Copy the text to the clipboard
document.execCommand("copy");

// Deselect the text
copyText.blur();

// Display a confirmation message
alert("Copied to clipboard: " + copyText.value);
}
</script>
</head>
<body>
<h1>Downloader code URL converter</h1>
<p style="color:red">If using Dropbox convert your link here first.</p>
<form method="post">
<label for="url">Enter your Dropbox URL:</label>
<input type="text" id="url" name="url" required value="<?php echo $originalUrl; ?>">
<button type="submit">Submit</button>
</form>
<br>
<?php if (!empty($convertedUrl)) : ?>
<label for="convertedUrl">Converted Dropbox URL:</label>
<input type="text" id="convertedUrl" value="<?php echo $convertedUrl; ?>" readonly>
<button onclick="copyToClipboard()">Copy to Clipboard</button>
<p style="color:red">Click 'Copy to Clipbaord' and then paste it on the URL box below.</p>
<?php endif; ?>
<br>
<iframe src="https://go.aftvnews.com/" width="100%" height="800px" frameborder="0"></iframe>
    <!-- Adjust width and height according to your preference -->

</body>
</html>

Made it so it loads the https://go.aftvnews.com/ in a frame without leaving the page.
 

Poncho

Owner
Staff member
Admin
Joined
Apr 5, 2021
Messages
1,735
Awards
5
Offline
PHP:
<?php
// Initialize variables
$originalUrl = '';
$convertedUrl = '';

// Check if the form was submitted
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// Get the URL from the form
$originalUrl = $_POST['url'];

// Check if the URL contains "https://www.dropbox.com"
if (strpos($originalUrl, 'https://www.dropbox.com') !== false) {
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
// Replace "dl=0" with "raw=1"
$convertedUrl = str_replace(array("https://www.dropbox.com", "dl=0"), array("https://dl.dropboxusercontent.com", "raw=1"), $originalUrl);
} else {
echo 'The URL does not match the expected pattern. Code might be already converted';
}
}
?>

<!DOCTYPE html>
<html>
<head>
<title>Download code URL converter</title>
<script>
function copyToClipboard() {
// Get the text from the converted URL text box
var copyText = document.getElementById("convertedUrl");

// Select the text
copyText.select();
copyText.setSelectionRange(0, 99999); // For mobile devices

// Copy the text to the clipboard
document.execCommand("copy");

// Deselect the text
copyText.blur();

// Display a confirmation message
alert("Copied to clipboard: " + copyText.value);
}
</script>
</head>
<body>
<h1>Downloader code URL converter</h1>
<p style="color:red">If using Dropbox convert your link here first.</p>
<form method="post">
<label for="url">Enter your Dropbox URL:</label>
<input type="text" id="url" name="url" required value="<?php echo $originalUrl; ?>">
<button type="submit">Submit</button>
</form>
<br>
<?php if (!empty($convertedUrl)) : ?>
<label for="convertedUrl">Converted Dropbox URL:</label>
<input type="text" id="convertedUrl" value="<?php echo $convertedUrl; ?>" readonly>
<button onclick="copyToClipboard()">Copy to Clipboard</button>
<p style="color:red">Click 'Copy to Clipbaord' and then paste it on the URL box below.</p>
<?php endif; ?>
<br>
<iframe src="https://go.aftvnews.com/" width="100%" height="1000px" frameborder="0"></iframe>
    <!-- Adjust width and height according to your preference -->

</body>
</html>

Added the second edit required to make the dropbox code work continuously
2 Edits
// Replace "https://www.dropbox.com" with "https://dl.dropboxusercontent.com"
// Replace "dl=0" with "raw=1"
 
Top