• Regolamento Macrocategoria DEV
    Prima di aprire un topic nella Macrocategoria DEV, è bene leggerne il suo regolamento. Sei un'azienda o un hosting/provider? Qui sono anche contenute informazioni per collaborare con Sciax2 ed ottenere l'accredito nella nostra community!

Problema risolto Configurazione Bowob chat

Sasyfuf96

Utente Medio
Autore del topic
15 Febbraio 2010
106
0
Miglior risposta
0
Ciao A Tutti Non So se è la sezione giusta se no potete spostarla grazie...
Allora vi spiego il mio problema io ho creato una pagina su altervista e volevo inserirgli la chat tipo facebook ke ho preso da BoWoB:
Perfavore, Entra oppure Registrati per vedere i Link!

Ho Fatto tutto e scaricato i file li metto in altervista/ però mi dice che dv configurare uno dei file chiamato bowob.php , mi dice di inserire app ip e server address ke mi ha dati si li ho ma nn so dove inserirli:

<?php

/**
* @file bowob.php
*
* Implements main functions and calls the BoWoB API.
*/

$bowob_type = is_numeric(@$_GET['type']) ? intval($_GET['type']) : -1;

if($bowob_type == 2)
{
bowob_server_sync();
}
elseif($bowob_type == 3)
{
bowob_client_sync();
}
elseif($bowob_type == 4)
{
bowob_redirect_login();
}
elseif($bowob_type == 5)
{
bowob_redirect_profile();
}

/**
* Prints synchronization data to be readed by BoWoB server.
* @return void.
*/
function bowob_server_sync()
{
header('Cache-Control: no-cache, must-revalidate');
header('Content-Type: text/plain; charset=utf-8');

include(dirname(realpath(__FILE__)) . '/bowob_api.php');

echo bowob_api_get_sync_data(
is_numeric(@$_GET['id']) ? intval($_GET['id']) : -1,
is_string(@$_GET['sync']) ? $_GET['sync'] : '',
@$_GET['name'] == '1',
@$_GET['avatar'] == '1',
@$_GET['friends'] == '1'
);
}

/**
* Creates a synchronization record and prints record identifiers to be readed by BoWoB client.
* @return void.
*/
function bowob_client_sync()
{
header('Cache-Control: no-cache, must-revalidate');
header('Content-Type: text/plain');

include(dirname(realpath(__FILE__)) . '/bowob_api.php');

echo bowob_api_new_sync(
is_string(@$_GET['nick']) ? $_GET['nick'] : '',
@$_GET['name'] == '1',
@$_GET['avatar'] == '1'
);
}

/**
* Redirects to login page.
* @return void.
*/
function bowob_redirect_login()
{
// TO COMPLETE
}

/**
* Redirects to user profile page.
* @return void.
*/
function bowob_redirect_profile()
{
$userid = is_numeric(@$_GET['id']) ? intval($_GET['id']) : -1;

// TO COMPLETE
}

/**
* Prints BoWoB HTML code for show the chat.
* @return void.
*/
function bowob_code()
{
include(dirname(realpath(__FILE__)) . '/bowob_api.php');

// TO COMPLETE

echo bowob_api_get_code(/* bowob_24780 */, /* bobow_http://euwest2.bowobcloud1.com/ */);
}

/**
* Checks if current user is logued.
* @return boolean User is logued.
*/
function bowob_is_user_logued()
{
// TO COMPLETE
}

/**
* Gets current user id.
* @return int User id.
*/
function bowob_get_user_id()
{
// TO COMPLETE
}

/**
* Gets current user nick.
* @return string User nick.
*/
function bowob_get_user_nick()
{
// TO COMPLETE
}

/**
* Gets current user name.
* @return string User name.
*/
function bowob_get_user_name()
{
// TO COMPLETE
}

/**
* Gets current user avatar url.
* @return string User avatar.
*/
function bowob_get_user_avatar()
{
// TO COMPLETE
}

/**
* Gets current user friends.
* @param int $id User id.
* @param string $separator Separator between nicks.
* @return string User friends.
*/
function bowob_get_user_friends($id, $separator)
{
// TO COMPLETE
}

/**
* Stores a synchronization record in database.
* @param string $auth Record auth.
* @param int $creation Record creation time.
* @param int $user_id Record user id.
* @param string $user_nick Record user nick.
* @param string $user_name Record user name.
* @param string $user_avatar Record user avatar.
* @param int $user_type Record user type.
* @return int Record id.
*/
function bowob_store_sync($auth, $creation, $user_id, $user_nick, $user_name, $user_avatar, $user_type)
{
// TO COMPLETE
}

/**
* Extracts a synchronization record from database.
* @param int $id Record id.
* @param string $auth Record auth.
* @param int $expiration Record expiration time.
* @return array Record values.
*/
function bowob_extract_sync($id, $auth, $expiration)
{
// TO COMPLETE
}

?>

Questo è il file bowob.php qualcuno di voi mi sa dire cosa devo sostituire per farlo funzionare???
P.s. Se Vado sulla pagina mi da un errore sulla linea 96
Rispondete Presto Grazie <3
 
Riferimento: Mi Aiutate Ho Un Problema Col Mio Sito!

Avverto per titolo non consono e modifico.

Comunque sia fai uno screen di cosa ti chiede esattamente.
 
Riferimento: Configurazione Bowob chat

Scusatemi ho risolto comunque grazie Ho preso una chat da
Perfavore, Entra oppure Registrati per vedere i Link!
grazie mille
 
Riferimento: Configurazione Bowob chat

Sposto e rinomino poichè il problema è stato risolto ;)