hi i have a tm500 i have tried oscam on ur image but does not open sports or movies reads everything else perfect does anybody know wich oscam file i can use on tm500 i dont want to share just want the ability to watch on my tm500 if anybody has such file could you post it to me and if possible how to manual instore....ftp thanks............BJ1
Oscam + CCcam 2.1.3
Collapse
X
-
Wonder if anyone can clarify please.
Looking to block any possibility of updating entitlements to sly card
Am I right in thinking that adding this to your server config should do the trick:-
audisabled = 1
My set up is oscam and using dvbapi.
Conflicting reports some indicate that no need to block as it wont update - just wondering if anyone using similar set up can confirm.
thanks
just block all emms and in the webif click reader and tick disable AU.
On side note. Why ?Comment
-
Cheers Rod.
Cancelled for the moment (Football ended) but still have 6 weeks until entitlements run out so thought that I would pop it in another box. Thought that when they receive final notification of cancellation they would take entitlements back to contract end date -is that not the case?Comment
-
Done to Death
I know everyone will say this has been done to death but I have copied and pasted all the oscam files and even changed some slightly but it doesn't matter how hard I try Pick tv and the premiere channels won't open. I am using a dm500hd original and Newinigma image. I have oscam/cccam214 files and have shown them as below. I know I have the correct boxkey as it works in cccam and I have entered it without spaces. I am going mad not being able to solve this. PLEASE can someone help me.
[global]
nice = -1
WaitForCards = 1
logfile = stdout
preferlocalcards = 1
saveinithistory = 1
[webif]
httpport = 8888
httpuser = admin
httppwd = admin
httpallowed = 127.0.0.1,192.168.0.2-192.168.0.100,192.168.1.2-192.169.1.100,192.168.2.2-192.168.2.100
# protocols
[newcamd]
key = 0102030405060708091011121314
port = 12000@0963:000000;12001@0963:000000
[reader]
label = slot1
protocol = internal
device = /dev/sci0
boxid = xxxxxxx
blockemm-u = 0
blockemm-s = 0
blockemm-g = 1
blockemm-unknown = 1
emmcache = 1,3,2
group = 1
caid = 0963
[account]
user = user1
pwd = pass1
monlevel = 0
uniq = 0
group = 1,2
au = 1
caid = 0963
In cccam I have made sure that a # is at the front of every line except the one below.
N: 127.0.0.1 12000 user1 pass1 01 02 03 04 05 06 07 08 09 10 11 12 13 14
PLEASE tell me what I need to amend to get it working.Comment
-
-
put your dreambox ip in pc web browser
replace x with the DM ip numbers
Code:http://192.168.x.x:16001/servers
Comment
-
Thats interesting. It shows 0 cards and yet I have the card inserted and the boxkey entered. I hope this helps you to tell what I have wrong in the settings.Comment
-
I have tried all that you have said. I have downloaded from the addons in Newnigma the cccam214/oscam file which comes as one file. I have downloaded and used the config files shown on page two but when I do a restart I still only get the basic channels, no pick tv or the movies and sport. It still states that there are 0 cards in the web info. I have checked and rechecked and I am sure the information is exactly as shown on the downloaded files. It obviously recognises the card as ordinary pay channels work. It must be very near to working but something just not quite right. I hope you can give me some more help to get it working as it is doing my head in.Comment
-
oscam is not reading your card
ftp into the dreambox with dreambox control center
find it here
once you have ftp in to your box
go to usr then bin
scroll down till you see cccam
tell me exactly how its spelt cccam_214 or just cccam
then scroll down till you see oscam tell me exactly how its spelt oscam1234 or just oscam
then go to usr then camscript
highlight oscam/cccam
right click edit
copy all thats in there and post it hereAttached FilesLast edited by davvo; 7 July, 2011, 16:44.Comment
-
Under usr bin I have two CCcam files showing CCcam2_1_4 and CCcam2_2_1. Under Oscam it just says Oscam. The worrying thing is that I don't have a file of Camscript under usr. Sounds like I really do need some help. Could you help me in fairly simple language how to correct this please.Comment
-
might be in usr/script
you will have to look a bit harder
you have to help yourself for me to help you
if the start script is not there or wrong its not gonner work
your cam script should look like this if thats how they are spelled in usr/bin
Code:#!/bin/sh CAMNAME="Oscam/CCcam2_1_4" remove_tmp () { rm -rf /tmp/*.info* /tmp/*.tmp* } case "$1" in start) echo "[SCRIPT] $1: $CAMNAME" remove_tmp /usr/bin/oscam & sleep 10 /usr/bin/CCcam2_1_4 & ;; stop) echo "[SCRIPT] $1: $CAMNAME" killall -9 CCcam2_1_4 2>/dev/null sleep 3 killall -9 oscam 2>/dev/null sleep 3 remove_tmp ;; *) $0 stop exit 0 ;; esac exit 0Last edited by davvo; 8 July, 2011, 10:01.Comment
-
I am sorry that I didn't find the file, I didn't realise it could be in another place. In script I have found the following file which I hope is the one you wanted me to find. You are the only person who is getting near to what is obviously the problem. Can you tell me what needs altering or should I put in the text you have shown. I am very gratefull for your help.
#!/bin/sh
########################################
###### Powered by NewNigma2 Team ######
### http://newngima2.to ###
########################################
# EMUNAME is only Display name for EMU Menu
EMUNAME="CCcam 2.1.4/OScam"
# CCcamversion
CCVer="CCcam2_1_4"
remove_tmp ()
{
[ -e /tmp/ecm.info ] && rm -rf /tmp/ecm.info
[ -e /tmp/pid.info ] && rm -rf /tmp/pid.info
[ -e /tmp/cardinfo ] && rm -rf /tmp/cardinfo
[ -e /tmp/ecm0.info ] && rm -rf /tmp/ecm0.info
[ -e /tmp/CCcam.kill ] && rm -rf /tmp/CCcam.kill
[ -e /tmp/$CCVer.pid ] && rm -rf /tmp/$CCVer.pid
rm -rf /tmp/*.info /tmp/*.tmp*
}
case "$1" in
start)
echo "[SCRIPT] $1: $EMUNAME"
remove_tmp
sleep 1
/usr/bin/oscam >/dev/null &
sleep 15
/usr/bin/$CCVer >/dev/null &
pidof $CCVer > /tmp/$CCVer.pid
;;
stop)
echo "[SCRIPT] $1: $EMUNAME"
echo -n "kill " > /tmp/CCcam.kill
pidof $CCVer >> /tmp/CCcam.kill
echo -n "kill -9 " >> /tmp/CCcam.kill
pidof $CCVer >> /tmp/CCcam.kill
echo -n "kill " >> /tmp/CCcam.kill
pidof oscam >> /tmp/CCcam.kill
echo -n "kill -9 " >> /tmp/CCcam.kill
pidof oscam >> /tmp/CCcam.kill
chmod 777 /tmp/CCcam.kill
/tmp/CCcam.kill
sleep 1
remove_tmp
;;
restart)
$0 stop
sleep 1
$0 start
exit 1
;;
*)
$1 stop
exit 1
;;
esacComment
Comment