CCcamInfoPHP v0.8 how to on Windows First you need install Wampserver. Folowing program can be found here:
Wampserver
You also need:
CCcamInfoPHP v0.8

First install WAMP server in default directory C:\wamp. Extract CCcamInfoPHP v.0.8 in directory C:\wamp\www\ (in zip file you will find CCcamInfoPHP folder and lots of files. This files you must extract and replace originals in wamp/www folder).
Now you must configure CCcaminfoPHP with the data of yours dreambox.
Use Notpad to edit the config.php in folder "C:\wamp\www\". Your config should look like this:

Quote:
<?php
//---------------------------------------
// CONFIG
//---------------------------------------

//examples of server definitions
$CCCamWebInfo[] = array("192.168.1.5","16001","aam###","ja####1"); // for CCcam webinterface with user and pass
$CCCamWebInfo[] = array("localhost","12345"); // for CCcam webinterface with different port than default and without user and pass
$CCCamWebInfo[] = array("localhost"); // for CCcam webinterface with all defaults

$work_path = ""; // set this if you want working folder separate // Example $work_path = "/tmp/";
$update_from_button = true; // set to true if you want Update button ( usefull if update is from remote server and takes too long)
$fullReshare = true; // shows maximum reshare if more than one route for same node // set to true to see actual reshare instead of YES/NO
$country_whois = true; // use whois for country detection
?>
Black text is need by config and green lines is just remarks.


Username and password must be same like in your CCcam.cfg file:
Code:
#######################
#### Config ####
#############################
# SERVER LISTEN PORT : #
SERVER LISTEN PORT : 16001
ALLOW WEBINFO: yes
ALLOW TELNETINFO: yes
WEBINFO USERNAME : root
WEBINFO PASSWORD : dreambox
Edit this line in \wamp\Apache2\bin\php.ini file to awoid memory errors,
For new version of WAMP \wamp\bin\apache\apache2.2.6\bin\php.ini:

Code:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 300 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 24M ; Maximum amount of memory a script may consume (8MB)
For newbees - first start wamp server (C:\wamp\wampmanager.exe) and in right bottom corner of your screen you will see white clock icon. Left click with your mouse and choose localhost:



For other users - Start WAMP server and in your browser type localhost.

If you do everything right you must see this:


To change Apache default port 80 :

Code:
Go to \wamp\bin\apache\apache2.2.6\conf\httpd.conf and edit this file. Find line with data Listen 80 and change this in Listen 8080. Start Wamp server and in your browser type localhost:8080