JSC with mgcamd1.38c on Vu+ Uno

Margenius

Registered
Messages
20
Hi people! I'm trying to see this provider with mgcamd1.38c. Today I have installed it on my decoder in /tmp folder via ftp. After I have changed keys, modified replace.list file and gave the permission to mgcamd138c file (755). Despite many attempts my screen remains black. When I go on JSC channels mgcamd recognize ird3to and vi4ccess encoding of the channels but I can't see anything. What should I do to see correctly this provider? Maybe I forget something? Someone can help me with the right procedure?

Thank you in advance and see you later!

;)
 

Amnesix1

Registered
Messages
453
Do you have the current keys and after that, you reboot the box/MgCamd 1.38?

Also you have changed in the mg_cfg the boxtype?

Code:
# box type
# 00 autodetect, change only if you think wrong type detected.
# 01 dbox2
# 02 dreambox
# 03 triple-dragon
# 04 relook
# 05 openbox
# 06 dreambox/mips
# 08 stapi/kathrein
# 09 stapi/ipbox
# 10 stapi/openbox
# 11 enigma/ipbox
# 12 octagon
B: { 06 }

Then JSC will work...
 

Margenius

Registered
Messages
20
Now the provider works correctly. Just I hadn't changed properly mg_cfg file. Thank you so much!
Anyone knows a good plugin to modify keys directly on this decoder with remote control without using PC?

@andres66
I read your suggestions. Thank you so much for interested in my problem, but my private messages are disabled because I have few posts.
 
Last edited:

samuelongui

Registered
Messages
34
Anyone knows a good plugin to modify keys directly on this decoder with remote control without using PC?

I have an script to autodownload SoftCam.Key but don't know how to run it every 20 min.

Code:
#!/bin/sh
# v1.4 Jotne
# Automatically uptadtes CCcam.channelinfo and CCcam.provider from http://cccam.qpoe.com/
# Automatically uptadtes SoftCam.key,constant.cw and AutoRoll.key from http://www.uydu.ws, info found http://www.skystar.org/
# See website for more info

while [ 1 ]
do
echo "Actualizacion en marcha! : $(date)"
        wget -O /usr/keys/SoftCam.Key http://www.uydu.ws/deneme6.php?file=SoftCam.Key
        wget -O /usr/keys/constant.cw http://www.uydu.ws/deneme6.php?file=constant.cw
        wget -O /usr/keys/AutoRoll.Key http://www.uydu.ws/deneme6.php?file=AutoRoll.Key
echo "Actualizacion terminada! : $(date)"
sleep 86400
done

from telnet

Code:
chmod +x /usr/script/updatecccam.sh

Code:
/usr/script/updatecccam.sh &
 

bellof

Registered
Messages
1,791
you have to setup a crondjob for that!

but the setup of the crond belongs to yyour image!
 

bellof

Registered
Messages
1,791
copy your script to usr/script and chmodd 755

then goto etc/bhcron

in there you should see 2 files :bh.cron and root

fill in to both files

*/20 * * * * /usr/script/./name of your script.sh

do a hardreset of your box to get cronjob working
 

bellof

Registered
Messages
1,791
only the same thing you write to bh.crond!

100% an exact copy from your bh.crond

nothing else nothing less
 

Margenius

Registered
Messages
20
I'm using this script and works good! ;) The only thing I don't understand is the use of sleep command. Using this command when I run updatecccam.sh script it doesn't stop its execution... My screen remains blocked with the script result and if I want to go back to watch TV I need to restart my decoder with behind button. I modified the script removing do-while cycle and sleep command... Now is OK! Anyone can explain me why are used these commands in this case?

I copied bh.cron and root in /etc/bhcron folder putting "*/20 * * * * /usr/script/./name of my script.sh" in both files but I don't understand how it works... It's used to update the softcam every 20 minutes or for what?

Thank you in advance for the answers! :thum:
 
Last edited:

Margenius

Registered
Messages
20
Yes, but I don't understand why is necessary to execute the script each day if the keys change every hour... Maybe this script is executed in background?

Now I can't post here the result of my script because it doesn't runs good... Even if I don't understand why..., but sometime says me that the address is bad or takes a long time to download the files and I must switch off the decoder to stop the script... Later I retry to execute the script and if will runs good I will post the result here! :thum:
 
Last edited:
Top