সর্বশেষ সম্পাদনা করেছেন শুভ্র (১০-০৬-২০০৭ ১৪:২০)

টপিকঃ ফোরামের সাথে চ্যাট সংযোগ করণ..

session_start();
if (!isset($_SESSION['punbb_to_pfc_nickname']))
{
  define('PUN_ROOT', dirname(__FILE__).'/forum/'); // adjust this path to your forum installation root
  require PUN_ROOT.'include/common.php';
  $userdata = array();
  check_cookie($userdata);
  if ($userdata['username'] == 'Guest')
    $userdata['username'] .= rand(1,1000); // generate a random guest username
  $_SESSION['punbb_to_pfc_nickname'] = $userdata['username'];
}

Then you can write the classique phpfreechat parameter list using $_SESSION['punbb_to_pfc_nickname'] as the phpfreechat nickname. For example:

require_once "src/phpfreechat.class.php";
$params["serverid"]          = md5(__FILE__);
$params["title"]             = "phpFreeChat connected to the PunBB forum";
$params["channels"]          = array("General","PunBB support");
$params["language"]          = "bn_BD";
$params["nick"]              = $_SESSION['punbb_to_pfc_nickname'];
$chat = new phpFreeChat($params);session_start();
if (!isset($_SESSION['punbb_to_pfc_nickname']))
{
  define('PUN_ROOT', dirname(__FILE__).'/forum/'); // adjust this path to your forum installation root
  require PUN_ROOT.'include/common.php';
  $userdata = array();
  check_cookie($userdata);
  if ($userdata['username'] == 'Guest')
    $userdata['username'] .= rand(1,1000); // generate a random guest username
  $_SESSION['punbb_to_pfc_nickname'] = $userdata['username'];
}

Then you can write the classique phpfreechat parameter list using $_SESSION['punbb_to_pfc_nickname'] as the phpfreechat nickname. For example:

require_once "src/phpfreechat.class.php";
$params["serverid"]          = md5(__FILE__);
$params["title"]             = "phpFreeChat connected to the PunBB forum";
$params["channels"]          = array("General","PunBB support");
$params["language"]          = "en_US";
$params["nick"]              = $_SESSION['punbb_to_pfc_nickname'];
$chat = new phpFreeChat($params);

Re: ফোরামের সাথে চ্যাট সংযোগ করণ..

প্রত্যেক প্রাণীকেই মৃত্যুর স্বাদ গ্রহণ করতে হবে।

Re: ফোরামের সাথে চ্যাট সংযোগ করণ..

Re: ফোরামের সাথে চ্যাট সংযোগ করণ..

Re: ফোরামের সাথে চ্যাট সংযোগ করণ..

শুভ্র, আপনাকে ধন্যবাদ। কিন্তু আমরা ঐ ইঞ্জিন ব্যবহার করছি না। তবে আমি কয়েকদিন থেকে আপনার উল্লেখিত চ্যাট সফটওয়্যার নিয়ে কাজ শুরু করে দিয়েছে। আপনার পোস্ট আমার সময় বাঁচিয়ে দিবে। আপনাকে ধন্যবাদ।

Re: ফোরামের সাথে চ্যাট সংযোগ করণ..