Home Support
Welcome, Guest
Please Login or Register.    Lost Password?

Complimenti
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: Complimenti
#4831
BlastChatSupport
Admin
Posts: 2413
graph
User Offline Click here to see the profile of this user
BlastChat
Re:Complimenti 2 Years, 9 Months ago Karma: 68
mondisommersi2 wrote:
Ok i have understood, infact i have solved the problem changing the joomla folder name in JOOMLA2.glad you resolve the problem

Please can you tell me how could I increase the maximum chatter number??????You have to subscribe to increase your chatters limit. Explore joomla admin backend, menu Components - BlastChat Client - Configuration - Configuration-Server OR www.blastchat.com menu "Your registration", you will find "Subscribe now" links there.

Could I host the chat alone without use the blastchat server?????no, blastchat is a chat hosting service (because most websites out there would not be able to handle chat load on their own servers, shared servers etc.)

I would permise to have more than 50 users in the chat at the same time. ThanksYes, 50 Chatters limit subscription is available.

If you need more information please read our frontpage and our Pricing page.
 
The administrator has disabled public write access.
#4830
mondisommersi2
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:Complimenti 2 Years, 9 Months ago Karma: 0
Ok i have understood, infact i have solved the problem changing the joomla folder name in JOOMLA2. Please can you tell me how could I increase the maximum chatter number?????? Could I host the chat alone without use the blastchat server????? I would permise to have more than 50 users in the chat at the same time. Thanks
 
The administrator has disabled public write access.
#4829
BlastChatSupport
Admin
Posts: 2413
graph
User Offline Click here to see the profile of this user
BlastChat
Re:Complimenti 2 Years, 9 Months ago Karma: 68
Simply register your new URL. (You can not simply change aaa.com to bbb.com and hope it will work, it will not because assigned intra_id and priv_key are unique for each URL.)

Please, submit little bit more detailed information about your problem, can include screenshots as well and we will resolve it promptly.

PS: I do not understand why would you submit your problem under topic "Complimenti"? Makes no sense to do so, does it? Recommendation for the future: if you submit problem to any forum and expect fast competent response, submit problem under proper topic (if it does not exist post a new one and give it a good subject), provide as much information as possible about your problem.
 
The administrator has disabled public write access.
#4828
mondisommersi2
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:Complimenti 2 Years, 9 Months ago Karma: 0
ciao scusami, ho installato blastchat, pero ho un problema con la registrazione. Infatti, ho registrato erroneamente la chat, e ora appunto non riesco ad aprirla, vorrei quindi capire come eliminare la entry della registrazione dalle tabella blastchat, ma non capisco come si fa. Successivamente vorrei anche capire come fare per bene la registrazione senza incappare in altri errori.
 
The administrator has disabled public write access.
#4289
CyberSalsero
Blastchat CB HACK developer
Moderator
Posts: 19
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Roma-Italy
Re:Complimenti 3 Years, 7 Months ago Karma: 3
Allora eccovi la traduzione di questa pagina http://www.blastchat.com/content/view/72/149/
Ti è capitato di avere un messaggio "Error 0002 : Error has occurred, contact your webmaster. Incorrect data in 'blastchatc' table"? Qui c'è la spiegazione su cosa significa e come si può sistemare.
Spiegazione:
Il client di Blastchat, quando sta caricando la chat, prova ad identificare l' URL del tuo sito Joomla! o Mambo, usando la variabile globale $mosConfig_live_site.
Usando il valore di questa variabile, la chat carica i dati appropriati dalla tabella _blastchatc del tuo database e li invia al server blastchat. Se c'è qualche intoppo avrai l' errore 0002.
La funzione bc_getLiveSite nel file defaults.blastchatc.php svolge proprio questa funzione e cioè restituisce l'URL corretto del tuo sito. In questo modo editando tale funzione puoi modificare il valore dell'URL del tuo sito che il client di BlastChat "vede".

Joomla! 1.0.x e Mambo:
La variabile $mosConfig_live_site è predefinita e non ti serve modificare nulla. Ma ottieni lo stesso l'errore? Le possibili cause e soluzioni le trovi più giù.

Joomla! 1.5 legacy:
Joomla 1.5 in legacy mode è stato studiato per pre-settare le variabili non più utilizzate come $mosConfig_live_site ma non lo fa (noi nella versione 2.3 del client non abbiamo risolto questo problema).
I passi per risolvere sono qui di seguito.

Soluzione per Joomla 1.0x e Mambo
Ci sono 2 possibili cause: la lettura del database non avviene correttamente perchè non ci sono i dati del tuo URL nella tabella _blastchatc (la tabella è rovinata, i dati sono mancanti perchè cancellati, hai cambiato l'URL del tuo sito nella variabile $mosConfig_live_site variable, ecc.).

Se non hai toccato il tuo database, ma hai cambiato l'URL del tuo sito che era definito in $mosConfig_live_site, semplicemente entra nel backend di amministrazione e clicca su menu -> Componenti -> BlastChat client -> Registrazione che proverà a creare i nuovi dati nella tabella _blastchatc seguendo la registrazione del tuo nuovo URL.

Se hai toccato il database (cancellato, perso dei dati, ecc.), devi eseguire la stessa procedura spiegata sopra, ma molto probabilmente ti restituirà un altro errore durante la registrazione, perchè l'URL è già stato registrato. Consulta la guida "come fare per riregistrare il mio sito".

Soluzione per Joomla! 1.5 legacy
step 1:
Edita il file defaults.blastchatc.php (nella directory components/com_blastchatc).

step 2:
cerca e sostituisci la funzione bc_getLiveSite con (hai più possibilità):

Code:

function bc_getLiveSite($ls) {

//questa stringa deve contenere l'URL che hai registrato con il servizio blastchat!

return "http://www.yourdomain.com";

}



OPPURE CON

Code:

function bc_getLiveSite($ls) {
// questo dovrebbe restituire l'URL corretto sotto Joomla 1.5

return substr_replace(JURI::root(), '', -1, 1);

}


OPPURE con

Code:

function bc_getLiveSite($ls) {

$request = & new JURI();

$mosConfig_live_site = $request->current();

if (!$mosConfig_live_site) {

$mosConfig_live_site = split("/index". $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);

$mosConfig_live_site = $mosConfig_live_site[0];

}
}



Nel codice della funzione originale, noi semplicemente restuivamo il valore che è nella variabile $mosConfig_live_site che supponevamo essere preconfigurata dal CMS.

step 3:
nel backend di amministrazione clicca su menu Componenti - BlastChat client - Registrazione per creare i nuovi dati nella tabella _blastchat e/o per registrare un nuovo sito e/o per avere conferma che la registrazione è valida.

step 4
entra in chat da frontend (se hai l'errore, cancella la cache del tuo browser e prova di nuovo)
 
Last Edit: 2008/06/24 05:59 By CyberSalsero.
The administrator has disabled public write access.
#4280
musicvision
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:Complimenti 3 Years, 7 Months ago Karma: 0
essì, in teoria avrei bisogno di una piccola traduzione:P

Grazie in aticipo
 
The administrator has disabled public write access.
Go to topPage: 123
Moderators: CyberSalsero