Here's what I get with ./start.sh:
Exception in thread "main" java.lang.NoClassDefFoundError: java.util.concurrent.atomic.AtomicLong
at it.gotoandplay.smartfoxserver.SmartFoxServer.<init>(SmartFoxServer.java:270)
at it.gotoandplay.smartfoxserver.SmartFoxServer.main(SmartFoxServer.java:237)
me ...
Search found 19 matches
- 15 Mar 2010, 23:20
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
- 15 Mar 2010, 17:23
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
Like I mentioned up above, my server is 64bit Linux, and that is the SFS version I downloaded and installed.
Here is the result of uname -a:
Any other suggestions?
Here is the result of uname -a:
Code: Select all
Linux host310.hostmonster.com 2.6.28-10.7.intel.IGB.BHsmp #1 SMP Thu Aug 13 21:52:24 MDT 2009 x86_64 x86_64 x86_64 GNU/Linux- 15 Mar 2010, 06:11
- Forum: Server Side Extension Development
- Topic: Send response to all users in a room (AS)
- Replies: 10
- Views: 18750
Send response to all users in a room (AS)
Seems like a common thing to do...
In my extension code I have this:
var users = _server.getRoom(fromRoom).getUserList();
_server.sendResponse(res, -1, user, users, "str");
Error in extension [ simpleExt.as ]: TypeError: Cannot find function getRoom. (simpleExt.as#1676) Internal: 101 -- Line ...
In my extension code I have this:
var users = _server.getRoom(fromRoom).getUserList();
_server.sendResponse(res, -1, user, users, "str");
Error in extension [ simpleExt.as ]: TypeError: Cannot find function getRoom. (simpleExt.as#1676) Internal: 101 -- Line ...
- 15 Mar 2010, 00:33
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Where is the default server config.xml?
- Replies: 2
- Views: 6747
- 15 Mar 2010, 00:02
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Errors when restarting the server from admin tool
- Replies: 1
- Views: 4479
Errors when restarting the server from admin tool
I'd like to be able to restart the server from the Admin tool, but here's what happens:
Server Restarting ...
17:29:42.847 - [ WARNING ] > Generic Exception in acceptNewConnections():java.nio.channels.ClosedSelectorException
Exception in thread "restarterThread" java.lang.NoSuchMethodError: org ...
Server Restarting ...
17:29:42.847 - [ WARNING ] > Generic Exception in acceptNewConnections():java.nio.channels.ClosedSelectorException
Exception in thread "restarterThread" java.lang.NoSuchMethodError: org ...
- 14 Mar 2010, 23:26
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
- 13 Mar 2010, 07:00
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Where is the default server config.xml?
- Replies: 2
- Views: 6747
Where is the default server config.xml?
According to the docs:
The server configuration is saved in an XML file called "config.xml", located in the Server/ folder.
My client config is set to zone simpleChat, and when I log in, I am auto-joined into "The Hall" (running the server locally because I still can't get it working online ...
The server configuration is saved in an XML file called "config.xml", located in the Server/ folder.
My client config is set to zone simpleChat, and when I log in, I am auto-joined into "The Hall" (running the server locally because I still can't get it working online ...
- 13 Mar 2010, 06:23
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
- 12 Mar 2010, 04:49
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
- 11 Mar 2010, 16:32
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
- 11 Mar 2010, 06:01
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: How to install on a live domain
- Replies: 11
- Views: 21971
How to install on a live domain
Is there documentation for getting SmartFox running on a live server? I have done lots of testing locally and things are working. Now I want to put it online and test. I don't understand how SmartFox gets started when its on a live server and I can't start the server running myself.
Which files to ...
Which files to ...
- 10 Mar 2010, 05:42
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: onUserEnterRoom question - avatarChat
- Replies: 1
- Views: 4293
onUserEnterRoom question - avatarChat
Please see my comments in the code below.
function onUserEnterRoom( evt:SFSEvent ):void
{
var user:User = evt.params[ "user" ]
var userId:Number = user.getId()
var userName:String = user.getName()
var uVars:Object = user.getVariables()
var mc:Avatar = Avatar( avatarMC.getChildByName( "avatar ...
function onUserEnterRoom( evt:SFSEvent ):void
{
var user:User = evt.params[ "user" ]
var userId:Number = user.getId()
var userName:String = user.getName()
var uVars:Object = user.getVariables()
var mc:Avatar = Avatar( avatarMC.getChildByName( "avatar ...
- 08 Mar 2010, 07:12
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Can't create room because room list is empty?
- Replies: 2
- Views: 6081
- 08 Mar 2010, 04:09
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Can't create room because room list is empty?
- Replies: 2
- Views: 6081
Can't create room because room list is empty?
I have successfully connected and logged in. Now just trying to create a room.
Here's the code I'm using, straight from the docs:
var roomObj:Object = new Object();
roomObj.name = "The Test Room";
roomObj.isGame = true;
roomObj.maxUsers = 15;
_smartFox.createRoom(roomObj);
And here is the ...
Here's the code I'm using, straight from the docs:
var roomObj:Object = new Object();
roomObj.name = "The Test Room";
roomObj.isGame = true;
roomObj.maxUsers = 15;
_smartFox.createRoom(roomObj);
And here is the ...
- 06 Mar 2010, 20:51
- Forum: SmartFoxServer 1.x Discussions and Help
- Topic: Mac OSX Installataion - SmartFox wont start
- Replies: 5
- Views: 8447
I did the installation the same way on my Mac Pro and it works. Came back to my MacBook Pro, deleted everything and tried again. No luck. Still flashes up for a split second then dies. Would there be an error log somewhere? I checked Server/logs but didn't see anything new.
I can piece together the ...
I can piece together the ...