Alert: Don't Use Hotmail Email Accounts for registration
Collapse
Before Access to all Forums and Trial accounts you must need to activate your account Email address
cccam and newcamd
Collapse
X
-
Re: cccam and newcamd
Interesting point here that adds some perspective about the two cams :
Contrary to CCcam, MgCamd uses the cache buffer. It means that when a channel is opened, the MGCamd server saves the channel key and when another user or users open the same channel/channels, MGCamd receives and uses that key data from buffer. This makes the server much faster because of the fact that it does not have to check the card twice for the key data again, so it allows a faster channel zapping and a much better tv experience.If you like my post, please don't hesitate to click on "Thanks"button. Thank youComment
-
Re: cccam and newcamd
yes,that is my oppinion also,mgcamd is the FASTEST protocol,only problem is that mgcamd is not have webinterfaceComment
-
Re: cccam and newcamd
yes,that is my oppinion also,mgcamd is the FASTEST protocol,only problem is that mgcamd is not have webinterfaceIf you like my post, please don't hesitate to click on "Thanks"button. Thank youComment
-
Re: cccam and newcamd
CCCam - is a name for an EMU and for the respective CS protocol.Comment
-
Re: cccam and newcamd
And a note if you want to run both Mgcamd and Cccam
If you are running Mgcamd and CCcam on the same server you have to edit the existing Mgcamd script usually found in /usr/camscript/ with whats below.
Code:PHP Code: #!/bin/sh remove_tmp () { rm -rf /tmp/ecm.info /tmp/pid.info /tmp/cardinfo } case "$1" in start) remove_tmp /var/bin/mgcamd_1.38 & sleep 15 /var/bin/CCcam & ;; stop) touch /tmp/mgcamd_1.38 sleep 5 killall -9 mgcamd_1.38 CCcam 2>/dev/null sleep 2 remove_tmp ;; *) $0 stop exit 1 ;; esac exit 0
If you like my post, please don't hesitate to click on "Thanks"button. Thank youComment
Comment