Jump to content

Faiz

Members
  • Posts

    4
  • Joined

  • Last visited

Faiz's Achievements

Poring

Poring (1/15)

  • Reacting Well
  • First Post
  • Dedicated
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. @Emistry just provide the 1st solution. You have to edit main.sql and look for: CREATE TABLE IF NOT EXISTS `party_bookings` ( `world_name` varchar(32) NOT NULL, `account_id` int(11) unsigned NOT NULL, `char_id` int(11) unsigned NOT NULL, `char_name` varchar(23) NOT NULL, `purpose` smallint(5) unsigned NOT NULL DEFAULT '0', `assist` tinyint(3) unsigned NOT NULL DEFAULT '0', `damagedealer` tinyint(3) unsigned NOT NULL DEFAULT '0', `healer` tinyint(3) unsigned NOT NULL DEFAULT '0', `tanker` tinyint(3) unsigned NOT NULL DEFAULT '0', `minimum_level` smallint(5) unsigned NOT NULL, `maximum_level` smallint(5) unsigned NOT NULL, `comment` varchar(255) NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`world_name`, `account_id`, `char_id`) ) ENGINE=MyISAM; Replace CURRENT_TIMESTAMP to this: '0000-00-00 00:00:00' And it will be like this: `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', Solved. Or you can use 2nd solution from @chatterboy which will be like this. `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, datetime to timestamp. Solved. Both methods are working just fine. If you're using CentOS 7, the problem persists, and the above method will solve the issue. There is no issue with Debian for now.
  2. Hi there, I just followed your guides and it still to be offline after what I did. Here is my screenshot. 1 : SSL. 2. DNS, my Nameservers remained from my domain provider. I just used recommended. 3. Server IP Address. 4. IP Address. VirtualBox connection and I'm using NAT. 5. IP from my router. 6. Port forwarding. 7. Apache2 live. 8. My configuration. I just overwrote from the earlier configuration that you posted. 9. SSHD Config. 10. UFW Status. I just added 8888 port. 11. Website aurax.site. I'm not sure what is wrong. Are there any commands that I missed?
  3. Hi, thanks for the tutorial. Can I use this tutorial using VirtualBox to make it online? I noticed that my VirtualBox IP address is not in my router config (client list), is there any trick to do this? Thank you!
×
×
  • Create New...