search for: colsole

Displaying 3 results from an estimated 3 matches for "colsole".

Did you mean: kolsole
2005 Oct 03
1
no audio on fxo line
...from two weeks away and appear to have lost audio on my tdm411 fxo. Everything was working properly when I left. I checked the logs, config files and can't see any problems, the zap channels and modules are all loaded properly, asterisk starts without probs and everything looks sweet on the colsole with -vvvvvvvvc when I make calls, but I just don't hear a dialtone or any audio anymore. I tried opening the sound monitor and that looks as though appropriate sounds are being sent. When I pick up the handset all I can hear is a slight crackling noise. The fxo line rings but I don't...
2006 Sep 21
2
proxying and mongrel 0.3.13.4
...7000 -a 127.0.0.1 -l log/mongrel.log -P log/mongrel.pid -n 200 --user myuser --group mygroup With this setup, apache is logging a 404, but the 404 page being returned to the client looks to be mongrel''s (simply says, "NOT FOUND"). Running `links http://localhost:7000/` from the colsole of the server gives me the default page for the rails app, so that piece is working. Am I just missing something that should be obvious? Thanks, Doug
2008 May 11
4
Latest rb_win32_select patch
Hi Park, I tried your latest patch and ran the sample code: readPipe, writePipe = IO.pipe t = Thread.new{ sleep 5 while true sleep 0.1 puts "got #{readPipe.readline.length} bytes" end } i = 1 while true i += 1 sleep 1 puts "hello from main" if i > 3 writePipe.puts "a"*2048 end end t.join At the console I typed the