Du bist nicht angemeldet.
Abwesend
Hoster hinzugefügt.
Viel Fehlerbehandlung gibt's noch nicht, also testen.
Auch keine Captchas berücksichtigt, bei mir kamen keine.
Der Beitrag wurde geändert von rolex0815 (am 03. Feb. 2014 um 20:12 Uhr)
Abwesend
ein Tick zu spät ... hier meine Variante
#!/bin/ash
# Copyright (c) 2014 genuK/genuk@gmx.net
# Fritzload hosterplugin for http://potload.com
# 03.02.2014
DEBUG_GET=1
potload_com(){
local filename data filesize url f=$tmp/response.htm c=$tmp/dl.cookie.txt
local checklink="http://potload.com/?op=checkfiles&list="
while [ $try -lt $retries ]; do
try=$(($try+1))
# check link availability
GET "$checklink$param" $f "-b $c -c $c" "GET-CHECKURL"
# check $f if link is still available
if grep -q -i "$param".*"Filename don't match!" $f; then
errmsg "=== Link: $param not found! Falsche link adress? ===" ; return 1
elif grep -q -i "$param".*"not found" $f; then
errmsg "=== Link: $param nicht gefunden. Link ungueltig ==="; return 1
elif grep -q -i "$param".*"found" $f; then
print "=== Link: $param gefunden. Link gueltig ==="
else
errmsg "=== Checking link ...Something doesn't work! ==="; return 1
fi
# get the url from downloadlist and load the answer in $f
GET "$param" $f "--cookie $c --cookie-jar $c" "GET1"
# check http status code
if [ "$H_CODE" = 404 ] && grep -qiE "<h3>File Not found</h3>" $f ;then
errmsg "SERVER-FEHLER: Link nicht gefunden!; HTTP-Statuscode: $H_CODE"
errmsg "Link Adresse falsch?"
return 1
elif [ "$H_CODE" != 200 ]; then
errmsg "SERVER-FEHLER: $H_CODE"
return 1
elif grep -qiE "You have reached the download[-\ ]limit" $f; then
print "=== Download limit erreicht. Versuche reconnect. ==="
{ needReconnect; continue; }
fi
# extract the filename from the form in $f
filename=$(formValue fname $f)
if [ -z "$filename" ];then
# write the log and quit if "$filename" not found
errmsg "FAILED: Could not resolve FILENAME"
return 1
else
# write the log and do a check if file already loaded
print "=== Filename gefunden: $filename ==="
notalreadyLoaded "$targetdir/$filename" || return
fi
# TODO
# ev get the filesize
# there are 2 forms on the page
# one to login : <form method="POST" action="http://potload.com/" name="FL" id="signin">
# one to submit the download: <Form method="POST" action=''>
# better extract the 2. Form with no action
extractForm $f "action=''" || extractForm $f "action=\"\"" || continue
print "### extracted form is: $(cat $f.form | sed -n 's/^$//;t;p;') ###"
# extract the form parameter values # don't extract op because it get it from the first form
data="$(formParams 'op;id;fname;method_free' $f.form 0)"
print "=== extracted form-data is: $data ==="
# submit form and load the answer in $f
GETN "$param" $f "-d $data -b $c -c $c" "GET2"
#Get the Waiting time:
local waitingtext=$(grep Wait $f | sed 's/.*<span id="\([^"].*\)">\([0-9]*\)<\/span>\(.*\)<\/span>.*/\2\3/')
print "=== waitingtext is: $waitingtext ==="
local wait=$(grep Wait $f | sed 's/.*<span id="\([^"].*\)">\([0-9]*\)<\/span>\(.*\)<\/span>.*/\2/')
print "=== wait is: $wait ==="
# waiting the waittime
waiting $wait
#submit download
# better extract the 2. Form
extractForm $f "action=''" || extractForm $f "action=\"\"" || continue
print "### extracted form is: $(cat $f.form | sed -n 's/^$//;t;p;') ###"
# extract the form parameter values
data="$(formParams 'op;id;rand;referer;method_free;down_script' $f.form 0)"
print "=== extracted form-data is: $data ==="
# submit form and load the answer in $f
GETN "$param" $f "-d $data -b $c -c $c" "GET3"
# link is between 2 patterns
url=$(sed -n '/<div class=\"downloadurl\">/,/<\/div>/{/<div class=\"downloadurl\">/d;/<\/div>/d;p;}' $f | sed 's/<a href=\"\([^\"].*\)\".*/\1/')
print "=== url is: $url ==="
# test if allready loaded
notalreadyLoaded "$targetdir/$filename" || return
if download $url "$filename" "-b $c -c $c"; then
succes=1
break
fi
# Do it realy need a reconnect
# needReconnect; continue
done
}
Abwesend
Besten Dank,
ich werde es heute Abend gleich mal testen!
FB7490 - FritzLoad@USB
Abwesend
ein Tick zu spät
... hier meine Variante
Um sowas in Zukunft zu vermeiden (ist ja schade ums doppelte Arbeiten) schlage ich vor, daß jemand gleich im betreffenden Thread einen Post setzt, wenn man sich einer Sache annimmt.
Abwesend
So, der Tester ist zurück.
Ich kann berichten, dass es läuft, ABER es ist keine Fortschrittsanzeige zu sehen.
Ob das mit dem Plugin zusammenhängt kann ich leider nicht beurteilen, ich kann aber sagen,
dass ich beim zippyshare eine Fortschrittsanzeige erhalte und hier nicht.
FB7490 - FritzLoad@USB
Abwesend
Ich nochmal:
> die Fehlende Fortschrittsanzeige ist schon nervig - kann man das nicht richten? Bei ZS läuft das...
> Nach einigen Downloads wird ein limit erreicht. Dann müsste eigentlich ein reconnect erfolgen.
FB7490 - FritzLoad@USB
Abwesend
Da die gleiche Downloadfunktion wie für eigentlich alle Hoster verwendet wird, kann ich nicht sagen, warum es keine Anzeige gibt.
Nach einigen Downloads wird ein limit erreicht
Wo ist das Log?
Abwesend
Wo ist das Log?
Daran arbeite ich noch.
Im log steht nichts brauchbares denke ich.
12:24:36 GET1: http://potload.com/9r9o9hptb9lv | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
12:25:06 GET2: http://potload.com/9r9o9hptb9lv | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=9r9o9hptb9lv&fname=epd-nameking3.1080p.part67.rar
&referer=&method_free=Slow+Download
12:25:06 Konnte keine Wartezeit ermitteln
12:25:06 Warte 0 Minute(n) und 30 Sekunde(n)...
12:25:37 GET3: http://potload.com/9r9o9hptb9lv | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=9r9o9hptb9lv&rand=hsg23uxxiakpswyof2rjmdqgggu7yyc4plfugqa
&referer=http%3A%2F%2Fpotload.com%2F9r9o9hptb9lv&method_free=Slow+Download&method_premium=&down_script=1
12:25:37 Konnte keine Download-URL ermitteln!
12:25:37 Der Download ist fehlgeschlagen!
12:25:43 Keine UnRAR-Einstellungen (/var/media/ftp/Kingston-DataTravelerG2-01/FritzLoad/config/unrar.ini) sind vorhanden!
Ich muss den Zustand (Limit erreicht) jetzt wieder irgendwie herbeiführen und dann die angezeigte Seite abspeichern/sichern oder liege ich da falsch?
FB7490 - FritzLoad@USB
Abwesend
Im Plugin ist das Debug zur Zeit aktiviert.
Du hast im Download Ordner den Unterordner "tmp" und darin sind die GET-1.txt, usw. zu finden.
Diese Datei wäre hilfreich
Abwesend
Sicher dass es ein Zeitlimit gibt und dass es nicht an was anderes liegt?! Auf der Seite von Potload steht nämlich diesbezüglich nichts.
Habe über Nacht ca. 1gb von Potload gezogen. Nach der 6ten file (ca 600mb) bekam ich eine Fehlermeldung (Konnte Dateinamen nicht bestimmen). Dies wurde dann als Fehler "verbucht" und nachdem die restlichen files gezogen wurden, startete nach 30 Minuten die Funktion "Automatischer Neustart von fehlerhaften Links" und dann wurde auch dieses file problemlos heruntergeladen.
Fritzbox 7390
Abwesend
Ja, ich bin sicher. Aber es ist kein Zeitlimit - eher Traffic. 1 GB ist zu wenig.
Irgendwann hatte ich nur noch die Fehlerhaften in der Schlange und habe die Links dann
mit dem Jdownloader geprüft - alle OK.
Dann habe ich einen Link mit dem Browser geöffnet und dann Stand es schwarz auf weiß.
Leider habe ich da nicht geschaltet und die Sachen für eine Fehlersuche/Optimierung
gesichert.
Nach einem manuell ausgelösten Reconnect liefen die Links auch in FL durch.
FB7490 - FritzLoad@USB
Abwesend
Mit der neuesten Revision (2510) funktioniert bei mir Potload nicht mehr. Bekomme die Fehlermeldung "Datei nicht gefunden". Mit Rev 2509 funktionierts.
Fritzbox 7390
Abwesend
Kein ausführliches Log anbei und kein Testlink...
Es wurde insofern nichts am Code geändert, als das die Abbruchbedingung angepaßt wurde.
Abwesend
Testlink: http://potload.com/gjp2xdhf3hbq
Seit heute will es mit version 2509 auch nicht mehr so richtig. Es klappt zwar, aber davor kommen Fehlermeldungen:
Fritz!Load Revision 2509 wurde gestartet 04.03.2014 11:20:33: ./fritzload.sh i1 -l /var/media/ftp/WD-MyPassport0740-01/fritzload/config/dl_jobs1.txt (PID:27560)
11:20:34 Leerzeile
11:20:34 Die Download-Liste wird von der Instanz 1 geblockt.
11:20:34 Die Download-Liste wird nicht mehr geblockt.
11:20:35 ### potload_com-free: http://potload.com/gjp2xdhf3hbq
11:20:36 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:20:37 Datei: TheWirePromo.mp4
11:20:37 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:20:38 Datei nicht mehr vorhanden
11:20:38 Konnte keine Wartezeit ermitteln
11:20:38 Warte 0 Minute(n) und 30 Sekunde(n)...
11:21:08 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:21:09 Datei nicht mehr vorhanden
11:21:09 Konnte keine Download-URL ermitteln!
11:21:09 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:21:10 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:21:10 Datei nicht mehr vorhanden
11:21:10 Konnte keine Wartezeit ermitteln
11:21:10 Warte 0 Minute(n) und 30 Sekunde(n)...
11:21:41 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:21:41 Datei nicht mehr vorhanden
11:21:41 Konnte keine Download-URL ermitteln!
11:21:41 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:21:42 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:21:43 Datei nicht mehr vorhanden
11:21:43 Konnte keine Wartezeit ermitteln
11:21:43 Warte 0 Minute(n) und 30 Sekunde(n)...
11:22:13 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:22:13 Datei nicht mehr vorhanden
11:22:13 Konnte keine Download-URL ermitteln!
11:22:14 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:22:14 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:22:15 Datei nicht mehr vorhanden
11:22:15 Konnte keine Wartezeit ermitteln
11:22:15 Warte 0 Minute(n) und 30 Sekunde(n)...
11:22:45 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:22:46 Datei nicht mehr vorhanden
11:22:46 Konnte keine Download-URL ermitteln!
11:22:46 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:22:47 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:22:47 Datei nicht mehr vorhanden
11:22:47 Konnte keine Wartezeit ermitteln
11:22:47 Warte 0 Minute(n) und 30 Sekunde(n)...
11:23:18 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:23:18 Datei nicht mehr vorhanden
11:23:18 Konnte keine Download-URL ermitteln!
11:23:18 Der Download ist fehlgeschlagen!
11:23:24 ### potload_com-free: http://potload.com/gjp2xdhf3hbq
11:23:25 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:23:25 Datei: TheWirePromo.mp4
11:23:26 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:23:26 Datei nicht mehr vorhanden
11:23:26 Warte 0 Minute(n) und 21 Sekunde(n)...
11:23:48 GET3: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=gjp2xdhf3hbq&rand=7o5vvr4sy4umawrope53yvol6lrm4ztqxii4lsi&referer=http%3A%2F%2Fpotload.com%2Fgjp2xdhf3hbq&method_free=Slow+Download&method_premium=&down_script=1
11:23:48 Download...
11:23:48 Der freie Speicher in /var/media/ftp/WD-MyPassport0740-01/Downloads: 11196 MByte
Warnung! Speicherplatz wird knapp: 99% ist belegt.
11:23:48 URL-Download (T:1/R:5): URL-Adresse: http://cdn6.potload.com:182/d/5ir2ehvwtcql327nkjyl2l5y6o2ztxj4si635mfyozy3tdqnpgconpye/TheWirePromo.mp4 | Datei: TheWirePromo.mp4 | Optionen:
11:24:05 Download erfolgreich - Zeit: 0:00:15 | Größe: 3720k | Geschw.: 233k
11:24:05 Die URL-Adresse (http://potload.com/gjp2xdhf3hbq) wurde erfolgreich geladen.
11:24:05 1 Datei(en) wurde(n) heruntergeladen.
11:24:11 Die Download-Liste ist leer.
11:24:14 Der Fritz!Load-Prozess wurde beendet.
Mit 2512, das ja die Veränderung von 2510 beinhaltet, klappt es hingegen gar nicht:
Fritz!Load Revision 2512 wurde gestartet 04.03.2014 11:33:44: ./fritzload.sh i1 -l /var/media/ftp/WD-MyPassport0740-01/fritzload/config/dl_jobs1.txt (PID:10444)
11:33:44 Leerzeile
11:33:44 Die Download-Liste wird von der Instanz 1 geblockt.
11:33:44 Die Download-Liste wird nicht mehr geblockt.
11:33:45 ### potload_com-free: http://potload.com/gjp2xdhf3hbq
11:33:46 GET1: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
11:33:47 Datei: TheWirePromo.mp4
11:33:47 GET2: http://potload.com/gjp2xdhf3hbq | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=gjp2xdhf3hbq&fname=TheWirePromo.mp4&referer=&method_free=Slow+Download
11:33:47 Datei nicht mehr vorhanden
11:33:47 Der Download ist fehlgeschlagen!
Fritzbox 7390
Abwesend
Gefixt.
Abwesend
Trotz version 2515 kann funktioniert es bei mir nicht:
18:46:31 ### potload_com-free: http://potload.com/bd02f8ds7ny6
18:46:31 Warte auf die Internetverbindung...
18:46:38 GET1: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
18:46:40 Datei: lotto_spieleinsatz.pdf
18:46:41 GET2: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=bd02f8ds7ny6&fname=lotto_spieleinsatz.pdf
&referer=&method_free=Slow+Download
./fritzload.sh: line 2: syntax error: 21
+ (0*60)
18:46:43 GET3: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=bd02f8ds7ny6&rand=7nv2xec3caxw3ulunik4j3lrv5z2fgazialbeba
&referer=http%3A%2F%2Fpotload.com%2Fbd02f8ds7ny6&method_free=Slow+Download&method_premium=&down_script=1
18:46:44 Konnte keine Download-URL ermitteln!
18:46:45 GET1: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
18:46:46 GET2: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=bd02f8ds7ny6&fname=lotto_spieleinsatz.pdf
&referer=&method_free=Slow+Download
./fritzload.sh: line 2: syntax error: 21
+ (0*60)
18:46:48 GET3: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=bd02f8ds7ny6&rand=yqzvbfpj5ndei455olouyhqnaeyvz6ssak6ii7a
&referer=http%3A%2F%2Fpotload.com%2Fbd02f8ds7ny6&method_free=Slow+Download&method_premium=&down_script=1
18:46:49 Konnte keine Download-URL ermitteln!
18:46:50 GET1: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
18:46:51 GET2: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=bd02f8ds7ny6&fname=lotto_spieleinsatz.pdf
&referer=&method_free=Slow+Download
./fritzload.sh: line 2: syntax error: 21
+ (0*60)
18:46:53 GET3: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=bd02f8ds7ny6&rand=5b2mhaqvw4pt3dddkl547avloax64kjmolrttii
&referer=http%3A%2F%2Fpotload.com%2Fbd02f8ds7ny6&method_free=Slow+Download&method_premium=&down_script=1
18:46:54 Konnte keine Download-URL ermitteln!
18:46:54 GET1: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
18:46:56 GET2: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=bd02f8ds7ny6&fname=lotto_spieleinsatz.pdf
&referer=&method_free=Slow+Download
./fritzload.sh: line 2: syntax error: 21
+ (0*60)
18:46:57 GET3: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=bd02f8ds7ny6&rand=zcjhqnd34v4qviygpnejjue2cbuhfygdtlu3sya
&referer=http%3A%2F%2Fpotload.com%2Fbd02f8ds7ny6&method_free=Slow+Download&method_premium=&down_script=1
18:46:58 Konnte keine Download-URL ermitteln!
18:46:59 GET1: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie-jar /var/tmp/fritzload1/dl.cookie.txt
18:47:00 GET2: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download1&usr_login=&id=bd02f8ds7ny6&fname=lotto_spieleinsatz.pdf
&referer=&method_free=Slow+Download
./fritzload.sh: line 2: syntax error: 21
+ (0*60)
18:47:02 GET3: http://potload.com/bd02f8ds7ny6 | Optionen: --cookie /var/tmp/fritzload1/dl.cookie.txt -d op=download2&id=bd02f8ds7ny6&rand=pjba6kd7opatltt3x26alseptabju4xmpglconi
&referer=http%3A%2F%2Fpotload.com%2Fbd02f8ds7ny6&method_free=Slow+Download&method_premium=&down_script=1
18:47:03 Konnte keine Download-URL ermitteln!
18:47:03 Der Download ist fehlgeschlagen!
18:47:14 Leerzeile
18:47:15 Die Download-Liste wird von der Instanz 1 geblockt.
18:47:16 Die Download-Liste wird nicht mehr geblockt.
18:47:17 Keine UnRAR-Einstellungen (/var/media/ftp/TOSHIBA-ExternalUSB3-0-01/FritzLoad/config/unrar.ini) sind vorhanden!
Abwesend
Also bei mir funktioniert es wieder...
Vielen Dank @rolex
Fritzbox 7390
Abwesend
@usbsticker:
Dein Problem liegt - wie schon einige mal darauf hingewiesen von anderen - hier:
./fritzload.sh: line 2: syntax error: 21
So lange in deiner F!L Installation dieser Fehler fliegt, wird es vermutlich nicht funktionieren.
Abwesend
Wie kann ich dieses Problem lösen?
Was bedeutet dieser Fehler?
Ich habe FL bereits neu installiert, brachte aber keinen Erfolg.
FL Ordner gelöscht, neu aufgespielt, vorher FL deinstalliert, nach einspilen und anschliessen an die FB neu installiert, aber es geht immer noch nicht.
Abwesend