I get this problem, in my WorldServer.exe
please tell me and help me how to fix it i included image:
Printable View
I get this problem, in my WorldServer.exe
please tell me and help me how to fix it i included image:
Use another Database and try again.
didnt work same thing
Check that, perhaps will help...
As for the fatal error, read the posts above, you need to edit your code in worldserver to change range by 'range' or something like that...
http://forum.dev-osrose.com/viewtopi...6+range#p19243
This error is happening because you are using php 6.0 (or later if such a thing exists) in your server.
The code in Startup.cpp function LoadSkillData( ) waswritten with php 5 in mind
What is the difference? you ask.
Well in php 6, the word range is a keyword so it's use in the query is causing the whole thing to fail.
The answer:
Look in the code in the above mentioned function in your server files.
Find the word range in the sql query
replace it with 'range'
recompile and you are sorted
Don't change any other use of range, just the one in the query
All you need to do is wrap keywords in ' ' quotes and they will be treated as variables :thumbup: