Jump to content

Asura

Members
  • Posts

    707
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by Asura

  1. Hi moneymuch,

    Make sure you have a table named 'loginlog' in your 'ragnarok' database.

    #Database: ragnarok
    #Table: loginlog
    CREATE TABLE `loginlog` (
     `time` datetime NOT NULL default '0000-00-00 00:00:00',
     `ip` varchar(15) NOT NULL default '',
     `user` varchar(23) NOT NULL default '',
     `rcode` tinyint(4) NOT NULL default '0',
     `log` varchar(255) NOT NULL default '',
     INDEX (`ip`)
    ) ENGINE=MyISAM ;

    Source: https://rathena.svn....-files/logs.sql

  2. Hi Mindless,

    It seems that the Apache process cannot bind itself to port 80; usually this is because of 1 of the following reasons...

    1) Another applications/process is currently using that port.

    2) You have disabled that port via Firewall Settings.

    3) Your ISP has blocked that port. (Only happens when you're using your WAN IP instead of LAN/Localhost)

  3. Hi Bahmut,

    http://www.filedropper.com/

    But if you're willing to spend some money, I would suggest going for a VPS with un-metered bandwidth.

    1) You can host a seedbox which can upload to your leechers; enabling people to also put in the effort to share and seed as well.

    2) You could host a webserver (Lighttpd, Apache, or nGinx) and then host the file there. With this, you can easily get a CDN (content delivery network) and provide fast download speeds all around the world; and you can use IPtables to limit the speed or max connections per IP to prevent Disk IO abuse from people who try to abuse your download.

  4. Hi Kariton Revolution,

    simplehan is right. Here's a hint:

    /*************
    * SQL Table
    *
    CREATE TABLE `vote_point` (
    `account_id` int(11) NOT NULL default '0',
    `point` int(11) NOT NULL default '0',
    `last_vote1` int(11) NOT NULL default '0',
    `last_vote2` int(11) NOT NULL default '0',
    `last_vote3` int(11) NOT NULL default '0',
    `last_vote4` int(11) NOT NULL default '0',
    `last_vote5` int(11) NOT NULL default '0',
    `date` text NOT NULL,
    PRIMARY KEY (`account_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    *
    *
    *************/
    

    Good luck.

  5. Hi sampan99,

    Brian said to do the following...

    1) Find out what SVN version you are using right now with the old SQL tables.

    2) Look in rAthena's 'sql-files' folder and find the closest number for the revision that is above your revision number.

    3) Then start running all the .sql files which are considered new updates from where your currently old revision left off at.

  6. Hi noobsai,

    Log in with PuTTY and type what trenx had already mentioned...

    mysqldump -u USERNAME -p, --password=PASSWORD DATABASE_NAME > FILE_NAME.sql

    Then just use WinSCP and transfer the file over to your computer. Also, a reminder... every name is CaSe-SeNsiTiVe.

×
×
  • Create New...