
12-05-2005, 01:36 PM
|
|
|
Join Date: Sep 2005
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Automatic login is not working, all I get is:
Quote:
Logging In. Please Wait....
Verifying Password, Please Wait...
Invalid Username or Password. Please try again.
|
My settings are setup as follows:
Quote:
<?php
################################################## ########################
# Edit the values below to match your chat room ##########################
################################################## ########################
#
# CHAT ROOM SETTINGS
#
# The following information can be obtained from the "Link Instructions"
# section of your SigmaChat control panel, or by looking at your current
# chat room HTML source code.
# E.g., client0.sigmachat.com or client1.sigmachat.com, etc..
$SIGMACHAT_SERVER = 'client1.sigmachat.com';
# !!! Do not include the preceeding "SC-" before your account ID number. !!!
$SIGMACHAT_CHAT_ROOM_ID = 'XXXXXX';
# Language Code, as used in the applet (HTML) link code.
# English = 'en'
$SIGMACHAT_LANG = 'en';
# Enable Automatic Login when chat room is started?
# Yes = 1, No = 0
$SIGMACHAT_ENABLE_AUTO_LOGIN = 1;
#
# CHAT ROOM AUTHENTICATION SETTINGS
#
# Are you using SigmaChat's remote authentication system (RAS) to
# authenticate access into your chat room? If so, set this value to
# 1. Setting this value to zero will disable the vb authentication
# mechanism included in this mod.
# Yes = 1, No = 0
$SIGMACHAT_VB_AUTHENTICATE = 1;
# Specify whether or not Guest access will be allowed within your
# chat room if making use of the remote authentication system.
$SIGMACHAT_AUTH_GUEST = 1;
# Specify the Primary User Groups that do not have access to the chat room.
# From your vBulletin Control Panel Home, Click on "Usergroups" then
# "Usergroup Manager" to determine which ID numbers are assigned to your groups.
$SIGMACHAT_AUTH_NOACCESS = array(4);
# Specify the Primary User Groups that have standard access to the chat room.
$SIGMACHAT_AUTH_ACCESS = array(1,2,3);
# Specify the Primary User Groups that have administrative (kick, ban, etc..) access to the
# chat room.
$SIGMACHAT_AUTH_ADMINACCESS = array(7);
# Specify the Primary User Groups that have both administrative access and grant access (the
# ability to grant temporary administrative privileges to non-admins within the
# chat room) in the chat room.
$SIGMACHAT_AUTH_GRANTACCESS = array(5,6);
#
# WHO'S CHATTING MODULE SETTINGS
#
# Enter your SigmaChat control panel password here. This is required when using the
# Who's Online Module to ensure security when deducting "Who's Online Module" hits
# from your account. Your password is kept secure via MD5 encoding when calling
# SigmaChat's Who's Online system.
$SIGMACHAT_CP_PASSWORD = 'XXXXXXXXXXXXXX';
#
# REMOTE USER FUNCTION SETTINGS
#
# Specify the URL to your forum. Do not add "index.php" or similar.
$SIGMACHAT_FORUM_URL = "http://www.XXXXXXX.com/forum/";
# Specify a 0 (zero) or a 1 (one) for each option below to enable (1) or disable (0)
# the right-click commands in your chat room that link back to the forum for your forum
# user profile, find user's posts, email user, and private message user.
$SIGMACHAT_ENABLE_LINK_PROFILE = 1;
$SIGMACHAT_ENABLE_LINK_FINDPOSTS = 1;
$SIGMACHAT_ENABLE_LINK_EMAIL = 1;
$SIGMACHAT_ENABLE_LINK_PM = 1;
$SIGMACHAT_ENABLE_LINK_ADDBUDDY = 1;
$SIGMACHAT_ENABLE_LINK_FORUM_IGNORE = 0;
?>
|
|