All Projects → FriendsOfREDAXO → download

FriendsOfREDAXO / download

Licence: MIT license
Dateidownloads von Files aus dem Medienpool über PHP oder X-SendFile

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to download

yrewrite scheme
Stellt verschiedene URL-Schemes für YRewrite mehrsprachig zur Verfügung
Stars: ✭ 33 (+10%)
Mutual labels:  redaxo, yrewrite, redaxo-addon
media manager autorewrite
Generiert schöne, SEO-freundliche URLs für Medien
Stars: ✭ 30 (+0%)
Mutual labels:  redaxo, yrewrite, redaxo-addon
css above the fold
🐣 Performance: Bindet Styles, die für den sichtbaren Bereich benötigt werden, inline in den Head ein.
Stars: ✭ 24 (-20%)
Mutual labels:  redaxo, redaxo-addon
redactor2
Integriert den Redactor WYSIWYG-Editor in Version 2
Stars: ✭ 55 (+83.33%)
Mutual labels:  redaxo, redaxo-addon
Floatplane-Downloader
Project for automatically organizing and downloading Floatplane videos for plex.
Stars: ✭ 94 (+213.33%)
Mutual labels:  downloader, download
frontend edit
🐣 REDAXO Frontend-Toolbar und Editbuttons an jedem Slice, um direkt Module bearbeiten zu können.
Stars: ✭ 30 (+0%)
Mutual labels:  redaxo, redaxo-addon
gb-dl
A python based utility to download courses from infosec4tc.teachable.com , academy.ehacking.net and stackskills.com for personal offline use.
Stars: ✭ 33 (+10%)
Mutual labels:  downloader, download
canvas-record
A one trick pony package to record and download a video from a canvas animation.
Stars: ✭ 64 (+113.33%)
Mutual labels:  downloader, download
iconpicker
Font Awesome-Iconpicker für REDAXO 5, auch andere Font-Icons möglich
Stars: ✭ 29 (-3.33%)
Mutual labels:  redaxo, redaxo-addon
fbdl
📥 Download publicly shared videos from Facebook with an ease!
Stars: ✭ 29 (-3.33%)
Mutual labels:  downloader, download
CoubDownloader
A simple downloader for coub.com
Stars: ✭ 64 (+113.33%)
Mutual labels:  downloader, download
youtube-downloader-python
You can download the YouTube video for free and convert it to any extension you want.
Stars: ✭ 20 (-33.33%)
Mutual labels:  downloader, download
twoeg
🐣 Implementiert Twig-Templates für REDAXO
Stars: ✭ 23 (-23.33%)
Mutual labels:  redaxo, redaxo-addon
piwik
Piwik-Besucherstatistik für REDAXO
Stars: ✭ 22 (-26.67%)
Mutual labels:  redaxo, redaxo-addon
undo
Gelöschte Artikel, Slices und Kategorien wiederherstellen
Stars: ✭ 31 (+3.33%)
Mutual labels:  redaxo, redaxo-addon
DownloadManagerPlus
Using faster and easier than Android Download Manager
Stars: ✭ 80 (+166.67%)
Mutual labels:  downloader, download
fansly
Simply scrape / download all the media from an fansly account
Stars: ✭ 351 (+1070%)
Mutual labels:  downloader, download
Telegram Upload
Upload and download files from Telegram up to 2GiB using your account
Stars: ✭ 223 (+643.33%)
Mutual labels:  downloader, download
Annie
👾 Fast and simple video download library and CLI tool written in Go
Stars: ✭ 16,369 (+54463.33%)
Mutual labels:  downloader, download
udemy-downloader
A Udemy downloader that can download lectures, with DRM support.
Stars: ✭ 507 (+1590%)
Mutual labels:  downloader, download

Download Utility

Dieses AddOn schickt eine beliebige Datei aus dem Medienpool als Force-Download in den Browser. Damit das AddOn funktioniert, muss folgende Zeile in die .htaccess:

# REWRITE RULE FOR SEO FRIENDLY DOWNLOAD URLS
RewriteRule ^download[s]?/([^/]*) index.php?download_utility=download&file=$1 [NC,L]

Platzier es bitte über oder unter (die Zeile gibt es nur, wenn du die YRewrite .htaccess nutzt)

# REWRITE RULE FOR SEO FRIENDLY IMAGE MANAGER URLS

Falls du nginx nutzt, musst du folgendes in deine Config packen:

rewrite ^/download[s]?/([^/]*) /index.php?download_utility=download&file=$1 last;

Wie komm ich an die Downloadlinks?

<?php
    echo DownloadUtility::getDownloadFile($filename = '', $rewrite = true);

    // Ausgabe: /download/dateiname.jpg
    // Falls rewrite auf false steht: index.php?download_utility=download&file=dateiname.jpg
?>

X-Send was???

Wenn dir

  • X-SendFile
  • X-Accel-Redirect

keine Begriffe sind, solltest du die Einstellung nicht aktivieren, denn der Download wird höchstwahrscheinlich nicht funktionieren. X-Send ist ein Apache / nginx / Lighttpd Mod, um (große) Dateien direkt über den Server abzuwickeln. Dieses Modul ist normalerweise nirgendswo per Default aktiv und nur für spezielle Umgebungen gedacht. Falls du dich damit auskennst und sicher bist, dass die Module aktiv sind, kannst du die Checkbox aktivieren, ansonsten lass sie bitte deaktiviert. Im deaktivierten Zustand werden die Dateien wie gewohnt über PHP ausgeliefert.

Falls die Mods installiert sind, muss folgendes in deine .htaccess (oder Apache/Nginx Conf):

XSendFile On
XSendFilePath /absoluter/pfad/bis/media

Settingspage

Die Settingspage integriert sich als Tab-Reiter innerhalb des AddOns Media Manager mit dem Titel "Download".

Installation

Hinweis: dies ist kein Plugin!

  • Release herunterladen und entpacken.
  • Ordner umbenennen in download.
  • In den Addons-Ordner legen: /redaxo/src/addons.

Oder den REDAXO-Installer / ZIP-Upload AddOn nutzen!

Voraussetzungen

  • media_manager AddOn
  • mod_rewrite, falls die htaccess Lösung genutzt werden soll
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].