CrossEPG doesn't work

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

    • CrossEPG doesn't work

      I have a problem with CrossEPG. I installed it through TS panel and although I made the apropriate configuration it does not appear the weekly EPG. With OpenPLi it works smoothly.
    • RE: CrossEPG doesn't work

      I've got the same problem here.
      I have installed diese Version with console/telnet opkg install.
      Everything works fine - means Database is up to date after i run the plugin. But whether after a GUI Restart nor after a complete restart the EPG data are showing up. (in my case it's a DM8000 - satellite is 28.2° SkyUK and Co.) In v3.3.1 it worked correctly.
      Thanks in advance for hints.
      LG Seebueb

      Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von Seebueb ()

    • The problem is that enigma2_pre_start.sh ends with "exit 0"

      Crossepg plugin modifies the enigma2_pre_start.sh

      Shell-Script

      1. #!/bin/sh
      2. udevVer=`/sbin/udevadm --version`
      3. if [ -f /etc/udev.txt ]; then
      4. /bin/rm /etc/udev.txt
      5. if [ $udevVer == "141" ]; then
      6. /usr/bin/opkg update
      7. /usr/bin/opkg remove udev
      8. /usr/bin/opkg remove udev-utils
      9. /usr/bin/opkg remove libvolume-id1
      10. /usr/bin/opkg install udev
      11. /sbin/reboot
      12. fi
      13. fi
      14. exit 0
      15. /usr/crossepg/crossepg_epgmove.sh
      Alles anzeigen


      crossepg_epgmove.sh never fails to run

      Change /usr/bin/enigma2_pre_start.sh as follows:

      Shell-Script

      1. #!/bin/sh
      2. udevVer=`/sbin/udevadm --version`
      3. if [ -f /etc/udev.txt ]; then
      4. /bin/rm /etc/udev.txt
      5. if [ $udevVer == "141" ]; then
      6. /usr/bin/opkg update
      7. /usr/bin/opkg remove udev
      8. /usr/bin/opkg remove udev-utils
      9. /usr/bin/opkg remove libvolume-id1
      10. /usr/bin/opkg install udev
      11. /sbin/reboot
      12. fi
      13. fi
      14. /usr/crossepg/crossepg_epgmove.sh
      15. exit 0
      Alles anzeigen
    • Originally posted by agmuser
      The problem is that enigma2_pre_start.sh ends with "exit 0"

      Crossepg plugin modifies the enigma2_pre_start.sh

      Shell-Script

      1. #!/bin/sh
      2. udevVer=`/sbin/udevadm --version`
      3. if [ -f /etc/udev.txt ]; then
      4. /bin/rm /etc/udev.txt
      5. if [ $udevVer == "141" ]; then
      6. /usr/bin/opkg update
      7. /usr/bin/opkg remove udev
      8. /usr/bin/opkg remove udev-utils
      9. /usr/bin/opkg remove libvolume-id1
      10. /usr/bin/opkg install udev
      11. /sbin/reboot
      12. fi
      13. fi
      14. exit 0
      15. /usr/crossepg/crossepg_epgmove.sh
      Alles anzeigen


      crossepg_epgmove.sh never fails to run

      Change /usr/bin/enigma2_pre_start.sh as follows:

      Shell-Script

      1. #!/bin/sh
      2. udevVer=`/sbin/udevadm --version`
      3. if [ -f /etc/udev.txt ]; then
      4. /bin/rm /etc/udev.txt
      5. if [ $udevVer == "141" ]; then
      6. /usr/bin/opkg update
      7. /usr/bin/opkg remove udev
      8. /usr/bin/opkg remove udev-utils
      9. /usr/bin/opkg remove libvolume-id1
      10. /usr/bin/opkg install udev
      11. /sbin/reboot
      12. fi
      13. fi
      14. /usr/crossepg/crossepg_epgmove.sh
      15. exit 0
      Alles anzeigen



      Thanks mate. Works for me.
    • Original von nonsferatum
      Hi, I try to change the config in enigma2_pre_start.sh but after a restart of enigma i can't see the epg so i think that there is another problem.



      Same problem here. flashed the 3.3.2 and installed the crossepg linked in this thread.
      I updated the enigma2_pre_start.sh but still no epg.
      Even after reboot, crossepg won't update the
      :(
    • Hi I try to use crossepg in usb,hdd and internal flash with the right setting, but after a download of new epg i can't found in any place of my dream the file epg.dat but only a exepg.dat. If i try to rename this file in epg.dat after a reboot of enigma this file will be delete. So i try to instale the image dream elite that work with enigma 3.2 and it work fine.
    • Original von sparksofinsanity
      In dem Thread steht doch eindeutig beschrieben was zu ändern ist und es wurde von mehren Nutzern vollkommen unabhängig von einander berichtet das es so funktioniert.


      Ich habe diese Änderungen durchgeführt, dennoch funktioniert es nicht.
      Vielen Dank & Gruß
      Holger
    • try with this settings:

      #!/bin/sh

      udevVer=`/sbin/udevadm --version`

      if [ -f /etc/udev.txt ]; then
      /bin/rm /etc/udev.txt
      if [ $udevVer == "141" ]; then
      /usr/bin/opkg update
      /usr/bin/opkg remove udev
      /usr/bin/opkg remove udev-utils
      /usr/bin/opkg remove libvolume-id1
      /usr/bin/opkg install udev
      /sbin/reboot
      fi
      fi

      if [ -f /media/hdd/crossepg/ext.epg.dat ];
      then
      cp /media/hdd/crossepg/ext.epg.dat /media/hdd/epg.dat
      sleep 1
      rm -rf /media/hdd/crossepg/ext.epg.dat
      else
      cp /media/hdd/epg.dat /media/hdd/epg/epg.dat.bak
      fi

      exit 0