Search found 158 matches

by Flappi282
28 Sep 2011, 18:21
Forum: Server Side Extension Development
Topic: [ask] can i have userId from database?
Replies: 6
Views: 10948

Yes, it's okay to give out SFS User ID but as rjgtav said, it's not wise to provide the Database ID. Database ID should only be stored on server side. Then perform some sort of server sided function on the user's ID to make it more secure ;D Eg: function makeaniceandsafeID(databaseID){...
by Flappi282
27 Sep 2011, 17:25
Forum: Server Side Extension Development
Topic: [ask] can i have userId from database?
Replies: 6
Views: 10948

It's not really a security leak if you give out the ID. It's pretty good for short packets and optimizing bandwidth.
by Flappi282
27 Sep 2011, 17:17
Forum: Server Side Extension Development
Topic: Adding zones dynamically
Replies: 1
Views: 5093

Adding zones dynamically

Is there any function to create zones dynamically? I'm not interested if it's not included in the API, I just need to know if it's possible without restarting the server.

Thanks
by Flappi282
02 Sep 2011, 20:29
Forum: Server Side Extension Development
Topic: Dialog between php and SFS extension
Replies: 2
Views: 6712

Nope, PHP can't directly contact an extension without creating a socket (which would be very annoying and hard to maintain).

You can use loadVariables from the extension to make queries to PHP files.
by Flappi282
02 Sep 2011, 20:23
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Weird and annoying problem with Jetty
Replies: 4
Views: 7868

I'm not fimilar with Quercus. Maybe it is affecting your jetty server. Is Quercus a service? A temporary test you could try is to change your jetty port to something like, such as 5000 and see if you can access your jetty web root via port 5000 when Quercus running. This is to check if there's any ...
by Flappi282
02 Sep 2011, 20:20
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Problems installing on 64bit.
Replies: 3
Views: 6713

Check you are 64 bit (`uname -a`)

Try the 32 bit again, and be sure to run the ./install command and install it properly ;D
by Flappi282
02 Sep 2011, 20:18
Forum: SmartFoxServer 1.x Discussions and Help
Topic: avatarChat Bug Help
Replies: 1
Views: 4952

1) Don't use the avatarChat for your game. It's too simple and insecure Your problem is caused by the timeout for the speech bubble changing from visible to hidden not being overridden. This means that after the second, third etc messages, it will set _visible to false at the same time as the first ...
by Flappi282
25 Aug 2011, 00:25
Forum: SmartFoxServer 1.x Discussions and Help
Topic: More JETTY questions
Replies: 1
Views: 4556

Nevermind, solved it.

Since I suck at Python and Java, I forgot the instance() on the class :S
by Flappi282
24 Aug 2011, 20:30
Forum: SmartFoxServer 1.x Discussions and Help
Topic: More JETTY questions
Replies: 1
Views: 4556

More JETTY questions

I was wondering if JETTY can call seperate functions on Smartfoxserver, except for just the basic WebHelper class.

I tried to get it to load from the ExtensionHelper class, but it gives me errors.

Is there any method without using sockets? Thanks
by Flappi282
24 Aug 2011, 14:29
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Weird and annoying problem with Jetty
Replies: 4
Views: 7868

Server address: http://www.zobbieisle.com:8080/

SFS version 1.6.6 (I need to update it, but I've not had a chance)

Tried to install Quercus. Without it enabled, it works fine. When it's enabled, I get 404 errors.
by Flappi282
16 Aug 2011, 17:47
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Config.xml setting
Replies: 5
Views: 10010

I guess you could disable the embedded web-server, and remove zones you aren't using.
by Flappi282
16 Aug 2011, 17:44
Forum: SmartFoxServer 1.x Discussions and Help
Topic: How to tell if your server is full?
Replies: 4
Views: 7912

I've never clustered, but I'm pretty sure it can be set to automatically balance the loads, not sure how though.
by Flappi282
16 Aug 2011, 17:37
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Weird and annoying problem with Jetty
Replies: 4
Views: 7868

Weird and annoying problem with Jetty

I've tried to set up Quercus with the JETTY installation default with Smartfoxserver.

For some strange reason, I always get a 404 Not Found error when trying to access the web-server. No matter what I do to try and fix, nothing works.
by Flappi282
05 Aug 2011, 12:40
Forum: SmartFoxServer 1.x Discussions and Help
Topic: Really weird memory leak
Replies: 1
Views: 4087

Really weird memory leak

I'm running SmartFoxServer PRO 1.6.6. For some reason, it is very unstable, and is crashing. I have 3 zones set up, each one representing a different world on a MMO, each ones connecting to a local MySQL server. I have a heap size of 256MB. When the server reaches 4 connections, I start to get out o...
by Flappi282
24 Jul 2011, 18:43
Forum: Server Side Extension Development
Topic: User variables not visible.
Replies: 4
Views: 7821

Surprisingly, as you said, casting the data as strings worked.

Thanks!

Go to advanced search