• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. fluidsonic

    Windows Need help with my website

    On the web server the path you have to enter is /webspace/httpdocs/OT and not C:\OT, assuming you uploaded the config.lua to /webspace/httpdocs/OT.
  2. fluidsonic

    Solved The Forgotten Server Error

    okay this is getting confusing. Please post the latest error message you get. And the latest config.lua MySQL settings you use.
  3. fluidsonic

    Windows Need help with my website

    Gesior ACC should have a configuration file where you set the path to your OT. There it says like "C:\OT" at the moment but should be "/webspace/httpdocs/OT".
  4. fluidsonic

    Windows Server clean takes 2 minutes, help

    Then there isn't anything you can do but either getting a better PC or using TFS 0.3.x or newer.
  5. fluidsonic

    Solved The Forgotten Server Error

    Upload your screenshot at imgur: the simple image sharer and post the link. Where did you put the 127.0.0.1? Your config.lua should look like this: mysqlHost = "127.0.0.1"
  6. fluidsonic

    Windows Need help with my website

    That won't work. The setup script looks for the config.lua file on the server, not on your PC. It may help to upload the config.lua file to your website and point to setup script (or website configuration - wherever you specified "C:\OT" as path) to the uploaded config.lua file. Where is the...
  7. fluidsonic

    Solved I would like to bring this issue up!

    Cool. What version of TFS? Just for testing: in otserv.cpp change int main(int argc, char* argv[]) { to int main(int argc, char* argv[]) { std::cout << "uint32_t: " << sizeof(uint32_t) << std::endl; std::cout << "float: " << sizeof(float) << std::endl; Compile and...
  8. fluidsonic

    Solved I would like to bring this issue up!

    Do you compile the TFS on your own using make or do you use a binary distribution?
  9. fluidsonic

    Windows No sql file in my server distro, what to do?

    Try this one: https://devland.googlecode.com/svn/trunk/schema.mysql
  10. fluidsonic

    Solved I would like to bring this issue up!

    What's sizeof(float) and sizeof(uint32_t) when you compile your server? If any of these is != 4 then that may be the cause.
  11. fluidsonic

    Windows Need help with my website

    Is your OT running on the same server as your website? If so, in what directory on the server is your OT installed?
  12. fluidsonic

    Windows Need help with my website

    You should just describe your problem again because from just the two screenshots you posted I have no idea what you problem actually is.
  13. fluidsonic

    Windows Need help with my website

    okay so I have no idea what your actual problem is ^^ You can prevent Skype from using port 80: Tools > Options... > Advanced > Connection Uncheck "Use port 80 and 443 as alternatives for incoming connections"
  14. fluidsonic

    Windows Server clean takes 2 minutes, help

    Oh you're right. Map cleaning was improved significantly with TFS 0.3.x. I have no idea then how to improve it on Windows without upgrading :/ Maybe you can improve performance if you compile it with mingw32 instead of Visual Studio. Did you use Visual Studio?
  15. fluidsonic

    Linux Make error =/ ubuntu 64

    Just cannot just #define away nonexistent functions. Remove these #defines. Looks like lua_strlen was replaced by lua_rawlen in LUA 5.2. So use this: #define lua_strlen lua_rawlen
  16. fluidsonic

    Server crash on my VPS when using 9.86 but 8.60 works fine (interesting problem)

    Is your VPS server using 32-bit Windows? Your OT would be limited to just 3 GB RAM then and you must upgrade to 64-bit Windows.
  17. fluidsonic

    Windows How do I make my ip static?

    Usually you cannot get a static IP address. What you can get is a no-ip subdomain which always points to your current dynamic IP address. Players connect to your server using that subdomain then (e.g. mycoolserver.no-ip.org 7171). See Free Dynamic DNS - Managed DNS - Managed Email - Domain...
  18. fluidsonic

    Linux Problem with nuker? (LOGIN OFF) - HELP IPTABLES

    You could come closer to the connection problem by selectively disabling some of the iptables rules. AS soon as the players can connect again you know what rule caused the problem. The actual problem where the login server goes down may still be a layer 7 attack, which would be great if we can...
  19. fluidsonic

    Windows Need help with my website

    How come your website runs on port 81? Not sure about it but it sounds like that you have installed Apache 2 times. One runs on port 80 (could also be a different web server software) and the other one (included in Uniform Server) runs on port 81. The original Apache on port 80 is configured...
  20. fluidsonic

    Windows Server clean takes 2 minutes, help

    Check that in your config.lua storeTrash is set to true.
Back
Top