I did change the privileges of user in phpMyAdmin to allow any host to
connect to MySQL Server on Windows 7. Now it worked.
And it caused this error in Terminal when start APE server:
"/usr/bin/aped: symbol lookup error: /usr/lib/ape/
libmod_spidermonkey.so: undefined symbol: scramble"
Then i recompiled the source from this link:
https://github.com/APE-Project/APE_Server/tarball/master
and replace the old libmod_spidermonkey.so with the new one in:
/usr/lib/ape
(Well, as this page guides: 
http://www.mail-archive.com/[email protected]/msg03496.html)
Now, another weird thing happens. Using the old code:
...
        Ape.log('Call MySQLConnect()...');
        var sql = new Ape.MySQL(ip + ":" + port, user, password, database);
        //onConnect callback
        sql.onConnect = function() {
                Ape.log('You are now connected to MySQL server');
        }
        //onError callback
        sql.onError = function(errorNo) {
                Ape.log('Connection error ' + errorNo + ' ' + 
this.errorString());
        }
...
When i start APE server, I got only the first log "Call
MySQLConnect()...".
And nothing else happened, neither successful nor error message.
Am i doing something wrong?

-- 
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/

Reply via email to