joni-jones / yii2-wschat

Online chat based on web sockets
MIT License
96 stars 43 forks source link

How to use #10

Open QuinLena15 opened 9 years ago

QuinLena15 commented 9 years ago

Sorry, something I can not understand . Created controller console. After that, I run the console openserver team php yii server / run. Nothing happens freezes . The command is not performed. Maybe you need something else ?

joni-jones commented 9 years ago

If you see any errors, then server was started successfully. I recommend you setup logging to get all chat debug: This is a simple exampe of log config:

'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'flushInterval' => 1,
            'targets' => [
                [
                    'class' => 'yii\log\FileTarget',
                    'levels' => ['error', 'warning', 'info'],
                    'logVars' => [],
                    'exportInterval' => 1
                ],
            ],
        ],
QuinLena15 commented 9 years ago

I do not see any mistakes. When you run the following screen: screenshot_1

joni-jones commented 9 years ago

Seems to all works. Check your logs to get more details.