Hi,
Ok, I am trying mysql class and when I try to connect to my server I
get this error..
/usr/lib/ape/libmod_spidermonkey.so: undefined symbol: scramble
and then the server die..
this is the command on server side.
Ape.registerCmd('connectMsql', true, function(params, info) {
var sql = new Ape.MySQL("127.0.0.1:3306", 'muser', 'pass',
'database');
sql.onConnect = function() {
Ape.log('Connected to mysql server');
}
//onError callback
sql.onError = function(errorNo) {
Ape.log('Connection error ' + errorNo +' '+ this.errorString());
}
});
If I set the ip:port just with the ip = '127.0.0.1' I get this error
below, but Ape doesn't crash..
libape-spidermonkey.c:2204 - JavaScript : Connection error 12 No such
file or directory
anyone running in this problem before?
thanks in advance guys.. appreciate it.
--
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/