request

PHP, HTML, Joomla, WordPress, etc..
Plaats reactie
miamiradio

request

Ongelezen bericht door miamiradio »

hoi allemaal
ik ben nu al maanden bezig om samphpweb op mijn site tekrijgen ik ben nu zo ver dat alleen request werkt nog niet wat ik ook doe niks helpt .
ik heb kees zijn uitleg ook al geprobeert maar dat werkt hier helemaal niet .
ik heb nu php op site staan hij upload en hij doet alles wat ie moet doen alleen request dat wil maar niet ik kom er echt niet meer uit
mijn firewall als ik die uit doe helpt ook niet mijn poorten 1221 en 3306 staan ook open .
maar hij zegt steeds als ik een request wil aanvragen .
Unable to connect to 86.82.76.147:1221. Station might be offline.
The error returned was Connection refused (111).


wat ik ook doe dit zegt ie steeds wie kan mij hier mee helpen
groetjes miami


om te kijken naar mijn site is dit het adres.
http://www.miamiradio.nl/sam2
Slider

Ongelezen bericht door Slider »

heb je de config files wel goed?
miamiradio

Ongelezen bericht door miamiradio »

ja volgens mij wel
miamiradio

Ongelezen bericht door miamiradio »

<?

/* ## ======================================== ## */
$commonpath = "./common";

//Station general details
$station = "My station name";
$email = "email@mailbox.com";
$logo = "images/logo.gif";

//Your CHAT details
$chat["room"] = "#audiorealm";
$chat["host"] = "hogan.freenode.net";
$chat["port"] = "6667";

//Your MySQL database login details
$dblogin["host"] = "**********";
$dblogin["username"] = "root";
$dblogin["password"] = "****";
$dblogin["database"] = "SAMDB";

$stationID = 0; //The ID of your station on AudioRealm.com
$sam["host"] = "***********"; //The IP address of the machine SAM is running on (DO NOT use a local IP address like 127.0.0.1 or 192.x.x.x)
$sam["port"] = "1221"; //The port SAM handles HTTP requests on. Usually 1221.

//General options
$showpic = true; //Must we show pictures in now playing section?
$privaterequests = true; //If False, AudioRealm will handle the requests
$top10requests = true; //Must we show the top 10 requests on the now playing page?

$picture_dir = "pictures/"; //Directory where all your album pictures are stored
$picture_na = $picture_dir."na.gif"; //Use this picture if the song has no picture

//Row colors used
$darkrow = "#dadada";
$lightrow = "#F6F6F6";

/* ## ======================================== ## */

require_once("common/form.php");
require_once("common/db.php");
require_once("common/functions.php");

// Load EGPCS vars into globals (emulates register_globals = On in php.ini)
if (!empty($HTTP_ENV_VARS)) while(list($name, $value) = each($HTTP_ENV_VARS)) $$name = $value;
if (!empty($HTTP_GET_VARS)) while(list($name, $value) = each($HTTP_GET_VARS)) $$name = $value;
if (!empty($HTTP_POST_VARS)) while(list($name, $value) = each($HTTP_POST_VARS)) $$name = $value;
if (!empty($HTTP_COOKIE_VARS)) while(list($name, $value) = each($HTTP_COOKIE_VARS)) $$name = $value;
if (!empty($HTTP_SERVER_VARS)) while(list($name, $value) = each($HTTP_SERVER_VARS)) $$name = $value;


$db = new DBTable();
$db->connectdb($dblogin,$dblogin["database"]);

?>
miamiradio

Ongelezen bericht door miamiradio »

dit is mijn conf
Plaats reactie
  • Vergelijkbare Onderwerpen
    Reacties
    Weergaves
    Laatste bericht