Search found 8 matches

by Billyboy
21 Dec 2006, 13:16
Forum: The Bug Trap
Topic: Problem with Room Variables!!!
Replies: 3
Views: 188

Problem with Room Variables!!!

sfs 1.5. Try to create room with variable:

function doStart(aGameName:String, dataOption:String, aMaxUsers:Number)
{
var roomObj = new Object()
roomObj.name = aGameName
roomObj.maxUsers = aMaxUsers
roomObj.maxSpectators = 100
roomObj.isGame = true

var variables:Array = new Array ...
by Billyboy
15 Dec 2006, 08:24
Forum: Server Side Extension Development
Topic: problem with sending mail
Replies: 9
Views: 16635

One more question about sfs and linux: does sfs have possibility of launching after reboot of computer? We can create launch script, but maybe there is some algorithm? Should sfs start by root priveleges or not?
by Billyboy
05 Dec 2006, 10:43
Forum: Server Side Extension Development
Topic: problem with sending mail
Replies: 9
Views: 16635

Try this:

1. change your settings to:
<FileLoggingLevel>FINE</FileLoggingLevel>
<ConsoleLoggingLevel>FINE</ConsoleLoggingLevel>
2. stop the server
3. delete the wrapper.log file
4. start the server

check your wrapper.log file after the server started, you should see a long list of messages ...
by Billyboy
01 Dec 2006, 12:41
Forum: Server Side Extension Development
Topic: problem with sending mail
Replies: 9
Views: 16635

from what you have written it seems you're running the server under linux. Is this correct? If so you can find the logs in the runAsService/wrapper.log file

I find in this file just one line for week sfs working!!! May be problem in config?

<FileLoggingLevel>CONFIG</FileLoggingLevel ...
by Billyboy
29 Nov 2006, 08:43
Forum: Server Side Extension Development
Topic: problem with sending mail
Replies: 9
Views: 16635

there seem to be a wrong reference in the classpath in the wrapper.conf file.

Open it from the runAsService/conf folder and look for the following line:
wrapper.java.classpath.10=__INSTALL_PATH__/Server/lib/javamail/activation.jar
change the
Server/lib/javamail/activation.jar
to
Server/lib ...
by Billyboy
28 Nov 2006, 12:01
Forum: Server Side Extension Development
Topic: problem with sending mail
Replies: 9
Views: 16635

problem with sending mail

I try to send mail by _server.sendMail function.

I set these properties in config.xml :

<Mailer>
<MailHost>server_ip</MailHost>
<MailUser>local_user</MailUser>
<MailPass></MailPass>
</Mailer>

where server_ip is the same as SFS ip, local_user was set to
a local user name or complete e-mail ...
by Billyboy
31 Oct 2006, 08:48
Forum: SmartFoxServer 1.x Discussions and Help
Topic: hardware configuration
Replies: 1
Views: 4645

hardware configuration

In what way must the server be completed in order to increase its productivity if it is runned by 2 thousands of users? Could I get the statistics of corellation between computer integration&number of users?
by Billyboy
19 Aug 2006, 08:51
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Avatar from user comp
Replies: 1
Views: 4611

Avatar from user comp

Hello

I want to create application where user can post his avatar from own computer.

This will be jpg with user's picture.

How I can transport this file to server side and back?
Or that must be array of pixels?

My own ideas that keep in UserVariables url to this file on server side, and upload ...