**GUIDE** Auto Update Bouquets/Channel Lists E2 only**
Register
Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    DK Veteran freck's Avatar
    Join Date
    Jul 2008
    Location
    Dark side of the Moon
    Posts
    1,076
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    13
    Thanked in
    8 Posts

    Exclamation **GUIDE** Auto Update Bouquets/Channel Lists E2 only**

    Here's details of some Bouquet Update Scripts/Plugins for Enigma2 (DM500HD)(DM800HD/SE)(VU+)(credits to rossi2000 and jfish and u.s.)

    The Plugins download the bouquet file which you upload to a website and then extracts and install them.



    I will break this guide down into 2 parts:
    Part 1. Upload the Bouquets to website.
    Part 2. Installing the Plugin.

    Pre-Requisites
    FTP Client - to install the plugins
    DreamboxEdit - to edit channel lists
    WinRar - to rar the enigma1 or enigma2 folder
    iZarc - to convert the above .rar to .tar.gz
    Website/Hosting - to host the above file (create a free one using Webs - Make a free website, get free hosting)

    Part 1. Upload the Bouquets to website.

    Download the latest SGTFlipFlop channel list, change your regional programs, remove any services etc... and save.
    rename the folder the files are in to enigma2
    rar this folder up
    convert with iZArc to .tar.gz
    upload the .tar.gz to web server

    test the file is downloadable, type the webaddress into browser (e.g yourwebsite.co.uk: The Leading Your Web Site Site on the Net) and check the file downloads



    Part 2. Installing the Plugin.
    DOWNLOAD AND INSTALL THE .IPK FILE ATTACHED
    the ipk will automatically reboot your box after installation, it will now appear in the plugins menu (green button)
    edit the .sh script in /usr/script with your file locations (i deleted the picons bit during testing)
    select the plugin to update the bouquets.
    Freck

  2. The Following 2 Users Say Thank You to freck For This Useful Post:

    patcino (26th May, 2013), surapan (3rd July, 2014)

  3. #2
    V.I.P. Member 2tone's Avatar
    Join Date
    Jun 2008
    Posts
    483
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    tried this on my dm8000 with gp3 on it and messed up box is there some thing different about using this script with an icvs image

  4. #3
    DK Veteran Rodbouy's Avatar
    Join Date
    Jul 2010
    Posts
    1,320
    Thanks Thanks Given 
    19
    Thanks Thanks Received 
    19
    Thanked in
    15 Posts

    Default

    Quote Originally Posted by 2tone View Post
    tried this on my dm8000 with gp3 on it and messed up box is there some thing different about using this script with an icvs image
    What error did you get in the log mate?

  5. #4
    V.I.P. Member 2tone's Avatar
    Join Date
    Jun 2008
    Posts
    483
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    had to flash it again when set back up will try again and see what log says but it deleted all sats in tuner config

  6. #5
    DK Veteran freck's Avatar
    Join Date
    Jul 2008
    Location
    Dark side of the Moon
    Posts
    1,076
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    13
    Thanked in
    8 Posts

    Default

    Its config'd just to download 28.2E sio if youve a multi sat listing it'll overwrite it,not familiar with icvs images tbh I'd a BH man meself.
    Let me know how you get on after reflash etc.
    Freck

  7. #6
    V.I.P. Member 2tone's Avatar
    Join Date
    Jun 2008
    Posts
    483
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Going to try a black hole image and see dose it have the same problem chance it could be my bouquest file but was made the same way as the e1 file when i tried it on a tm500 was strange it deleted my sat list in my sat set up page

  8. #7
    V.I.P. Member 2tone's Avatar
    Join Date
    Jun 2008
    Posts
    483
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    After playing with this a bit and using different images what happens is when i run the script from green button it looks like it runs but if i log in to box and check it just deletes my satellites.xml in var/tuxbox and when i check my bouquets it dose not have any of them also here is a copy of the .tar.gz file i have been using also here is a copy of the script out of usr/script

    #!/bin/sh
    set -x
    exec > /var/log/Enigma2_Bouquet_Picon_Update.log 2>&1
    #DESCRIPTION=Downloads, Installs & Reloads the latest Enigma2 Bouquets & Picons

    #Transfer script to /usr/script and chmod 755
    #A log file will be created in /var/log

    #Change the URL to point to your Bouquet tar.gz file
    BQ="http://www.xxxx/xxx/enigma2.tar.gz"
    BP="http://www.xxxx.co.uk/xxxx/picon.tar.gz"

    ## Bouquet Download, Installation + Reload ##
    cd /tmp/
    wget $BQ
    chmod 755 /tmp/enigma2.tar.gz
    tar -xzvf enigma2.tar.gz

    cd /tmp/enigma2
    rm -rf /etc/tuxbox/satellites.xml
    mv /tmp/enigma2/satellites.xml /etc/tuxbox/

    cd /etc/enigma2
    rm -rf *.tv
    rm -rf *.radio
    rm -rf blacklist
    rm -rf lamedb
    mv /tmp/enigma2/* /etc/enigma2

    rm -rf /tmp/enigma2
    rm -rf /tmp/enigma2.tar.gz

    wget -qO - http://127.0.0.1/web/servicelistreload?mode=1
    wget -qO - http://127.0.0.1/web/servicelistreload?mode=2

    ## Picon Installation ##
    cd /tmp/
    wget $BP
    chmod 755 /tmp/picon.tar.gz
    tar -xzvf picon.tar.gz

    rm -rf /media/usb/picon/
    mv /tmp/picon/ /media/usb/

    rm -rf /tmp/picon.tar.gz
    Attached Files Attached Files
    Last edited by 2tone; 18th March, 2012 at 10:08 AM.

  9. #8
    DK Veteran Rodbouy's Avatar
    Join Date
    Jul 2010
    Posts
    1,320
    Thanks Thanks Given 
    19
    Thanks Thanks Received 
    19
    Thanked in
    15 Posts

    Default

    Here is mine

    #!/bin/sh
    set -x
    exec > /var/log/Enigma2_Bouquet_Picon_Update.log 2>&1
    #DESCRIPTION=Downloads, Installs & Reloads the latest Enigma2 Bouquets & Picons
    #Transfer script to /usr/script and chmod 755
    #A log file will be created in /var/log
    #Change the URL to point to your Bouquet tar.gz file
    BQ="ftp://********:*******@**********/Bo...enigma2.tar.gz"
    #BP="http://www.xxxx.co.uk/xxxx/picon.tar.gz"
    ## Bouquet Download, Installation + Reload ##
    cd /tmp/
    wget $BQ
    chmod 755 /tmp/enigma2.tar.gz
    tar -xzvf enigma2.tar.gz
    cd /tmp/enigma2
    rm -rf /etc/tuxbox/satellites.xml
    mv /tmp/enigma2/satellites.xml /etc/tuxbox/
    cd /etc/enigma2
    rm -rf *.tv
    rm -rf *.radio
    rm -rf blacklist
    rm -rf lamedb
    mv /tmp/enigma2/* /etc/enigma2
    rm -rf /tmp/enigma2
    rm -rf /tmp/enigma2.tar.gz
    wget -qO - http://127.0.0.1/web/servicelistreload?mode=1
    wget -qO - http://127.0.0.1/web/servicelistreload?mode=2

    ## Picon Installation ##
    #cd /tmp/
    #wget $BP
    #chmod 755 /tmp/picon.tar.gz
    #tar -xzvf picon.tar.gz
    #rm -rf /media/usb/picon/
    #mv /tmp/picon/ /media/usb/
    #rm -rf /tmp/picon.tar.gz
    Reboot

    I just # out the picon update

    I have this working on pli beta 2.1 and BH 1.6.6 and also on my mates vu Duo running BH 1.6.6

    after you do it, what does the log say ?

    If you want I will pm you my 2 .sh, one for static e2 and one for multi e2 to try from my ftp server
    Last edited by Rodbouy; 18th March, 2012 at 12:34 PM.

  10. #9
    V.I.P. Member 2tone's Avatar
    Join Date
    Jun 2008
    Posts
    483
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Strange thing is i found another script on net from another forum and edited my details and it worked but with this script it wont cant work it out yet


    + BQ=ftp://www.xxxxx.co.uk/xxx/enigma2.tar.gz
    + cd /tmp/
    + wget ftp://www.xxxxxxx.co.uk/xxxx/enigma2.tar.gz
    Connecting to [url=http://www.tvchans[/url] (00.00.00.00:21)
    wget: ftp login: Login incorrect.
    + chmod 755 /tmp/enigma2.tar.gz
    chmod: /tmp/enigma2.tar.gz: No such file or directory
    + tar -xzvf enigma2.tar.gz
    tar: can't open 'enigma2.tar.gz': No such file or directory
    + cd /tmp/enigma2
    /usr/script/Enigma2_Bouquet_Picon_Update.sh: cd: line 1: can't cd to /tmp/enigma2
    + rm -rf /etc/tuxbox/satellites.xml
    + mv /tmp/enigma2/satellites.xml /etc/tuxbox/
    mv: cannot rename '/tmp/enigma2/satellites.xml': No such file or directory
    + cd /etc/enigma2
    + rm -rf bouquets.tv userbouquet.LastScanned.tv userbouquet.dbe00.tv userbouquet.dbe01.tv userbouquet.dbe02.tv userbouquet.dbe03.tv userbouquet.dbe04.tv userbouquet.dbe05.tv userbouquet.dbe06.tv userbouquet.dbe07.tv userbouquet.dbe08.tv userbouquet.dbe09.tv userbouquet.dbe0a.tv userbouquet.dbe0b.tv userbouquet.dbe0c.tv userbouquet.dbe0d.tv userbouquet.dbe0e.tv userbouquet.dbe0f.tv userbouquet.dbe10.tv userbouquet.dbe11.tv userbouquet.dbe12.tv userbouquet.dbe13.tv userbouquet.dbe14.tv userbouquet.dbe15.tv userbouquet.dbe16.tv userbouquet.favourites.tv
    + rm -rf bouquets.radio userbouquet.favourites.radio
    + rm -rf blacklist
    + rm -rf lamedb
    + mv /tmp/enigma2/* /etc/enigma2
    mv: cannot rename '/tmp/enigma2/*': No such file or directory
    + rm -rf /tmp/enigma2
    + rm -rf /tmp/enigma2.tar.gz
    + wget -qO - http://127.0.0.1/web/servicelistreload?mode=1
    <?xml version="1.0" encoding="UTF-8"?>

    <e2simplexmlresult>
    <e2state>True</e2state>
    <e2statetext>reloaded lamedb</e2statetext>
    </e2simplexmlresult>
    + wget -qO - http://127.0.0.1/web/servicelistreload?mode=2
    <?xml version="1.0" encoding="UTF-8"?>

    <e2simplexmlresult>
    <e2state>True</e2state>
    <e2statetext>reloaded bouquets</e2statetext>
    </e2simplexmlresult>
    + Reboot
    /usr/script/Enigma2_Bouquet_Picon_Update.sh: line 1: Reboot: not found
    Last edited by 2tone; 19th March, 2012 at 08:56 PM.

  11. #10
    Newbie
    Join Date
    Oct 2012
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Quote Originally Posted by freck View Post
    Here's details of some Bouquet Update Scripts/Plugins for Enigma2 (DM500HD)(DM800HD/SE)(VU+)(credits to rossi2000 and jfish and u.s.)

    The Plugins download the bouquet file which you upload to a website and then extracts and install them.



    I will break this guide down into 2 parts:
    Part 1. Upload the Bouquets to website.
    Part 2. Installing the Plugin.

    Pre-Requisites
    FTP Client - to install the plugins
    DreamboxEdit - to edit channel lists
    WinRar - to rar the enigma1 or enigma2 folder
    iZarc - to convert the above .rar to .tar.gz
    Website/Hosting - to host the above file (create a free one using Webs - Make a free website, get free hosting)

    Part 1. Upload the Bouquets to website.

    Download the latest SGTFlipFlop channel list, change your regional programs, remove any services etc... and save.
    rename the folder the files are in to enigma2
    rar this folder up
    convert with iZArc to .tar.gz
    upload the .tar.gz to web server

    test the file is downloadable, type the webaddress into browser (e.g yourwebsite.co.uk: The Leading Your Web Site Site on the Net) and check the file downloads



    Part 2. Installing the Plugin.
    DOWNLOAD AND INSTALL THE .IPK FILE ATTACHED
    the ipk will automatically reboot your box after installation, it will now appear in the plugins menu (green button)
    edit the .sh script in /usr/script with your file locations (i deleted the picons bit during testing)
    select the plugin to update the bouquets.
    Freck
    Hi,

    Do it works on enigma1?

    Thanks.

  12. #11
    DK Veteran uu161's Avatar
    Join Date
    May 2012
    Posts
    372
    Thanks Thanks Given 
    81
    Thanks Thanks Received 
    251
    Thanked in
    82 Posts

    Default

    Quote Originally Posted by dutchkrus View Post
    Hi,

    Do it works on enigma1?

    Thanks.

    for E1
    Guide:Auto Update Channel List/Bouquets..
    if you like the post use the Like button located bottom right corner of each post
    if you wish to thanks kindly use the thanks button located bottom left corner of each post instead making a post for thanks

  13. #12
    Newbie
    Join Date
    Jun 2012
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    had to flash it again when set back up will try again and see what log says but it deleted all sats in tuner config

  14. #13
    Newbie
    Join Date
    Jan 2013
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post

    Default

    what version is the best for channel updateing from ftp posted above? thx

  15. The Following User Says Thank You to lalamala For This Useful Post:

    patcino (26th May, 2013)

  16. #14
    Newbie
    Join Date
    Sep 2008
    Posts
    10
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    this does not work 100% on all firmwares i have tried ....just says on each one .... illegal operation on line 2

    any ideas?

  17. #15
    Newbie
    Join Date
    Jul 2013
    Posts
    1
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Hi to all

    One question

    Is it possible to check if the Server where the Bouquest are is Online ore Offline?

    I mean if the Server is Down the Script deleats alle you Bouquets which are on your Dreambox right?

    I thinks it will be better if there is a IF Clause but i have no ideea how to fix that script

    Pleas post this here if any one here knows how to do this

    thanks to all o you

    greetings

    Luca1234

 

 
Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.