Search found 22668 matches

by Lapo
15 Jun 2007, 13:44
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Extension message to all
Replies: 2
Views: 4862

sendModeratorMessage is available in both AS and Java server side framework
by Lapo
15 Jun 2007, 13:29
Forum: Server Side Extension Development
Topic: Game Room Dynamic Extension Problems
Replies: 5
Views: 8482

The error simply warns you that the file doesn't exist in the sfsExtensions/ folder. I should say that I put my own extension in the sfsExtension folder on the server, but when I restart the server I notice that it doesn't appear in the AdminTool's Extension list. This is another sign that the file ...
by Lapo
15 Jun 2007, 13:26
Forum: SmartFoxServer 1.x Discussions and Help
Topic: onCreateRoom() forces private without password
Replies: 7
Views: 9459

Hi,
try specifying that you want an empty password, like this:

Code: Select all

gameRoom.password = ""
by Lapo
15 Jun 2007, 06:08
Forum: Server Side Extension Development
Topic: help with JSON method
Replies: 3
Views: 7756

What is the problem? What error do you get?
by Lapo
14 Jun 2007, 15:32
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Send mail need help
Replies: 7
Views: 10412

try on google -> free smtp service
by Lapo
14 Jun 2007, 15:10
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Send mail need help
Replies: 7
Views: 10412

by googling around I've found that gmail smtp requires a TLS authentication, which is not enabled by default in the SFS Mailer. The quickest solution is to try another smtp server :) Alternatively, if you're familiar with the Java Mail API, you can implement you own solution, even from an Actionscri...
by Lapo
14 Jun 2007, 07:58
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Firewall, I Think I've Found Out How
Replies: 2
Views: 4932

I don't have a PC around here right now but you should do something like this:

- Open the windows firewall
- Select Exceptions
- Click "add port"
- Enter any name ("smartfox" or so) and 9339 (the default SFS port)
- Confirm the changes
by Lapo
14 Jun 2007, 07:45
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Processor Load and Multiple Processors
Replies: 3
Views: 6184

That's the thing. The only queue we've been having trouble with is the extension handler queue, but when it peaks at 8K the server load still stays less than 3%. Shouldn't the server be working to read in the messages as fast as possible so pile ups don't happen? It just seems to me that whenever t...
by Lapo
14 Jun 2007, 07:32
Forum: SmartFoxServer 1.x Discussions and Help
Topic: can't install lite
Replies: 1
Views: 4202

Those instructions are for BASIC and PRO. (Which I would recommend as they are more up to date) If you want to install the Lite version please read here -> http://www.gotoandplay.it/_articles/multiplayerCentral/installationNotes.php ( the Lite version is hosted and maintained at gotoAndPlay(), you c...
by Lapo
14 Jun 2007, 07:29
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Send mail need help
Replies: 7
Views: 10412

The problem is not with the port.
The error says --> " Unknown SMTP host: smtp.gmail.com; "
So it seems having problems connecting to the host. Maybe a DNS problem? Try using the physical IP address of the smtp instead of the name
by Lapo
14 Jun 2007, 07:27
Forum: Server Side Extension Development
Topic: connecting to mysql gives no suitable driver exception
Replies: 4
Views: 8526

Quote from the documentation: " Using a JDBC driver is also very common where the database engine does not support ODBC natively (MySQL for example) or when the JDBC driver delivers better performance than the ODBC one. In this case we reccomend to download the latest version of the driver and ...
by Lapo
14 Jun 2007, 07:18
Forum: SmartFoxServer 1.x Discussions and Help
Topic: NULL user objects
Replies: 11
Views: 14270

I've investigated some more. 1) In the first code snippet, as I already mentioned, you have to check for null objects because you're retrieving Users from their SockerChannels. It's not guaranteed that a SocketChannel has its corresponding User object, hence you should check for null values being re...
by Lapo
13 Jun 2007, 14:20
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Server side.
Replies: 1
Views: 3688

All the answers to your question are found in the documentation: http://www.smartfoxserver.com/docs/docPages/extIntro/databaseConnection.htm http://www.smartfoxserver.com/docs/docPages/tutorials_pro/03_dbExt/index.htm If you don't understand what are the advanced settings (connection pool etc..) lea...
by Lapo
13 Jun 2007, 08:32
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Load Balance
Replies: 3
Views: 7405

Load balancing a socket server is not as simple as you would do with a regular http server. The difference is in the way those servers works, the former use persistent socket connections while the latter always open and close a new connection for each request. A simple way to load balance a SFS appl...
by Lapo
13 Jun 2007, 06:24
Forum: Server Side Extension Development
Topic: How to connect the smartfoxserver
Replies: 5
Views: 8824

hat if i wanna run a multiplayer chat from a machine with ip 192.168.0.2 will the connection http://192.168.0.41:8080/Chat/simpleChat.swf help for multiplayer chat if the server runs in 192.168.0.41 If the machine is running on 192.168.0.41 you need to specify that address in the config.xml and res...

Go to advanced search