Displaying 3 results from an estimated 3 matches for "paymentonline".
2005 Oct 30
4
IE crashing
Before I spend a ton of time trying to track something down that might not
actually be broken, maybe someone could test this with IE to see if it
crashes their browser also.
Go to http://asterisk.paymentonline.net:3000/login/user and login as user
''demo'', password ''password''. Then click on the dialplan menu option and then
click Add Script once or twice. on my computer this crashes IE 6 every time.
Chris
_______________________________________________
Rails-spinoffs...
2005 May 26
2
static database config gui
.... So that you can have
multiple end users with their own copies of the config files all on
the same server. The separation will be done through a naming
convention that will be applied appropriately. A kind of asterisk
virtual hosting.
I have a demo setup at the following url:
http://catalog1.paymentonline.com/voip/demo/index.html
One note on the gui. The numbers on the very left are the order of
the statements in the config file. For extensions, when you change
the location of an extension priority the system will automatically
renumber the order and the dialplan automatically. To insert a new...
2006 Aug 08
11
Core dump using sample DumbHttpClient
...----------------------------------------
require ''eventmachine''
class DumbHttpClient < EventMachine::Connection
def initialize *args
super
# whatever else you want to do here
end
def post_init
#start_tls
send_data "GET / HTTP/1.1\r\nHost: shop.paymentonline.com\r\n\r\n"
@data = ""
end
def receive_data data
@data << data
if @data =~ /[\n][\r]*[\n]/m
puts "RECEIVED HTTP HEADER:"
$`.each {|line| puts ">>> #{line}" }
puts "Now we''ll termina...