PFC Version: 1.6.2
PHP Version: 5?2?6
Shared or Dedicated Hosting: hmm... shared i guess even though the server is mine
Link to your website: in the present case and as a test bed: http://ffm.chryzo.net/news.php
Are you able to reproduce the issue on the official demo (http://www.phpfreechat.net/demo)? not tested, is it testable ?
Have you set any parameters? No paramters set
Are you seeing any error messages, such as javascript errors? no error are appearing
What is the issue you are experiencing in detail?
So I implemented phpFreeChat on e107. It is working perfectly fine.
Now I am trying to add custom commands. So I created a file test.class.php in the src/commands directory.
When I type the /test in the chat channel nothing happens. No error. No text. No Nothing

What could be the reason ?
I based my command on the /me command and here is my file:
<?php
// create the customized command
require_once dirname(__FILE__)."/../src/pfccommand.class.php";
class pfcCommand_test extends pfcCommand
{
function run(&$xml_reponse, $p)
{
$clientid = $p["clientid"];
$param = $p["param"];
$sender = $p["sender"];
$recipient = $p["recipient"];
$recipientid = $p["recipientid"];
$c =& pfcGlobalConfig::Instance();
$u =& pfcUserConfig::Instance();
$ct =& pfcContainer::Instance();
$nick = $u->getNickname();
$text = trim($param);
$ct->write($recipient, $nick, "send", $text);
}
}
?>
Best regards,